@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ink: #20211f;
  --muted: #6d706a;
  --paper: #f5f2ec;
  --paper-deep: #ebe6dc;
  --white: #fffdf8;
  --line: rgba(32, 33, 31, .14);
  --accent: #a6634f;
  --accent-dark: #774637;
  --olive: #747863;
  --dark: #202421;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1240px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--accent); }

.container {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: '';
}
.eyebrow--light { color: #dfb29f; }

.display {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.07;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease);
}
.site-header.is-scrolled {
  position: fixed;
  color: var(--ink);
  background: rgba(245, 242, 236, .92);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-mark {
  position: relative;
  width: 27px;
  height: 27px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.brand-mark::before,
.brand-mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 31px;
  background: currentColor;
  content: '';
  transform: translate(-50%, -50%) rotate(45deg);
}
.brand-mark::after { transform: translate(-50%, -50%) rotate(-45deg); }
.brand-word {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: .9;
  text-transform: uppercase;
}
.brand-word small {
  margin-top: 5px;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .24em;
  opacity: .75;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
  margin-left: auto;
  margin-right: clamp(22px, 4vw, 62px);
}
.primary-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .03em;
  opacity: .9;
  transition: opacity .25s ease;
}
.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.primary-nav a:hover { opacity: 1; }
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.header-contact svg { width: 14px; height: 14px; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: currentColor;
  background: none;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 16px;
  height: 1px;
  margin: 3px auto;
  background: currentColor;
  content: '';
  transition: transform .25s ease, opacity .25s ease;
}
body.nav-open .menu-toggle span { opacity: 0; }
body.nav-open .menu-toggle::before { transform: translateY(4px) rotate(45deg); }
body.nav-open .menu-toggle::after { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  display: flex;
  min-height: min(800px, 100vh);
  overflow: hidden;
  color: var(--white);
  background: #333 url('../images/curtains.jpg') center / cover no-repeat;
}
.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 23, 20, .76) 0%, rgba(19, 23, 20, .46) 42%, rgba(19, 23, 20, .06) 78%), linear-gradient(0deg, rgba(10, 12, 11, .48), transparent 42%);
  content: '';
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.25);
  content: '';
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  align-items: center;
  padding-top: 115px;
  padding-bottom: 90px;
}
.hero-copy { max-width: 695px; }
.hero .eyebrow { color: #dfb29f; }
.hero-title {
  max-width: 660px;
  font-size: clamp(53px, 7.2vw, 104px);
}
.hero-title em {
  color: #e8c7b7;
  font-style: italic;
}
.hero-text {
  max-width: 465px;
  margin: 28px 0 0;
  color: rgba(255,253,248,.78);
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 37px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 51px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--ink); background: var(--white); }
.button--light:hover { background: #ead7ce; }
.button--outline-light { color: var(--white); border-color: rgba(255,255,255,.5); }
.button--outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: var(--accent-dark); }
.button--accent { color: var(--white); background: var(--accent); }
.button--accent:hover { background: var(--accent-dark); }
.button svg { width: 16px; height: 16px; transition: transform .25s ease; }
.button:hover svg { transform: translateX(3px); }
.hero-footer {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  z-index: 1;
}
.hero-footer-inner { display: flex; align-items: flex-end; justify-content: space-between; }
.hero-meta {
  display: flex;
  gap: clamp(25px, 7vw, 95px);
}
.hero-meta-item { display: flex; flex-direction: column; gap: 3px; }
.hero-meta-item strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.hero-meta-item span {
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.scroll-cue i { display: block; width: 38px; height: 1px; background: currentColor; }

.section { padding: 126px 0; }
.section--paper-deep { background: var(--paper-deep); }
.section--dark { color: var(--white); background: var(--dark); }
.section-heading {
  display: grid;
  grid-template-columns: minmax(210px, .72fr) 1.55fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 64px;
}
.section-title { font-size: clamp(41px, 5vw, 69px); }
.section-lead {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.section--dark .section-lead { color: rgba(255,255,255,.64); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(250px, .86fr) minmax(300px, 1.14fr);
  gap: clamp(45px, 10vw, 160px);
  align-items: end;
}
.intro-copy { max-width: 560px; }
.intro-title { font-size: clamp(39px, 4.7vw, 66px); }
.intro-title span { color: var(--accent); }
.intro-copy p { max-width: 510px; margin: 29px 0 0; color: var(--muted); }
.intro-side { padding-bottom: 5px; }
.intro-side p { max-width: 420px; margin: 0 0 32px; color: var(--muted); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: gap .25s ease, color .25s ease;
}
.text-link:hover { gap: 18px; color: var(--accent); border-color: currentColor; }
.text-link svg { width: 17px; height: 17px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 80px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.stat { padding-right: 15px; }
.stat + .stat { padding-left: 25px; border-left: 1px solid var(--line); }
.stat strong { display: block; color: var(--accent); font-family: var(--serif); font-size: 47px; font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.stat span { display: block; max-width: 150px; margin-top: 10px; color: var(--muted); font-size: 11px; line-height: 1.45; text-transform: uppercase; }

.catalog-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.catalog-card {
  position: relative;
  display: flex;
  min-height: 292px;
  grid-column: span 4;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}
.catalog-card:nth-child(1) { grid-column: span 5; }
.catalog-card:nth-child(2) { grid-column: span 3; }
.catalog-card:nth-child(3) { grid-column: span 4; }
.catalog-card:nth-child(4) { min-height: 362px; grid-column: span 4; }
.catalog-card:nth-child(5) { min-height: 362px; grid-column: span 8; }
.catalog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.catalog-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10, 13, 11, .78), rgba(10, 13, 11, .02) 70%); content: ''; }
.catalog-card:hover img { transform: scale(1.045); }
.catalog-content { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 1; }
.catalog-number { display: block; margin-bottom: 13px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .14em; }
.catalog-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(25px, 3vw, 39px); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.catalog-card p { max-width: 300px; margin: 9px 0 0; color: rgba(255,255,255,.74); font-size: 12px; line-height: 1.45; }
.catalog-arrow { position: absolute; right: 23px; top: 23px; z-index: 1; display: grid; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; place-items: center; transition: background .25s ease, border-color .25s ease; }
.catalog-arrow svg { width: 15px; height: 15px; }
.catalog-card:hover .catalog-arrow { background: var(--accent); border-color: var(--accent); }

.feature {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark) url('../images/rainforest.jpg') center / cover no-repeat;
}
.feature::before { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24, 28, 24, .88), rgba(24, 28, 24, .22) 70%); content: ''; }
.feature-inner { position: relative; z-index: 1; display: flex; min-height: 550px; align-items: center; }
.feature-copy { max-width: 570px; }
.feature-title { font-size: clamp(46px, 6vw, 82px); }
.feature-title em { color: #d8b8a8; font-style: italic; }
.feature-copy p { max-width: 470px; margin: 26px 0 34px; color: rgba(255,255,255,.72); }
.feature-tag { position: absolute; right: 0; bottom: 28px; z-index: 1; color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.service { min-height: 265px; padding: 28px 32px 30px 0; border-bottom: 1px solid var(--line); }
.service:not(:nth-child(3n+1)) { padding-left: 32px; border-left: 1px solid var(--line); }
.service:nth-child(n+4) { padding-top: 37px; }
.service-number { color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.service h3 { margin: 28px 0 13px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1.1; }
.service p { max-width: 265px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.58; }

.process-section { color: var(--white); background: var(--dark); }
.process-grid { display: grid; grid-template-columns: 1.03fr 1fr; gap: clamp(50px, 10vw, 152px); align-items: start; }
.process-title { max-width: 570px; font-size: clamp(45px, 5.7vw, 78px); }
.process-title em { color: #d5ad9c; font-style: italic; }
.process-intro { max-width: 470px; margin: 23px 0 0; color: rgba(255,255,255,.64); }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.process-item { display: grid; grid-template-columns: 53px 1fr; gap: 18px; padding: 24px 0 26px; border-bottom: 1px solid rgba(255,255,255,.2); }
.process-item span { color: #d5ad9c; font-family: var(--serif); font-size: 22px; font-weight: 500; }
.process-item h3 { margin: 0 0 4px; font-size: 16px; font-weight: 600; }
.process-item p { margin: 0; color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.5; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px, 8vw, 120px); align-items: center; }
.about-media { position: relative; min-height: 630px; }
.about-media img { width: calc(100% - 42px); height: 630px; object-fit: cover; }
.about-media::after { position: absolute; right: 0; bottom: -22px; width: 58%; height: 42%; border: 1px solid var(--accent); content: ''; z-index: -1; }
.about-note { position: absolute; right: 0; bottom: 30px; width: 145px; padding: 18px; color: var(--white); background: var(--accent); }
.about-note strong { display: block; font-family: var(--serif); font-size: 37px; font-weight: 500; line-height: 1; }
.about-note span { display: block; margin-top: 8px; font-size: 10px; line-height: 1.4; text-transform: uppercase; }
.about-title { font-size: clamp(43px, 5vw, 70px); }
.about-title em { color: var(--accent); font-style: italic; }
.about-copy > p { max-width: 475px; margin: 28px 0; color: var(--muted); }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; margin: 36px 0 40px; padding-top: 25px; border-top: 1px solid var(--line); }
.about-point { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.5; }
.about-point::before { flex: 0 0 5px; width: 5px; height: 5px; margin-top: 8px; background: var(--accent); border-radius: 50%; content: ''; }

.contact-section { color: var(--white); background: #2c332c; }
.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(50px, 10vw, 165px); align-items: start; }
.contact-title { max-width: 600px; font-size: clamp(46px, 5.7vw, 78px); }
.contact-title em { color: #d9b7a7; font-style: italic; }
.contact-copy > p { max-width: 465px; margin: 27px 0 38px; color: rgba(255,255,255,.66); }
.contact-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-detail span { display: block; margin-bottom: 7px; color: #d9b7a7; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-detail a, .contact-detail p { margin: 0; color: rgba(255,255,255,.84); font-size: 13px; line-height: 1.5; }
.contact-form { padding: 35px; color: var(--ink); background: var(--white); }
.contact-form h3 { margin: 0 0 22px; font-family: var(--serif); font-size: 31px; font-weight: 500; line-height: 1.1; }
.form-field { margin-bottom: 17px; }
.form-field label { display: block; margin-bottom: 6px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; padding: 11px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); outline: 0; border-radius: 0; transition: border-color .25s ease; }
.form-field textarea { min-height: 76px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--accent); }
.contact-form .button { width: 100%; margin-top: 11px; }
.form-success { display: none; padding: 20px 0 5px; color: var(--accent-dark); font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.25; }
.contact-form.is-sent form { display: none; }
.contact-form.is-sent .form-success { display: block; }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

.site-footer { color: rgba(255,255,255,.62); background: var(--dark); }
.footer-top { display: grid; grid-template-columns: 1.2fr .75fr .75fr; gap: 50px; padding: 65px 0 58px; }
.footer-brand { color: var(--white); }
.footer-brand p { max-width: 260px; margin: 22px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.6; }
.footer-col h3 { margin: 4px 0 19px; color: rgba(255,255,255,.42); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-col a { display: table; margin: 8px 0; color: rgba(255,255,255,.72); font-size: 12px; transition: color .2s ease; }
.footer-col a:hover { color: #e0b8a6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.38); font-size: 10px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .container { width: min(calc(100% - 42px), var(--max)); }
  .primary-nav { gap: 17px; margin-right: 25px; }
  .header-contact { display: none; }
  .section { padding: 94px 0; }
  .section-heading { gap: 28px; margin-bottom: 45px; }
  .intro-grid, .process-grid, .contact-grid { gap: 55px; }
  .catalog-card:nth-child(1), .catalog-card:nth-child(2), .catalog-card:nth-child(3) { min-height: 285px; }
  .about-media { min-height: 520px; }
  .about-media img { height: 520px; }
  .footer-top { grid-template-columns: 1fr .7fr .9fr; gap: 30px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 34px), var(--max)); }
  .header-inner { min-height: 71px; }
  .primary-nav {
    position: fixed;
    z-index: 100;
    inset: 71px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 23px 17px 40px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .primary-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .primary-nav a::after { display: none; }
  body.nav-open .primary-nav { opacity: 1; pointer-events: auto; transform: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 740px; background-position: 62% center; }
  .hero::before { background: linear-gradient(90deg, rgba(19, 23, 20, .87), rgba(19, 23, 20, .32)), linear-gradient(0deg, rgba(10,12,11,.6), transparent 55%); }
  .hero-content { align-items: flex-start; padding-top: 175px; padding-bottom: 160px; }
  .hero-title { font-size: clamp(47px, 14vw, 74px); }
  .hero-text { margin-top: 22px; font-size: 15px; }
  .hero-actions { margin-top: 29px; }
  .button { min-height: 48px; padding: 0 17px; font-size: 10px; }
  .hero-footer { bottom: 21px; }
  .hero-footer-inner { display: block; }
  .hero-meta { gap: 31px; }
  .hero-meta-item strong { font-size: 23px; }
  .hero-meta-item span { max-width: 76px; font-size: 8px; }
  .scroll-cue { display: none; }
  .section { padding: 75px 0; }
  .section-heading, .intro-grid, .process-grid, .about-grid, .contact-grid { display: block; }
  .section-heading { margin-bottom: 37px; }
  .section-title { font-size: 47px; }
  .section-lead { margin-top: 24px; font-size: 15px; }
  .intro-copy p { margin-top: 22px; font-size: 15px; }
  .intro-side { margin-top: 34px; }
  .intro-side p { font-size: 14px; }
  .stats { gap: 10px; margin-top: 53px; }
  .stat + .stat { padding-left: 14px; }
  .stat strong { font-size: 36px; }
  .stat span { font-size: 8px; }
  .catalog-intro { display: block; }
  .catalog-intro .text-link { margin-top: 24px; }
  .catalog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 38px; }
  .catalog-card, .catalog-card:nth-child(1), .catalog-card:nth-child(2), .catalog-card:nth-child(3), .catalog-card:nth-child(4), .catalog-card:nth-child(5) { grid-column: span 1; min-height: 255px; }
  .catalog-card:nth-child(1), .catalog-card:nth-child(5) { grid-column: span 2; }
  .catalog-card h3 { font-size: 27px; }
  .catalog-content { right: 16px; bottom: 16px; left: 16px; }
  .catalog-arrow { top: 14px; right: 14px; width: 32px; height: 32px; }
  .catalog-card p { font-size: 10px; }
  .feature, .feature-inner { min-height: 485px; }
  .feature { background-position: 61% center; }
  .feature::before { background: linear-gradient(90deg, rgba(24,28,24,.88), rgba(24,28,24,.35)); }
  .feature-title { font-size: 51px; }
  .feature-copy p { margin: 20px 0 26px; font-size: 14px; }
  .feature-tag { display: none; }
  .services-grid { display: block; }
  .service, .service:nth-child(n+4), .service:not(:nth-child(3n+1)) { min-height: 0; padding: 26px 0; border-left: 0; }
  .service h3 { margin-top: 14px; }
  .service p { max-width: none; }
  .process-grid > * + * { margin-top: 52px; }
  .process-title { font-size: 52px; }
  .process-intro { font-size: 14px; }
  .about-media { min-height: 410px; margin: 0 12px 65px 0; }
  .about-media img { width: calc(100% - 28px); height: 410px; }
  .about-media::after { bottom: -18px; height: 32%; }
  .about-note { right: 0; bottom: 18px; width: 116px; padding: 13px; }
  .about-note strong { font-size: 30px; }
  .about-note span { font-size: 8px; }
  .about-title { font-size: 51px; }
  .about-copy > p { font-size: 14px; }
  .about-points { gap: 13px; margin-top: 27px; }
  .about-point { font-size: 11px; }
  .contact-title { font-size: 53px; }
  .contact-copy > p { font-size: 14px; }
  .contact-details { gap: 19px; }
  .contact-detail a, .contact-detail p { font-size: 11px; }
  .contact-form { margin-top: 47px; padding: 25px 20px; }
  .contact-form h3 { font-size: 28px; }
  .footer-top { display: grid; grid-template-columns: 1fr 1fr; gap: 38px 24px; padding: 48px 0 38px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Extended catalogue, portfolio and pricing blocks */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.portfolio-card {
  position: relative;
  display: flex;
  min-height: 365px;
  grid-column: span 4;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}
.portfolio-card--wide { grid-column: span 7; }
.portfolio-card--tall { grid-row: span 2; min-height: 748px; }
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .45s ease;
}
.portfolio-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 17, 14, .88), rgba(14, 17, 14, .02) 68%);
  content: '';
}
.portfolio-card:hover img { filter: saturate(1.08); transform: scale(1.045); }
.portfolio-caption { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 1; }
.portfolio-caption span { display: block; margin-bottom: 12px; color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }
.portfolio-caption h3 { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.portfolio-caption p { max-width: 300px; margin: 8px 0 0; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.45; }
.portfolio-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }

