:root {
  --ink: #171513;
  --ink-2: #25211e;
  --paper: #f5f0e8;
  --paper-2: #ece4d7;
  --white: #ffffff;
  --orange: #f3a11b;
  --orange-2: #cf7d00;
  --cream: #fff8ec;
  --line: rgba(23,21,19,.13);
  --line-light: rgba(255,255,255,.14);
  --muted: #6f6962;
  --muted-light: rgba(255,255,255,.62);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 28px 80px rgba(32,22,12,.13);
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open,
body.modal-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }
::selection { background: var(--orange); color: var(--ink); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 1000;
  background: white;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { top: 18px; }

.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-2);
  font-size: .72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.section-kicker.light { color: #ffc25a; }

h1, h2, h3, p { text-wrap: balance; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: white;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(20,18,16,.92);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,.08);
}
.nav-shell {
  width: min(1260px, calc(100% - 34px));
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--orange);
  flex: 0 0 auto;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.58rem;
  letter-spacing: -.025em;
  font-style: normal;
}
.brand-copy strong em {
  color: var(--orange);
  font-style: normal;
}
.brand-copy span {
  margin-top: 4px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .66;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: .84rem;
  font-weight: 700;
}
.desktop-nav a {
  position: relative;
  opacity: .9;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.language-switch span { opacity: .35; font-size: .72rem; }
.lang-btn {
  border: 0;
  background: none;
  color: rgba(255,255,255,.45);
  padding: 0;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.lang-btn.active { color: var(--orange); }

.nav-call {
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nav-call:hover {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: white;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
  color: white;
}
.hero-media,
.hero-overlay { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  transform: scale(1.04);
  animation: heroDrift 13s ease-out forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14,12,10,.89) 0%, rgba(14,12,10,.7) 40%, rgba(14,12,10,.3) 72%, rgba(14,12,10,.12) 100%),
    linear-gradient(0deg, rgba(14,12,10,.65), transparent 43%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 56px;
}
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-house {
  width: 48px;
  height: 48px;
  color: var(--orange);
}
.hero-house svg { width: 100%; height: 100%; }
.hero-wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.hero-wordmark b { color: var(--orange); }
.eyebrow {
  color: #ffd38a;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .71rem;
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  width: min(900px, 100%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.8rem, 7.9vw, 7.6rem);
  line-height: .82;
  letter-spacing: -.055em;
}
.hero h1 .accent { color: var(--orange); }
.hero-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.65vw, 1.22rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}
.service-area-pill {
  width: fit-content;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 700;
}
.service-area-pill .pin {
  color: var(--orange);
  font-size: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 12px 34px rgba(243,161,27,.22);
}
.btn-primary:hover {
  background: #ffb138;
  box-shadow: 0 16px 38px rgba(243,161,27,.3);
}
.btn-ghost {
  color: white;
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(7px);
}
.btn-ghost:hover {
  color: var(--ink);
  background: white;
  border-color: white;
}
.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(23,21,19,.22);
}
.btn-outline:hover { background: var(--ink); color: white; border-color: var(--ink); }
.btn-outline-light {
  color: white;
  background: transparent;
  border-color: rgba(255,255,255,.3);
}
.btn-outline-light:hover { background: white; color: var(--ink); border-color: white; }
.btn-light {
  color: var(--ink);
  background: white;
}

.hero-bottom {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 48px;
}
.hero-bottom > div { display: flex; flex-direction: column; }
.hero-bottom span {
  color: rgba(255,255,255,.5);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-bottom strong,
.hero-bottom a {
  margin-top: 3px;
  color: white;
  font-size: .8rem;
  font-weight: 700;
}
.hero-social div { display: flex; gap: 14px; }

.intro-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
}
.intro h2,
.section-heading h2,
.featured-copy h2,
.area-copy h2,
.contact-info h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.04em;
}
.intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}
.text-link {
  display: inline-flex;
  gap: 7px;
  margin-top: 20px;
  padding-bottom: 4px;
  font-size: .82rem;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}
.text-link span:last-child { transition: transform .2s ease; }
.text-link:hover span:last-child { transform: translate(3px, 3px); }
.dark-link { color: var(--ink); }

.services {
  background: var(--ink);
  color: white;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.section-heading h2 { margin-top: 12px; }
.section-heading > p {
  margin: 0;
  max-width: 450px;
  justify-self: end;
  color: var(--muted);
}
.services .section-heading > p,
.videos .section-heading > p {
  color: rgba(255,255,255,.54);
}

.service-showcase {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.service-feature {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: #1e1b18;
}
.service-feature.reverse .service-photo { order: 2; }
.service-photo { overflow: hidden; min-height: 420px; }
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}
.service-feature:hover .service-photo img { transform: scale(1.025); }
.service-copy {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-num {
  color: rgba(255,255,255,.35);
  font-size: .68rem;
  letter-spacing: .16em;
  font-weight: 800;
}
.service-copy h3 {
  margin: 42px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: .95;
}
.service-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.62);
}
.service-copy a {
  width: fit-content;
  margin-top: 26px;
  display: inline-flex;
  gap: 8px;
  color: #ffcb72;
  font-size: .8rem;
  font-weight: 800;
}
.service-copy a b { transition: transform .2s ease; }
.service-copy a:hover b { transform: translate(3px,-3px); }

.featured-project { background: #fffaf2; }
.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 68px;
  align-items: center;
}
.featured-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.featured-media > img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}
.play-feature {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: white;
  background: rgba(17,15,13,.72);
  backdrop-filter: blur(12px);
  font-size: .76rem;
  font-weight: 800;
}
.play-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
}
.featured-copy h2 { margin: 14px 0 18px; }
.featured-copy p { color: var(--muted); }
.featured-points {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.featured-points span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: .72rem;
  font-weight: 800;
}

.work { background: #ece5db; }
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 9px 14px;
  border: 1px solid rgba(23,21,19,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.48);
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter-btn:hover,
.filter-btn.active {
  color: white;
  border-color: var(--ink);
  background: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #2b2723;
  cursor: pointer;
}
.gallery-item:nth-child(7n + 1),
.gallery-item:nth-child(7n + 5) {
  grid-column: span 8;
  min-height: 460px;
}
.gallery-item.is-hidden { display: none; }
.gallery-item button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1);
}
.gallery-item::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,10,8,.76), transparent 48%);
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-caption {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: white;
}
.gallery-caption span {
  display: block;
  color: #ffcb72;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.gallery-caption strong {
  display: block;
  margin-top: 3px;
  font-size: .96rem;
}
.gallery-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.videos {
  background: #151311;
  color: white;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.video-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
  background: #28231e;
}
.video-card.is-hidden { display: none; }
.video-card button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: white;
  text-align: left;
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  background: #28231e;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .25s ease;
}
.video-card button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,8,7,.82), rgba(10,8,7,.12) 60%);
}
.video-card:hover .video-poster {
  transform: scale(1.03);
  filter: brightness(.82);
}
.video-play {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding-left: 2px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.video-copy {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
}
.video-copy span {
  display: block;
  color: #ffcb72;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.video-copy strong {
  display: block;
  margin-top: 2px;
  font-size: .9rem;
}

.process { background: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.process-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.48);
}
.process-card > span {
  color: var(--orange-2);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.process-card h3 {
  margin: 72px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.service-area {
  background: #201b17;
  color: white;
}
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: center;
}
.area-copy h2 { margin: 16px 0 20px; }
.area-copy p {
  max-width: 600px;
  color: rgba(255,255,255,.62);
}
.area-copy .btn { margin-top: 18px; }
.area-graphic {
  width: min(460px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  position: relative;
  display: grid;
  place-items: center;
}
.area-ring {
  position: absolute;
  border: 1px solid rgba(243,161,27,.34);
  border-radius: 50%;
}
.ring-1 { width: 100%; height: 100%; }
.ring-2 { width: 72%; height: 72%; }
.ring-3 { width: 44%; height: 44%; }
.area-ring::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -5px;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(243,161,27,.12);
}
.area-center {
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(243,161,27,.25);
}
.area-center strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.8rem;
  line-height: .8;
}
.area-center span {
  margin-top: 8px;
  font-size: .7rem;
  font-weight: 900;
}

.contact { background: #f7f3ec; }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.contact-info h2 { margin: 15px 0 18px; }
.contact-info > p {
  max-width: 470px;
  color: var(--muted);
}
.contact-card {
  margin-top: 34px;
  width: min(100%, 430px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.55);
}
.contact-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--orange);
  font-weight: 900;
  letter-spacing: .06em;
}
.contact-card > div:last-child {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-card span {
  color: var(--muted);
  font-size: .72rem;
}
.contact-card a {
  font-size: .93rem;
  font-weight: 800;
  word-break: break-word;
}
.social-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  font-size: .72rem;
  font-weight: 800;
}
.social-links a span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: .65rem;
}