.collection-section { overflow: hidden; }
.collection-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(55px, 9vw, 135px); align-items: center; }
.collection-section--reverse .collection-grid { grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr); }
.collection-media { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(100px, .47fr); gap: 14px; align-items: end; min-height: 610px; }
.collection-media::after { position: absolute; right: -15px; bottom: -19px; width: 52%; height: 39%; border: 1px solid var(--accent); content: ''; z-index: -1; }
.collection-media .media-main { width: 100%; height: 610px; object-fit: cover; }
.collection-media .media-detail { width: 100%; height: 330px; margin-bottom: 45px; object-fit: cover; }
.collection-copy { max-width: 525px; }
.collection-title { font-size: clamp(48px, 5.1vw, 72px); }
.collection-title em { color: var(--accent); font-style: italic; }
.collection-copy > p:not(.eyebrow), .light-panel-copy > p:not(.eyebrow) { max-width: 490px; margin: 27px 0; color: var(--muted); font-size: 15px; line-height: 1.72; }
.collection-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 21px; margin: 28px 0 36px; padding-top: 21px; border-top: 1px solid var(--line); }
.collection-points span { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; line-height: 1.45; }
.collection-points span::before { flex: 0 0 5px; width: 5px; height: 5px; margin-top: 7px; background: var(--accent); border-radius: 50%; content: ''; }
.collection-section--reverse .collection-media::after { right: auto; left: -15px; }

.light-panel { display: grid; grid-template-columns: minmax(260px, .84fr) minmax(0, 1.16fr); min-height: 590px; color: var(--white); background: var(--accent-dark); }
.light-panel-media { min-height: 590px; overflow: hidden; }
.light-panel-media img { width: 100%; height: 100%; object-fit: cover; }
.light-panel-copy { padding: clamp(36px, 5vw, 70px); }
.light-panel-copy .eyebrow { color: #e1b3a0; }
.light-panel-copy .collection-title { font-size: clamp(48px, 5.1vw, 70px); }
.light-panel-copy > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.light-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin: 38px 0 37px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.23); }
.light-features div { display: flex; flex-direction: column; gap: 8px; }
.light-features strong { color: #e1b3a0; font-family: var(--serif); font-size: 23px; font-weight: 500; line-height: 1; }
.light-features span { color: rgba(255,255,255,.7); font-size: 10px; line-height: 1.45; text-transform: uppercase; }

.electric-section .section-heading { margin-bottom: 54px; }
.electric-section .section-title { color: var(--white); }
.electric-showcase { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(260px, .78fr); gap: 18px; }
.electric-main, .electric-card { position: relative; overflow: hidden; background: #323932; }
.electric-main { min-height: 550px; }
.electric-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.electric-main::after, .electric-card:not(.electric-card--plain)::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10, 13, 11, .85), rgba(10,13,11,0) 70%); content: ''; }
.electric-main:hover img, .electric-card:hover img { transform: scale(1.04); }
.electric-main > div, .electric-card > div:last-child { position: absolute; right: 25px; bottom: 23px; left: 25px; z-index: 1; }
.electric-main span, .electric-card span { color: rgba(255,255,255,.62); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.electric-main h3 { margin: 12px 0 0; color: var(--white); font-family: var(--serif); font-size: clamp(29px, 3.4vw, 48px); font-weight: 500; line-height: 1.05; }
.electric-side { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.electric-card { min-height: 266px; }
.electric-card:first-child { grid-column: span 2; min-height: 266px; }
.electric-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.electric-card h3 { margin: 8px 0 0; color: var(--white); font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.05; }
.electric-card--plain { display: flex; flex-direction: column; justify-content: space-between; padding: 20px; color: var(--white); background: #323932; }
.electric-card--plain > div:last-child { position: static; }
.electric-card--plain .electric-icon { display: grid; height: 145px; overflow: hidden; place-items: center; background: #e8e5dd; }
.electric-card--plain .electric-icon img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.electric-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.19); }
.electric-facts span { display: flex; flex-direction: column; gap: 3px; color: rgba(255,255,255,.57); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.electric-facts strong { color: #e1b3a0; font-family: var(--serif); font-size: 25px; font-weight: 500; letter-spacing: -.02em; line-height: 1; text-transform: none; }

.price-note { margin: 22px 0 0; color: var(--accent); font-size: 12px; line-height: 1.5; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { overflow: hidden; background: var(--white); }
.price-card--featured { box-shadow: 0 18px 45px rgba(42, 39, 34, .13); transform: translateY(-12px); }
.price-card > img { width: 100%; height: 210px; object-fit: cover; }
.price-card-body { padding: 25px 25px 28px; }
.price-label { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.price-card h3 { margin: 12px 0 14px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.05; }
.price-card strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: -.035em; }
.price-card strong small { color: var(--muted); font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0; }
.price-card ul { margin: 20px 0 0; padding: 17px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; margin: 7px 0; padding-left: 14px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.price-card li::before { position: absolute; top: 8px; left: 0; width: 5px; height: 5px; background: var(--accent); border-radius: 50%; content: ''; }
.price-quick { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 37px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-quick div { display: flex; flex-direction: column; gap: 8px; padding: 17px 15px 18px 0; }
.price-quick div + div { padding-left: 15px; border-left: 1px solid var(--line); }
.price-quick span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.price-quick strong { color: var(--accent-dark); font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1; }

@media (max-width: 900px) {
  .portfolio-card { min-height: 315px; }
  .portfolio-card--wide { grid-column: span 7; }
  .portfolio-card--tall { min-height: 648px; }
  .collection-grid, .collection-section--reverse .collection-grid { gap: 60px; }
  .collection-media, .collection-media .media-main { min-height: 520px; height: 520px; }
  .collection-media .media-detail { height: 270px; }
  .light-panel-copy { padding: 40px; }
  .electric-showcase { grid-template-columns: 1fr .8fr; }
  .electric-main { min-height: 500px; }
  .price-card > img { height: 175px; }
  .price-card-body { padding: 22px 19px 24px; }
  .price-card h3 { font-size: 25px; }
  .price-card strong { font-size: 23px; }
  .price-quick strong { font-size: 16px; }
}

@media (max-width: 680px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .portfolio-card, .portfolio-card--wide, .portfolio-card--tall { grid-column: span 1; grid-row: auto; min-height: 300px; }
  .portfolio-card:nth-child(1), .portfolio-card:nth-child(5) { grid-column: span 2; }
  .portfolio-caption { right: 14px; bottom: 14px; left: 14px; }
  .portfolio-caption h3 { font-size: 26px; }
  .portfolio-caption p { font-size: 9px; }
  .portfolio-footer { align-items: flex-start; flex-direction: column; gap: 7px; }
  .collection-grid, .collection-section--reverse .collection-grid { display: flex; flex-direction: column; gap: 48px; }
  .collection-section--reverse .collection-copy { order: -1; }
  .collection-media { width: calc(100% - 13px); min-height: 390px; height: 390px; }
  .collection-media .media-main { height: 390px; }
  .collection-media .media-detail { height: 215px; margin-bottom: 30px; }
  .collection-media::after { right: -10px; bottom: -14px; }
  .collection-section--reverse .collection-media::after { right: -10px; left: auto; }
  .collection-title { font-size: 51px; }
  .collection-copy > p:not(.eyebrow), .light-panel-copy > p:not(.eyebrow) { font-size: 14px; }
  .collection-points { gap: 11px 13px; margin-top: 23px; }
  .collection-points span { font-size: 10px; }
  .light-panel { display: block; }
  .light-panel-media { min-height: 300px; height: 300px; }
  .light-panel-copy { padding: 36px 24px 39px; }
  .light-features { gap: 10px; margin: 29px 0 31px; }
  .light-features span { font-size: 8px; }
  .electric-section .section-heading { margin-bottom: 35px; }
  .electric-showcase { display: block; }
  .electric-main { min-height: 390px; }
  .electric-side { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }
  .electric-card, .electric-card:first-child { min-height: 190px; }
  .electric-card:first-child { grid-column: span 2; }
  .electric-card--plain { padding: 12px; }
  .electric-card--plain .electric-icon { height: 95px; }
  .electric-card h3 { font-size: 19px; }
  .electric-card > div:last-child { right: 14px; bottom: 14px; left: 14px; }
  .electric-card--plain > div:last-child { position: static; margin-top: 10px; }
  .electric-facts { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .price-grid { display: block; }
  .price-card, .price-card--featured { margin-bottom: 14px; transform: none; }
  .price-card > img { height: 205px; }
  .price-quick { grid-template-columns: repeat(2, 1fr); }
  .price-quick div, .price-quick div + div { padding: 14px 10px 15px 0; }
  .price-quick div:nth-child(even) { padding-left: 10px; border-left: 1px solid var(--line); }
  .price-quick div:nth-child(3) { padding-left: 0; border-left: 0; }
  .price-quick strong { font-size: 18px; }
}

/* Multi-page studio */
.site-header--page {
  position: sticky;
  color: var(--ink);
  background: rgba(245, 242, 236, .93);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.site-header--page .primary-nav a { opacity: .82; }
.site-header--page .primary-nav a:hover { opacity: 1; }
.page-hero {
  position: relative;
  display: flex;
  min-height: 345px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark) var(--page-image) center / cover no-repeat;
}
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,22,19,.82), rgba(18,22,19,.25) 72%), linear-gradient(0deg, rgba(10,12,11,.42), transparent 60%); }
.page-hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; width: 100%; padding-top: 105px; padding-bottom: 64px; }
.page-hero .eyebrow { color: #e0b5a4; }
.page-title { max-width: 780px; font-size: clamp(55px, 8vw, 105px); }
.page-intro { max-width: 590px; margin: 25px 0 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.65; }
.page-content { padding-top: 94px; }
.page-content > .container > *:first-child { margin-top: 0; }
.page-lead { max-width: 670px; margin: 0 auto 65px; text-align: center; }
.page-lead h2 { margin: 0 0 17px; font-family: var(--serif); font-size: clamp(36px, 4.4vw, 59px); font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.page-lead p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.page-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 740px; margin: 0 auto 78px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.page-stats div { display: flex; flex-direction: column; gap: 7px; padding: 0 26px; }
.page-stats div + div { border-left: 1px solid var(--line); }
.page-stats strong { color: var(--accent); font-family: var(--serif); font-size: 39px; font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.page-stats span { color: var(--muted); font-size: 10px; line-height: 1.4; text-transform: uppercase; }
.page-note { display: flex; align-items: center; justify-content: center; gap: 15px; margin: 30px 0 100px; color: var(--muted); font-size: 11px; }
.page-note .text-link { color: var(--ink); font-size: 11px; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.gallery-item { position: relative; display: block; overflow: hidden; color: var(--white); background: var(--dark); cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .4s ease; }
.gallery-item:hover img { filter: saturate(1.08); transform: scale(1.045); }
.gallery-grid--portfolio .gallery-item { min-height: 350px; grid-column: span 4; }
.gallery-grid--portfolio .gallery-item--wide { min-height: 495px; grid-column: span 7; }
.gallery-grid--portfolio .gallery-item--tall { min-height: 718px; grid-row: span 2; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,15,12,.88), rgba(12,15,12,0) 70%); content: ''; pointer-events: none; }
.gallery-item > span { position: absolute; right: 23px; bottom: 21px; left: 23px; z-index: 1; pointer-events: none; }
.gallery-item > span small { display: block; margin-bottom: 10px; color: rgba(255,255,255,.64); font-size: 9px; letter-spacing: .13em; line-height: 1.35; text-transform: uppercase; }
.gallery-item > span strong { display: block; font-family: var(--serif); font-size: clamp(25px, 3vw, 39px); font-weight: 500; letter-spacing: -.04em; line-height: 1.06; }
.gallery-item > span em { display: block; max-width: 295px; margin-top: 8px; color: rgba(255,255,255,.7); font-size: 11px; font-style: normal; line-height: 1.4; }

.split-feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr); gap: clamp(55px, 9vw, 130px); align-items: center; margin-bottom: 104px; padding: 0; }
.split-feature--reverse { grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr); }
.split-feature--dark { margin-inline: calc((var(--max) - 100vw) / 2); padding: 75px max(32px, calc((100vw - var(--max)) / 2)); color: var(--white); background: var(--dark); }
.split-image { position: relative; display: block; min-height: 570px; overflow: hidden; background: var(--paper-deep); cursor: zoom-in; }
.split-image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,12,11,.18), transparent 45%); content: ''; pointer-events: none; }
.split-image img { width: 100%; height: 570px; object-fit: cover; transition: transform .65s var(--ease); }
.split-image:hover img { transform: scale(1.035); }
.split-copy { max-width: 535px; }
.split-copy h2 { font-size: clamp(46px, 5.2vw, 73px); }
.split-copy h2 em { color: var(--accent); font-style: italic; }
.split-copy > p:not(.eyebrow) { max-width: 490px; margin: 26px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.split-feature--dark .split-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.split-feature--dark .split-copy h2 em { color: #dfb39f; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; margin: 30px 0 36px; padding-top: 20px; border-top: 1px solid var(--line); }
.feature-list span { display: flex; gap: 8px; color: var(--ink); font-size: 12px; line-height: 1.45; }
.feature-list span::before { flex: 0 0 5px; width: 5px; height: 5px; margin-top: 7px; background: var(--accent); border-radius: 50%; content: ''; }
.feature-list--light { border-color: rgba(255,255,255,.2); }
.feature-list--light span { color: rgba(255,255,255,.8); }

.service-cards { display: grid; gap: 18px; margin-bottom: 100px; }
.service-cards--three { grid-template-columns: repeat(3, 1fr); }
.service-card { position: relative; display: flex; min-height: 405px; overflow: hidden; color: var(--white); background: var(--dark); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.service-card:hover img { transform: scale(1.045); }
.service-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,14,12,.84), rgba(11,14,12,0) 70%); content: ''; pointer-events: none; }
.service-card > div { position: absolute; right: 23px; bottom: 20px; left: 23px; z-index: 1; pointer-events: none; }
.service-card small { display: block; margin-bottom: 10px; color: rgba(255,255,255,.64); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.service-card h3 { margin: 0; font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1.05; }
.service-card p { max-width: 280px; margin: 9px 0 0; color: rgba(255,255,255,.72); font-size: 11px; line-height: 1.48; }
.service-card--plain { display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: var(--accent-dark); cursor: default; }
.service-card--plain::after { display: none; }
.service-card--plain .safety-icon { position: absolute; top: 25px; right: 25px; width: 75px; height: 75px; object-fit: contain; }
.service-card--plain > div { position: static; }
.service-card--plain h3 { font-size: 47px; }

.numbered-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 100px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.numbered-list > div { min-height: 190px; padding: 24px 30px 25px 0; }
.numbered-list > div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.numbered-list strong { color: var(--accent); font-family: var(--serif); font-size: 25px; font-weight: 500; }
.numbered-list h3 { margin: 24px 0 7px; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.05; }
.numbered-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.materials-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 100px; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.materials-strip > div { display: flex; flex-direction: column; gap: 8px; padding-right: 24px; }
.materials-strip > div + div { padding-left: 25px; border-left: 1px solid var(--line); }
.materials-strip span { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .13em; }
.materials-strip strong { font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1; }
.materials-strip p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.45; }