.contact-form {
  padding: 36px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: block;
  margin-bottom: 17px;
}
.contact-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #ded8cf;
  border-radius: 11px;
  outline: none;
  background: #fcfbf9;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange-2);
  background: white;
  box-shadow: 0 0 0 4px rgba(243,161,27,.12);
}
.contact-form [aria-invalid="true"] {
  border-color: #b93424;
  box-shadow: 0 0 0 4px rgba(185,52,36,.08);
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.form-submit { border: 0; min-width: 160px; }
.submit-loading { display: none; }
.form-submit.loading .submit-label { display: none; }
.form-submit.loading .submit-loading { display: inline; }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-privacy {
  margin: 12px 0 0;
  color: #918a82;
  font-size: .68rem;
}
.form-status {
  min-height: 24px;
  margin-top: 9px;
  font-size: .78rem;
  font-weight: 800;
}
.form-status.success { color: #2e6d39; }
.form-status.error { color: #a33224; }

.site-footer {
  padding: 74px 0 28px;
  background: #11100f;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .75fr .8fr;
  gap: 70px;
}
.footer-brand { margin-bottom: 22px; }
.footer-grid > div:first-child > p {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: .85rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-links strong {
  margin-bottom: 6px;
  color: #ffca6e;
  font-size: .65rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.footer-links a {
  color: rgba(255,255,255,.64);
  font-size: .78rem;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  grid-template-rows: 1fr auto;
  align-items: center;
  background: rgba(8,7,6,.94);
  backdrop-filter: blur(12px);
}
.media-modal.open { display: grid; }
.modal-stage {
  grid-column: 2;
  grid-row: 1;
  width: min(1100px, 100%);
  max-height: calc(100svh - 120px);
  margin-inline: auto;
  display: grid;
  place-items: center;
  padding: 34px 0 16px;
}
.modal-stage img,
.modal-stage video {
  max-width: 100%;
  max-height: calc(100svh - 150px);
  object-fit: contain;
  border-radius: 10px;
  background: black;
}
.modal-stage video { width: min(1050px, 100%); }
.modal-close,
.modal-prev,
.modal-next {
  border: 0;
  color: white;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.modal-close {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}
.modal-prev,
.modal-next {
  width: 46px;
  height: 58px;
  border-radius: 12px;
  font-size: 2rem;
  justify-self: center;
}
.modal-prev { grid-column: 1; grid-row: 1; }
.modal-next { grid-column: 3; grid-row: 1; }
.modal-caption {
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: 56px;
  padding: 10px 24px 16px;
  color: rgba(255,255,255,.74);
  text-align: center;
  font-size: .78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .07s; }
.delay-2 { transition-delay: .14s; }
.delay-3 { transition-delay: .21s; }

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

@media (max-width: 1020px) {
  .section-pad { padding: 88px 0; }
  .desktop-nav,
  .nav-call { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 82px 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 20px 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(17,16,15,.985);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; }
  .mobile-menu a { padding: 12px 6px; font-weight: 800; }
  .mobile-menu .mobile-call { color: var(--orange); }

  .hero { min-height: 760px; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14,12,10,.88), rgba(14,12,10,.45)),
      linear-gradient(0deg, rgba(14,12,10,.66), transparent 50%);
  }
  .hero-bottom { gap: 28px; }
  .intro-grid,
  .section-heading,
  .featured-grid,
  .service-area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-heading > p { justify-self: start; }
  .service-feature { grid-template-columns: 1fr 1fr; }
  .service-copy { padding: 32px; }
  .gallery-item,
  .gallery-item:nth-child(7n + 1),
  .gallery-item:nth-child(7n + 5) {
    grid-column: span 6;
    min-height: 390px;
  }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 220px; }
  .process-card h3 { margin-top: 48px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; gap: 34px; }
}

@media (max-width: 700px) {
  :root { --shell: min(1180px, calc(100% - 28px)); }
  .section-pad { padding: 72px 0; }
  .nav-shell {
    width: min(1260px, calc(100% - 24px));
    min-height: 74px;
  }
  .brand-copy strong { font-size: 1.36rem; }
  .brand-copy span { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .language-switch { padding: 6px 8px; }
  .mobile-menu { top: 74px; }

  .hero {
    height: auto;
    min-height: 720px;
    padding: 98px 0 34px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero-content { padding-top: 18px; }
  .hero-media img { object-position: 46% center; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5rem); line-height: .84; }
  .hero-lede { font-size: .96rem; }
  .hero-bottom {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 30px;
    flex-direction: column;
    gap: 9px;
  }
  .hero-bottom > div { gap: 0; }
  .hero-social div { gap: 12px; }

  .intro-grid { gap: 24px; }
  .intro h2,
  .section-heading h2,
  .featured-copy h2,
  .area-copy h2,
  .contact-info h2 {
    font-size: 2.65rem;
  }

  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
  }
  .service-feature.reverse .service-photo { order: 0; }
  .service-photo { min-height: 300px; }
  .service-copy { padding: 28px 22px 32px; }
  .service-copy h3 { margin-top: 32px; font-size: 2.55rem; }

  .featured-media > img { aspect-ratio: 1 / 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item,
  .gallery-item:nth-child(7n + 1),
  .gallery-item:nth-child(7n + 5) {
    grid-column: 1;
    min-height: 390px;
  }
  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -14px;
    padding-right: 14px;
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-btn { flex: 0 0 auto; }

  .video-grid { grid-template-columns: 1fr; }
  .video-card { min-height: 230px; }

  .area-graphic { width: min(340px, 100%); }
  .area-center { width: 100px; height: 100px; }
  .area-center strong { font-size: 2.35rem; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; }

  .media-modal {
    grid-template-columns: 46px minmax(0,1fr) 46px;
  }
  .modal-prev,
  .modal-next {
    width: 38px;
    height: 48px;
  }
  .modal-stage { padding-top: 74px; }
}