.light-catalog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 100px; }
.light-catalog-card { position: relative; display: flex; min-height: 420px; overflow: hidden; color: var(--white); background: var(--dark); cursor: zoom-in; }
.light-catalog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.light-catalog-card:hover img { transform: scale(1.045); }
.light-catalog-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,14,12,.88), rgba(11,14,12,0) 72%); content: ''; pointer-events: none; }
.light-catalog-card > span { position: absolute; right: 22px; bottom: 21px; left: 22px; z-index: 1; pointer-events: none; }
.light-catalog-card small { display: block; margin-bottom: 12px; color: rgba(255,255,255,.62); font-size: 10px; }
.light-catalog-card strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1; }
.light-catalog-card em { display: block; margin-top: 8px; color: rgba(255,255,255,.7); font-size: 11px; font-style: normal; }

.control-grid { display: grid; grid-template-columns: .66fr .66fr 1fr; gap: 18px; align-items: stretch; margin-bottom: 100px; }
.control-card { position: relative; display: flex; min-height: 300px; overflow: hidden; color: var(--white); background: var(--dark); cursor: zoom-in; }
.control-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.control-card:hover img { transform: scale(1.05); }
.control-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,13,11,.8), transparent 70%); content: ''; pointer-events: none; }
.control-card span { position: absolute; right: 18px; bottom: 18px; left: 18px; z-index: 1; font-size: 11px; pointer-events: none; }
.control-copy { padding: 28px 0 20px 24px; border-left: 1px solid var(--line); }
.control-copy h2 { font-size: 46px; }
.control-copy h2 em { color: var(--accent); font-style: italic; }
.control-copy > p:not(.eyebrow) { max-width: 300px; margin: 20px 0 26px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.page-content .price-grid { margin-bottom: 85px; }
.price-grid--page .price-card { min-height: 0; }
.price-table-wrap { margin: 0 auto 50px; }
.price-table-wrap h2 { margin: 0 0 24px; font-size: clamp(39px, 4.7vw, 62px); }
.price-table-wrap h2 em { color: var(--accent); font-style: italic; }
.price-table { width: 100%; border-collapse: collapse; text-align: left; }
.price-table th { padding: 14px 18px; color: var(--muted); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.price-table td { padding: 18px; border-bottom: 1px solid var(--line); font-size: 13px; }
.price-table td:nth-child(2) { color: var(--accent-dark); font-family: var(--serif); font-size: 22px; white-space: nowrap; }
.price-table td:nth-child(3) { color: var(--muted); }
.price-disclaimer { max-width: 670px; margin: 0 auto 95px; text-align: center; }
.price-disclaimer p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 100px; border-top: 1px solid var(--line); }
.reasons-grid > div { min-height: 210px; padding: 25px 28px 26px 0; border-bottom: 1px solid var(--line); }
.reasons-grid > div:nth-child(3n+2), .reasons-grid > div:nth-child(3n+3) { padding-left: 28px; border-left: 1px solid var(--line); }
.reasons-grid strong { color: var(--accent); font-family: var(--serif); font-size: 25px; font-weight: 500; }
.reasons-grid h3 { margin: 24px 0 8px; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.05; }
.reasons-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.about-quote { max-width: 760px; margin: 0 auto 105px; text-align: center; }
.about-quote p { margin: 0; color: var(--accent-dark); font-family: var(--serif); font-size: clamp(28px, 3.5vw, 45px); font-style: italic; letter-spacing: -.035em; line-height: 1.2; }
.about-quote span { display: block; margin-top: 18px; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }

.service-directory { margin-bottom: 105px; border-top: 1px solid var(--line); }
.service-directory > a { display: grid; grid-template-columns: 60px 1fr 40px; gap: 20px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--line); transition: padding .3s var(--ease), color .25s ease; }
.service-directory > a:hover { padding-left: 12px; color: var(--accent); }
.service-directory > a > span { color: var(--accent); font-family: var(--serif); font-size: 23px; }
.service-directory h2 { margin: 0 0 5px; font-family: var(--serif); font-size: clamp(25px, 3vw, 36px); font-weight: 500; line-height: 1; }
.service-directory p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }
.service-directory b { font-size: 25px; font-weight: 400; text-align: right; }
.process-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 105px; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-band > div { display: flex; flex-direction: column; gap: 8px; padding-right: 20px; }
.process-band > div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.process-band strong { color: var(--accent); font-family: var(--serif); font-size: 27px; font-weight: 500; }
.process-band span { color: var(--muted); font-size: 11px; text-transform: uppercase; }

.page-cta { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin: 10px 0 0; padding: 52px 58px; color: var(--ink); background: var(--paper-deep); }
.page-cta h2 { font-size: clamp(41px, 4.7vw, 62px); }
.page-cta h2 em { color: var(--accent); font-style: italic; }
.page-cta--dark { color: var(--white); background: var(--dark); }
.page-cta--dark .eyebrow { color: #dfb29f; }

.contact-page-grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(55px, 10vw, 145px); align-items: start; margin-bottom: 95px; }
.contact-page-copy { max-width: 535px; }
.contact-page-copy h2 { font-size: clamp(48px, 5.2vw, 73px); }
.contact-page-copy h2 em { color: var(--accent); font-style: italic; }
.contact-page-copy > p:not(.eyebrow) { margin: 27px 0 35px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-details--page { padding-top: 23px; border-top: 1px solid var(--line); }
.contact-details--page .contact-detail a, .contact-details--page .contact-detail p { color: var(--ink); }
.contact-social { display: flex; gap: 17px; margin-top: 30px; }
.contact-social a { padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.contact-form--page { margin: 0; }
.map-placeholder { position: relative; min-height: 260px; margin-top: 25px; padding: 36px; color: var(--white); background: linear-gradient(90deg, rgba(20,25,21,.86), rgba(20,25,21,.22)), url('../images/hero.jpg') center / cover; }
.map-placeholder > div { max-width: 400px; }
.map-placeholder span { display: block; color: #dfb29f; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.map-placeholder strong { display: block; margin-top: 8px; font-family: var(--serif); font-size: 38px; font-weight: 500; }
.map-placeholder p { margin: 8px 0 21px; color: rgba(255,255,255,.7); font-size: 12px; }
.map-placeholder .text-link { color: var(--white); border-color: rgba(255,255,255,.7); font-size: 10px; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; grid-template-columns: 72px minmax(0, 1fr) 72px; grid-template-rows: 1fr auto; align-items: center; padding: 45px 25px 28px; color: var(--white); background: rgba(18,21,18,.94); opacity: 0; pointer-events: none; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.lightbox.is-open { opacity: 1; pointer-events: auto; visibility: visible; }
.lightbox-figure { display: flex; grid-column: 2; grid-row: 1; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: calc(100vh - 100px); margin: 0; }
.lightbox-figure img { width: auto; max-width: min(100%, 1240px); height: auto; max-height: calc(100vh - 145px); object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.35); }
.lightbox-figure figcaption { max-width: 700px; margin-top: 13px; color: rgba(255,255,255,.66); font-size: 11px; text-align: center; }
.lightbox button { color: var(--white); background: none; border: 0; }
.lightbox-close { position: absolute; top: 16px; right: 22px; width: 42px; height: 42px; font-size: 34px; font-weight: 200; line-height: 1; }
.lightbox-prev, .lightbox-next { z-index: 1; grid-row: 1; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.35) !important; border-radius: 50%; font-family: Georgia, serif; font-size: 37px; font-weight: 200; line-height: 40px; transition: background .2s ease, border-color .2s ease; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); border-color: var(--accent) !important; }
.lightbox-prev { grid-column: 1; }
.lightbox-next { grid-column: 3; }
.lightbox-counter { grid-column: 2; grid-row: 2; justify-self: center; margin-top: 2px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .12em; }

.home-catalog-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.home-card { position: relative; display: flex; min-height: 300px; grid-column: span 4; overflow: hidden; color: var(--white); background: var(--dark); }
.home-card--large { min-height: 440px; grid-column: span 8; }
.home-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.home-card::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,13,11,.86), rgba(10,13,11,.05) 72%); content: ''; }
.home-card:hover img { transform: scale(1.045); }
.home-card > span, .home-card > h3, .home-card > p, .home-card > i { position: absolute; z-index: 1; }
.home-card > span { top: 20px; left: 22px; color: rgba(255,255,255,.68); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.home-card > h3 { bottom: 20px; left: 22px; margin: 0; font-family: var(--serif); font-size: clamp(29px, 3.5vw, 47px); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.home-card > h3 em { color: #e0b6a3; font-style: italic; }
.home-card > p { right: 22px; bottom: 23px; max-width: 145px; margin: 0; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.45; }
.home-card > i { top: 17px; right: 19px; display: grid; width: 35px; height: 35px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; place-items: center; font-size: 17px; font-style: normal; transition: background .2s ease; }
.home-card:hover > i { background: var(--accent); }
.home-card--accent { display: block; padding: 20px 22px; background: var(--accent-dark); }
.home-card--accent::after { display: none; }
.home-card--accent > h3 { top: 72px; right: 22px; bottom: auto; left: 22px; }
.home-card--accent > p { right: 22px; bottom: 24px; left: 22px; max-width: 220px; }
.home-card--accent > i { right: 19px; top: 17px; }
.home-portfolio-preview { background: var(--paper); }
.home-portfolio-grid .portfolio-card { min-height: 360px; }
.home-portfolio-grid .portfolio-card--wide { min-height: 495px; }
.home-process { margin-top: 0; }
.home-cta { padding: 95px 0; }
.home-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.home-cta h2 { font-size: clamp(45px, 5vw, 72px); }
.home-cta h2 em { color: var(--accent); font-style: italic; }

@media (max-width: 900px) {
  .primary-nav { gap: 15px; }
  .page-hero { min-height: 290px; }
  .page-content { padding-top: 70px; }
  .gallery-grid--portfolio .gallery-item { min-height: 310px; }
  .gallery-grid--portfolio .gallery-item--wide { min-height: 425px; }
  .gallery-grid--portfolio .gallery-item--tall { min-height: 638px; }
  .split-feature, .split-feature--reverse { gap: 55px; }
  .split-feature--dark { margin-inline: calc((var(--max) - 100vw) / 2); padding-inline: 32px; }
  .split-image, .split-image img { min-height: 500px; height: 500px; }
  .service-card { min-height: 350px; }
  .service-card h3 { font-size: 27px; }
  .light-catalog-card { min-height: 350px; }
  .control-grid { grid-template-columns: .7fr .7fr 1fr; }
  .home-card--large { min-height: 390px; }
}

@media (max-width: 680px) {
  .site-header--page .primary-nav { color: var(--ink); }
  .page-hero { min-height: 265px; }
  .page-hero-inner { padding-top: 90px; padding-bottom: 42px; }
  .page-title { font-size: 55px; }
  .page-intro { margin-top: 18px; font-size: 14px; }
  .page-content { padding-top: 58px; }
  .page-lead { margin-bottom: 47px; }
  .page-lead p { font-size: 14px; }
  .page-stats { margin-bottom: 52px; }
  .page-stats div { padding: 0 11px; }
  .page-stats strong { font-size: 30px; }
  .page-stats span { font-size: 8px; }
  .page-note { margin-bottom: 66px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery-grid--portfolio .gallery-item, .gallery-grid--portfolio .gallery-item--wide, .gallery-grid--portfolio .gallery-item--tall { grid-column: span 1; grid-row: auto; min-height: 280px; }
  .gallery-grid--portfolio .gallery-item:nth-child(1), .gallery-grid--portfolio .gallery-item:nth-child(5) { grid-column: span 2; }
  .gallery-item > span { right: 14px; bottom: 14px; left: 14px; }
  .gallery-item > span strong { font-size: 25px; }
  .gallery-item > span em { font-size: 9px; }
  .split-feature, .split-feature--reverse { display: flex; flex-direction: column; gap: 39px; margin-bottom: 72px; }
  .split-feature--reverse .split-copy { order: -1; }
  .split-feature--dark { margin-inline: -17px; padding: 40px 17px; }
  .split-image, .split-image img { width: 100%; min-height: 355px; height: 355px; }
  .split-copy h2 { font-size: 52px; }
  .split-copy > p:not(.eyebrow) { font-size: 14px; }
  .feature-list { gap: 11px 12px; margin-top: 23px; }
  .feature-list span { font-size: 10px; }
  .service-cards--three { display: block; margin-bottom: 70px; }
  .service-card { min-height: 315px; margin-bottom: 10px; }
  .service-card h3 { font-size: 29px; }
  .numbered-list { display: block; margin-bottom: 70px; }
  .numbered-list > div, .numbered-list > div + div { min-height: 0; padding: 22px 0; border-left: 0; }
  .numbered-list h3 { margin-top: 16px; }
  .materials-strip { display: block; margin-bottom: 70px; }
  .materials-strip > div, .materials-strip > div + div { padding: 19px 0; border-left: 0; }
  .light-catalog { display: block; margin-bottom: 70px; }
  .light-catalog-card { min-height: 310px; margin-bottom: 10px; }
  .control-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 70px; }
  .control-card { min-height: 220px; }
  .control-copy { grid-column: span 2; padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .control-copy h2 { font-size: 48px; }
  .price-table-wrap { overflow-x: auto; }
  .price-table { min-width: 600px; }
  .price-table td, .price-table th { padding: 14px 10px; }
  .price-disclaimer { margin-bottom: 70px; }
  .reasons-grid { display: block; margin-bottom: 70px; }
  .reasons-grid > div, .reasons-grid > div:nth-child(3n+2), .reasons-grid > div:nth-child(3n+3) { min-height: 0; padding: 22px 0; border-left: 0; }
  .reasons-grid h3 { margin-top: 14px; }
  .about-quote { margin-bottom: 70px; }
  .service-directory { margin-bottom: 70px; }
  .service-directory > a { grid-template-columns: 32px 1fr 25px; gap: 10px; padding: 18px 0; }
  .service-directory h2 { font-size: 25px; }
  .process-band { grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 70px; }
  .process-band > div, .process-band > div + div { padding: 16px 10px 16px 0; border-left: 0; }
  .process-band > div:nth-child(even) { padding-left: 10px; border-left: 1px solid var(--line); }
  .page-cta { align-items: flex-start; flex-direction: column; margin-inline: -17px; padding: 34px 17px; }
  .page-cta .button { width: 100%; }
  .contact-page-grid { display: block; margin-bottom: 65px; }
  .contact-page-copy { margin-bottom: 48px; }
  .contact-page-copy h2 { font-size: 52px; }
  .contact-social { flex-wrap: wrap; }
  .map-placeholder { min-height: 245px; margin-inline: -17px; padding: 25px 17px; }
  .map-placeholder strong { font-size: 31px; }
  .lightbox { grid-template-columns: 42px minmax(0, 1fr) 42px; padding: 43px 9px 22px; }
  .lightbox-prev, .lightbox-next { width: 37px; height: 37px; font-size: 28px; line-height: 30px; }
  .lightbox-close { top: 9px; right: 10px; }
  .lightbox-figure { height: calc(100vh - 75px); }
  .lightbox-figure img { max-height: calc(100vh - 125px); }
  .home-catalog-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .home-card, .home-card--large { min-height: 275px; grid-column: span 1; }
  .home-card--large { grid-column: span 2; min-height: 370px; }
  .home-card > h3 { font-size: 27px; }
  .home-card > p { display: none; }
  .home-card--accent > h3 { top: 63px; }
  .home-portfolio-grid .portfolio-card, .home-portfolio-grid .portfolio-card--wide { min-height: 280px; }
  .home-portfolio-grid .portfolio-card--wide { grid-column: span 2; min-height: 350px; }
  .home-cta { padding: 73px 0; }
  .home-cta-inner { align-items: flex-start; flex-direction: column; }
  .home-cta .button { width: 100%; }
}

body.lightbox-open { overflow: hidden; }

.price-card-image { display: block; width: 100%; height: 210px; overflow: hidden; cursor: zoom-in; }
.price-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.price-card-image:hover img { transform: scale(1.045); }
@media (max-width: 900px) {
  .price-card-image { height: 175px; }
}
@media (max-width: 680px) {
  .price-card-image { height: 205px; }
}

/* Generated Мальта Арт emblem */
.brand-mark { width: 33px; height: 33px; border: 0; border-radius: 0; overflow: visible; }
.brand-mark::before, .brand-mark::after { display: none; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 680px) {
  .brand-mark { width: 30px; height: 30px; }
}

/* Full portfolio archive */
.portfolio-project-list { display: flex; flex-direction: column; gap: 92px; margin-bottom: 100px; }
.portfolio-project { padding-top: 58px; border-top: 1px solid var(--line); }
.portfolio-project:first-child { padding-top: 0; border-top: 0; }
.portfolio-project-head { display: grid; grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr); gap: 40px; align-items: start; margin-bottom: 30px; }
.portfolio-project-head .eyebrow { margin-top: 10px; }
.portfolio-project-head h2 { margin: 0; font-size: clamp(39px, 4.6vw, 65px); }
.portfolio-project-head > p:last-child { grid-column: 2; max-width: 570px; margin: -16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.project-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.project-image { min-height: 255px; grid-column: span 1; }
.project-image:first-child { min-height: 520px; grid-column: span 2; grid-row: span 2; }
.project-gallery--count-1 .project-image { min-height: 510px; grid-column: span 4; }
.project-gallery--count-2 .project-image:nth-child(2) { grid-column: span 2; }
.project-gallery--count-4 .project-image:nth-child(n+3) { min-height: 220px; }
.project-image > span { right: 16px; bottom: 14px; left: 16px; }
.project-image > span small { margin: 0; font-size: 9px; }

@media (max-width: 900px) {
  .portfolio-project-list { gap: 72px; }
  .portfolio-project-head { gap: 25px; }
  .project-image { min-height: 210px; }
  .project-image:first-child { min-height: 430px; }
  .project-gallery--count-1 .project-image { min-height: 430px; }
}

@media (max-width: 680px) {
  .portfolio-project-list { gap: 58px; margin-bottom: 70px; }
  .portfolio-project { padding-top: 38px; }
  .portfolio-project-head { display: block; margin-bottom: 23px; }
  .portfolio-project-head h2 { margin-top: 8px; font-size: 42px; }
  .portfolio-project-head > p:last-child { margin: 17px 0 0; font-size: 13px; }
  .project-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
  .project-image, .project-image:first-child, .project-gallery--count-1 .project-image { min-height: 200px; grid-column: span 1; grid-row: auto; }
  .project-gallery--count-1 .project-image { grid-column: span 2; min-height: 300px; }
  .project-gallery--count-2 .project-image:first-child { grid-column: span 2; min-height: 300px; }
  .project-gallery--count-2 .project-image:nth-child(2) { grid-column: span 2; min-height: 260px; }
  .project-image > span { right: 10px; bottom: 9px; left: 10px; }
}

/* Trust and proof blocks */
.home-trust { background: var(--paper-deep); }
.trust-layout { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); gap: 18px; align-items: stretch; margin-bottom: 18px; }
.trust-quote { padding: 36px 38px 33px; color: var(--white); background: var(--accent-dark); }
.trust-quote .review-mark { display: block; color: #e2b8a5; font-family: Georgia, serif; font-size: 70px; line-height: .7; }
.trust-quote > p { max-width: 400px; margin: 24px 0 29px; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 36px); font-style: italic; letter-spacing: -.03em; line-height: 1.2; }
.trust-quote footer { display: flex; flex-direction: column; gap: 4px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.24); }
.trust-quote footer strong { font-size: 12px; }
.trust-quote footer span { color: rgba(255,255,255,.62); font-size: 10px; }
.trust-quote .text-link { margin-top: 29px; color: var(--white); border-color: rgba(255,255,255,.55); font-size: 10px; }
.trust-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.trust-fact { display: flex; flex-direction: column; justify-content: center; min-height: 190px; padding: 25px; background: var(--white); }
.trust-fact strong { color: var(--accent); font-family: var(--serif); font-size: clamp(31px, 3.2vw, 45px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.trust-fact span { max-width: 130px; margin-top: 10px; color: var(--muted); font-size: 10px; line-height: 1.45; text-transform: uppercase; }
.case-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 58px; }
.case-card { display: flex; flex-direction: column; gap: 10px; padding: 24px 24px 26px; color: var(--ink); background: var(--white); border-top: 2px solid var(--accent); transition: transform .25s var(--ease), box-shadow .25s ease; }
.case-card:hover { box-shadow: 0 14px 35px rgba(41,37,31,.1); transform: translateY(-3px); }
.case-card span { min-height: 32px; color: var(--muted); font-size: 11px; line-height: 1.45; text-transform: uppercase; }
.case-card strong { color: var(--accent-dark); font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1; }
.case-card small { color: var(--muted); font-size: 10px; }
.partner-logo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partner-logo-row > span { display: flex; flex-direction: column; gap: 7px; padding: 22px 18px 23px 0; color: var(--ink); font-family: var(--serif); font-size: clamp(18px, 2vw, 28px); line-height: 1; }
.partner-logo-row > span + span { padding-left: 18px; border-left: 1px solid var(--line); }
.partner-logo-row small { color: var(--muted); font-family: var(--sans); font-size: 9px; line-height: 1.4; text-transform: uppercase; }

.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 100px; }
.review-card { position: relative; display: flex; flex-direction: column; min-height: 315px; padding: 33px 34px 28px; background: var(--white); }
.review-card--accent { color: var(--white); background: var(--accent-dark); }
.review-card--accent .review-mark, .review-card--accent footer span { color: #e2b8a5; }
.review-card--short { min-height: 230px; }
.review-mark { display: block; color: var(--accent); font-family: Georgia, serif; font-size: 65px; line-height: .7; }
.review-card > p { max-width: 600px; margin: 21px 0 0; font-size: 14px; line-height: 1.65; }
.review-card footer { display: flex; flex-direction: column; gap: 4px; margin-top: auto; padding-top: 23px; border-top: 1px solid var(--line); }
.review-card--accent footer { border-color: rgba(255,255,255,.24); }
.review-card footer strong { font-size: 12px; }
.review-card footer span { color: var(--muted); font-size: 10px; text-transform: uppercase; }
.review-evidence { display: grid; grid-template-columns: 1fr .72fr; gap: 60px; align-items: start; margin-bottom: 105px; }
.review-screen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.review-screen-grid .gallery-item { min-height: 330px; }
.review-screen-grid .gallery-item img { object-position: top; }
.review-letter { max-width: 410px; }
.review-letter > .gallery-item { display: block; min-height: 480px; cursor: zoom-in; background: var(--paper-deep); }
.review-letter > .gallery-item img { object-fit: contain; }
.review-letter > p:last-child { margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.review-evidence .gallery-item::after { background: linear-gradient(0deg, rgba(12,15,12,.45), transparent 55%); }
.trust-promise { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: 70px; align-items: start; margin-bottom: 105px; padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-promise h2 { font-size: clamp(42px, 4.8vw, 65px); }
.trust-promise h2 em { color: var(--accent); font-style: italic; }
.promise-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.promise-list span { display: flex; gap: 14px; padding: 19px 0; border-bottom: 1px solid var(--line); font-size: 12px; line-height: 1.45; }
.promise-list strong { color: var(--accent); font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1; }

.partner-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 68px; }
.partner-benefit-grid article { overflow: hidden; background: var(--white); }
.partner-benefit-grid img { width: 100%; height: 145px; object-fit: cover; }
.partner-benefit-grid article > div { padding: 21px 23px 25px; }
.partner-benefit-grid span { color: var(--accent); font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.partner-benefit-grid h3 { margin: 14px 0 8px; font-family: var(--serif); font-size: 28px; font-weight: 500; line-height: 1; }
.partner-benefit-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.team-strip { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; align-items: start; margin-bottom: 105px; padding: 58px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-strip h2 { font-size: clamp(43px, 4.8vw, 65px); }
.team-strip h2 em { color: var(--accent); font-style: italic; }
.team-person { min-height: 190px; padding-left: 24px; border-left: 1px solid var(--line); }
.team-person strong { display: block; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1; }
.team-person > span { display: block; margin-top: 8px; color: var(--accent); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.team-person p { margin: 19px 0 20px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.team-person .text-link { font-size: 10px; }

@media (max-width: 900px) {
  .trust-layout { gap: 14px; }
  .trust-facts { gap: 14px; }
  .trust-fact { min-height: 170px; padding: 20px; }
  .case-strip { gap: 14px; }
  .partner-logo-row > span { font-size: 20px; }
  .review-evidence { gap: 35px; }
  .review-letter > .gallery-item { min-height: 390px; }
  .trust-promise, .team-strip { gap: 35px; }
}

@media (max-width: 680px) {
  .trust-layout { display: block; }
  .trust-quote { margin-bottom: 10px; padding: 30px 22px 26px; }
  .trust-quote > p { font-size: 27px; }
  .trust-facts { gap: 10px; }
  .trust-fact { min-height: 135px; padding: 17px; }
  .trust-fact strong { font-size: 30px; }
  .trust-fact span { font-size: 8px; }
  .case-strip { display: block; margin-bottom: 44px; }
  .case-card { margin-bottom: 10px; }
  .partner-logo-row { grid-template-columns: 1fr 1fr; }
  .partner-logo-row > span, .partner-logo-row > span + span { padding: 16px 11px; font-size: 17px; }
  .partner-logo-row > span:nth-child(odd) { padding-left: 0; border-left: 0; }
  .partner-logo-row > span:nth-child(even) { border-left: 1px solid var(--line); }
  .review-grid { display: block; margin-bottom: 70px; }
  .review-card, .review-card--short { min-height: 0; margin-bottom: 10px; padding: 27px 22px 23px; }
  .review-card > p { font-size: 13px; }
  .review-evidence { display: block; margin-bottom: 70px; }
  .review-screen-grid { gap: 7px; }
  .review-screen-grid .gallery-item { min-height: 210px; }
  .review-letter { max-width: none; margin-top: 43px; }
  .review-letter > .gallery-item { min-height: 430px; }
  .trust-promise { display: block; margin-bottom: 70px; padding: 42px 0; }
  .promise-list { margin-top: 30px; }
  .promise-list span { font-size: 10px; }
  .partner-benefit-grid { display: block; margin-bottom: 70px; }
  .partner-benefit-grid article { margin-bottom: 10px; }
  .partner-benefit-grid img { height: 130px; }
  .team-strip { display: block; margin-bottom: 70px; padding: 42px 0; }
  .team-person { min-height: 0; margin-top: 32px; padding: 23px 0 0; border-top: 1px solid var(--line); border-left: 0; }
}

/* Align the main hero copy with the visual start of the generated emblem. */
@media (min-width: 681px) {
  .hero-copy { margin-left: 33px; }
}

/* Keep the copy aligned with the emblem on every inner-page hero banner. */
@media (min-width: 681px) {
  .page-hero-inner > * { margin-left: 33px; }
}
