:root {
  --ink: #0b0d0c;
  --ink-soft: #141816;
  --ivory: #f0ece3;
  --ivory-bright: #faf8f3;
  --stone: #cbc5b9;
  --brass: #c9a56f;
  --brass-light: #e0c79f;
  --line-dark: rgba(11, 13, 12, .17);
  --line-light: rgba(255, 255, 255, .16);
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --page: min(92vw, 1440px);
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--brass); color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10000;
  padding: .8rem 1rem;
  background: var(--brass);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Intro */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #070908;
  color: var(--ivory);
  isolation: isolate;
  animation: introDisappear .42s 4.23s ease-out forwards;
  will-change: opacity;
}
.intro::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 75%;
  left: 47%;
  width: 42vmin;
  height: 42vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250, 248, 243, .94) 0%, rgba(224, 199, 159, .66) 24%, rgba(201, 165, 111, .16) 52%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(.08);
  animation: thresholdLight 1.5s 3.02s cubic-bezier(.55, .02, .82, .38) forwards;
  will-change: transform, opacity;
}
.intro-grid {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(201, 165, 111, .15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 165, 111, .15) 1px, transparent 1px);
  background-size: clamp(42px, 5vw, 76px) clamp(42px, 5vw, 76px);
  mask-image: radial-gradient(circle at center, black 10%, transparent 73%);
}
.intro-topline {
  position: absolute;
  inset: clamp(1.3rem, 3vw, 2.5rem) clamp(1.3rem, 4vw, 4rem) auto;
  display: flex;
  justify-content: space-between;
  color: rgba(240, 236, 227, .5);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  opacity: 0;
  animation: introTextIn .5s .1s ease forwards;
}
.intro-camera {
  width: min(80vw, 980px);
  transform-origin: 47% 75%;
  backface-visibility: hidden;
  transform: perspective(1200px) translate3d(0, 0, -140px);
  animation:
    cameraEnter 1.6s 2.95s cubic-bezier(.55, .02, .82, .38) forwards,
    cameraFade .3s 4.22s ease-out forwards;
  will-change: transform, opacity;
}
.intro-house-wrap {
  animation: houseSettle 1.55s 1.2s ease-in-out both;
  will-change: transform;
}
.intro-house {
  width: 100%;
  overflow: visible;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.intro-house path,
.intro-house circle {
  fill: none;
  stroke: var(--brass-light);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.intro-house path[pathLength="1"] {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: lineDraw 1.4s cubic-bezier(.65, 0, .35, 1) forwards;
}
.construction-lines { opacity: .25; }
.construction-lines path:nth-child(1) { animation-delay: .08s; }
.construction-lines path:nth-child(2) { animation-delay: .14s; }
.construction-lines path:nth-child(3) { animation-delay: .2s; }
.house-lines path:nth-child(1) { animation-delay: .36s; }
.house-lines path:nth-child(2) { animation-delay: .46s; }
.house-lines path:nth-child(3) { animation-delay: .56s; }
.house-lines path:nth-child(4) { animation-delay: .66s; }
.house-lines path:nth-child(5) { animation-delay: .74s; }
.house-lines path:nth-child(6) { animation-delay: .8s; }
.house-lines path:nth-child(7) { animation-delay: .86s; }
.detail-lines { opacity: .68; }
.detail-lines path:nth-child(1) { animation-delay: 1.04s; }
.detail-lines path:nth-child(2) { animation-delay: 1.1s; }
.detail-lines path:nth-child(3) { animation-delay: 1.16s; }
.detail-lines path:nth-child(4) { animation-delay: 1.22s; }
.detail-lines path:nth-child(5) { animation-delay: 1.28s; }
.door-lines path { animation-delay: 1.42s !important; }
.door-lines circle { opacity: 0; animation: introTextIn .3s 2.3s forwards; }
.measure-lines { opacity: .3; }
.measure-lines path { animation-delay: 1.55s !important; }
.intro-house .door-glow {
  fill: var(--brass);
  stroke: none;
  opacity: 0;
  animation: doorLight 1.25s 2.55s ease forwards;
}
.intro-copy {
  position: absolute;
  left: clamp(1.3rem, 4vw, 4rem);
  bottom: clamp(1.4rem, 4vw, 4rem);
  display: grid;
  gap: .5rem;
  opacity: 0;
  animation: introTextIn .7s .35s ease forwards, introCopyOut .4s 3.35s ease forwards;
}
.intro-kicker {
  color: var(--brass);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .26em;
}
.intro-copy strong {
  font-size: clamp(1.6rem, 3vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .9;
}
.intro-progress {
  width: clamp(140px, 18vw, 260px);
  height: 1px;
  margin-top: .45rem;
  background: rgba(255, 255, 255, .18);
}
.intro-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--brass);
  animation: progress 3.25s .35s cubic-bezier(.4, 0, .2, 1) forwards;
}
.intro-skip {
  position: absolute;
  right: clamp(1.3rem, 4vw, 4rem);
  bottom: clamp(1.4rem, 4vw, 4rem);
  display: flex;
  gap: 1.3rem;
  align-items: center;
  padding: .55rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: 0;
  animation: introTextIn .6s .7s ease forwards, introCopyOut .4s 3.35s ease forwards;
}
.intro-skip:hover { color: var(--brass-light); border-color: var(--brass); }
.intro.is-skipped { animation: skipIntro .45s ease forwards; }
.intro.is-complete { display: none; }
.skip-intro .intro { display: none; }

@keyframes lineDraw { to { stroke-dashoffset: 0; } }
@keyframes introTextIn { to { opacity: 1; } }
@keyframes introCopyOut { to { opacity: 0; transform: translateY(10px); } }
@keyframes progress { to { width: 100%; } }
@keyframes doorLight { 0% { opacity: 0; } 40%, 75% { opacity: .88; } 100% { opacity: 1; } }
@keyframes houseSettle {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -4px, 0); }
}
@keyframes cameraEnter {
  to { transform: perspective(1200px) translate3d(0, 0, 1150px); }
}
@keyframes cameraFade { to { opacity: 0; } }
@keyframes thresholdLight {
  from { opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.08); }
  to { opacity: .94; transform: translate3d(-50%, -50%, 0) scale(7); }
}
@keyframes introDisappear {
  to { visibility: hidden; opacity: 0; pointer-events: none; }
}
@keyframes skipIntro { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* Global layout */
.page-shell {
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(1.008);
  animation: pageReveal .8s 3.92s cubic-bezier(.22, .61, .36, 1) forwards;
  will-change: opacity, transform;
}
.skip-intro .page-shell { opacity: 1; transform: none; animation: none; }
@keyframes pageReveal { to { opacity: 1; transform: none; } }
.section-pad { padding: clamp(6rem, 10vw, 10rem) max(4vw, calc((100vw - 1440px) / 2)); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, .6);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow > span:first-child { width: 32px; height: 1px; background: var(--brass); }
.eyebrow-dark { color: rgba(11, 13, 12, .55); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 0;
  font-weight: 450;
  letter-spacing: -.055em;
  line-height: .94;
}
h1 em, h2 em { color: var(--brass); font-family: var(--serif); font-weight: 400; }
h2 { font-size: clamp(3rem, 6vw, 6.8rem); }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-light { background: var(--ivory); color: var(--ink); }
.button-light:hover { background: var(--brass); }
.button-brass { width: 100%; background: var(--brass); color: var(--ink); }
.button-brass:hover { background: var(--brass-light); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  color: rgba(255, 255, 255, .86);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: gap .25s ease, border-color .25s ease;
}
.text-link:hover { gap: 2rem; border-color: var(--brass); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 max(4vw, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  color: var(--ivory);
  transition: height .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
}
.site-header.scrolled {
  height: 68px;
  border-color: rgba(11, 13, 12, .12);
  background: rgba(240, 236, 227, .88);
  color: var(--ink);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; width: max-content; align-items: center; gap: .6rem; }
.brand-logo-crop {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  overflow: hidden;
  background: transparent;
}
.brand-logo-crop img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 132px;
  max-width: none;
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -46%);
}
.site-header:not(.scrolled) .brand-logo-crop img,
.site-footer .brand-logo-crop img {
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(201, 165, 111, .72));
}
.legal-page .site-header .brand-logo-crop img,
.site-header.scrolled .brand-logo-crop img { filter: none; }
.brand-name { font-size: .72rem; font-weight: 850; letter-spacing: .105em; white-space: nowrap; }
.brand-name i, .footer-brand i { color: var(--brass); font-family: var(--serif); font-weight: 400; }
.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.3vw, 2.6rem); }
.site-nav a {
  position: relative;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -.45rem; left: 0; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.language-switch { display: flex; align-items: center; gap: .4rem; color: currentColor; font-size: .62rem; font-weight: 800; letter-spacing: .08em; }
.language-switch button { padding: .25rem .1rem; border: 0; background: transparent; color: currentColor; opacity: .42; }
.language-switch button.active { color: var(--brass); opacity: 1; }
.language-switch span { opacity: .25; }
.header-cta { display: flex; gap: 1.2rem; padding-bottom: .35rem; border-bottom: 1px solid currentColor; font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.header-cta span:last-child { color: var(--brass); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; color: inherit; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 6px 0; background: currentColor; transition: transform .25s ease; }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 8rem);
  padding: calc(var(--header-h) + 6vw) max(4vw, calc((100vw - 1440px) / 2)) 5vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 45%, rgba(201, 165, 111, .11), transparent 26%),
    var(--ink);
  color: var(--ivory);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 7.5vw 7.5vw;
  mask-image: linear-gradient(to right, black, transparent 85%);
}
.hero::after { content: ""; position: absolute; inset: auto 4vw 0; height: 1px; background: rgba(255, 255, 255, .13); }
.hero-orbit { position: absolute; border: 1px solid rgba(201, 165, 111, .12); border-radius: 50%; pointer-events: none; }
.orbit-one { width: 52vw; height: 52vw; right: -22vw; top: -24vw; }
.orbit-two { width: 34vw; height: 34vw; right: 5vw; bottom: -24vw; }
.hero-meta {
  position: absolute;
  top: calc(var(--header-h) + 2.2rem);
  right: max(4vw, calc((100vw - 1440px) / 2));
  left: max(4vw, calc((100vw - 1440px) / 2));
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .45);
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-copy { position: relative; z-index: 2; max-width: 910px; padding-top: 2rem; }
.hero h1 { font-size: clamp(4rem, 7.8vw, 8.8rem); }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { margin-left: clamp(1rem, 6vw, 6rem); white-space: nowrap; }
.hero-intro { max-width: 670px; margin: 2.1rem 0 0 clamp(1rem, 6vw, 6rem); color: rgba(255, 255, 255, .62); font-size: clamp(.95rem, 1.25vw, 1.2rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 2.2rem; margin: 2.3rem 0 0 clamp(1rem, 6vw, 6rem); }
.hero-blueprint {
  position: relative;
  z-index: 2;
  align-self: center;
  aspect-ratio: .79;
  max-height: 66vh;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .025);
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}
.blueprint-label, .blueprint-footer { display: flex; justify-content: space-between; color: rgba(255, 255, 255, .42); font-size: .54rem; font-weight: 800; letter-spacing: .16em; }
.blueprint-plan { position: absolute; inset: 12% 12% 13%; transform: rotate(-3deg); }
.plan-room { position: absolute; border: 1px solid rgba(201, 165, 111, .6); }
.room-a { inset: 0 48% 51% 0; }
.room-b { inset: 0 0 35% 52%; }
.room-c { inset: 53% 50% 0 0; }
.room-d { inset: 67% 0 0 54%; }
.plan-core { position: absolute; inset: 32% 29% 29% 30%; display: grid; place-items: center; border: 1px solid var(--brass); border-radius: 50%; }
.plan-core::before, .plan-core::after { content: ""; position: absolute; width: 140%; height: 140%; border: 1px solid rgba(201, 165, 111, .15); border-radius: 50%; }
.plan-core::after { width: 180%; height: 180%; }
.plan-core i { position: absolute; inset: 18%; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; animation: corePulse 2.4s ease-in-out infinite alternate; }
.plan-core b { color: var(--brass-light); font-size: clamp(.75rem, 1.3vw, 1.25rem); letter-spacing: .14em; }
.plan-axis { position: absolute; background: rgba(255, 255, 255, .12); }
.axis-x { top: 50%; left: -8%; width: 116%; height: 1px; }
.axis-y { top: -8%; left: 50%; width: 1px; height: 116%; }
.blueprint-footer { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; }
.blueprint-footer span { display: flex; align-items: center; gap: .35rem; }
.blueprint-footer span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--brass); }
.scroll-cue { position: absolute; left: 1.5vw; bottom: 4.8rem; display: grid; justify-items: center; gap: .7rem; color: rgba(255, 255, 255, .35); }
.scroll-cue span { width: 1px; height: 58px; overflow: hidden; background: rgba(255, 255, 255, .15); }
.scroll-cue span::after { content: ""; display: block; width: 100%; height: 50%; background: var(--brass); animation: scrollLine 1.8s ease-in-out infinite; }
.scroll-cue small { font-size: .47rem; font-weight: 800; letter-spacing: .18em; writing-mode: vertical-rl; }
@keyframes corePulse { to { transform: scale(1.1); opacity: .4; } }
@keyframes scrollLine { from { transform: translateY(-110%); } to { transform: translateY(220%); } }

/* Marquee */
.statement { overflow: hidden; padding: 1.15rem 0; border-bottom: 1px solid var(--line-dark); background: var(--brass); }
.statement-line { display: flex; width: max-content; align-items: center; gap: 2.5rem; animation: marquee 28s linear infinite; font-size: .68rem; font-weight: 850; letter-spacing: .19em; white-space: nowrap; }
.statement-line i { font-style: normal; font-size: .5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Services */
.services { background: var(--ivory); }
.section-heading { display: grid; grid-template-columns: 1.6fr .55fr; align-items: end; gap: clamp(3rem, 10vw, 12rem); }
.section-heading > p { max-width: 420px; margin-bottom: .4rem; color: rgba(11, 13, 12, .6); line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: clamp(4rem, 8vw, 8rem); background: rgba(11, 13, 12, .2); perspective: 1200px; }
.service-card { position: relative; min-height: 720px; display: flex; flex-direction: column; padding: clamp(1.6rem, 3vw, 3rem); overflow: hidden; transform-style: preserve-3d; transition: transform .25s ease-out; }
.service-card-dark { background: var(--ink); color: var(--ivory); }
.service-card-light { background: var(--ivory-bright); color: var(--ink); }
.service-topline { display: flex; justify-content: space-between; padding-bottom: 1.1rem; border-bottom: 1px solid currentColor; font-size: .58rem; font-weight: 800; letter-spacing: .17em; opacity: .45; }
.service-icon { position: relative; height: 255px; display: grid; place-items: center; margin: 1rem 0; }
.browser-icon { perspective: 800px; }
.browser-icon::before, .browser-icon::after { content: ""; position: absolute; border: 1px solid rgba(201, 165, 111, .2); border-radius: 50%; }
.browser-icon::before { width: 210px; height: 210px; }
.browser-icon::after { width: 270px; height: 270px; }
.browser-icon > .browser-frame { width: min(72%, 330px); aspect-ratio: 1.45; border: 1px solid var(--brass); transform: rotateY(-12deg) rotateX(7deg) rotateZ(-2deg); box-shadow: 25px 30px 0 rgba(201, 165, 111, .06); }
.browser-bar { display: flex; gap: 5px; align-items: center; height: 18%; padding: 0 8px; border-bottom: 1px solid rgba(201, 165, 111, .55); }
.browser-bar i { width: 4px; height: 4px; background: var(--brass); border-radius: 50%; }
.browser-layout { position: relative; display: block; height: 82%; }
.browser-layout i { position: absolute; display: block; border: 1px solid rgba(201, 165, 111, .5); }
.browser-layout i:nth-child(1) { inset: 14% 8% 48%; }
.browser-layout i:nth-child(2) { inset: 58% 54% 12% 8%; }
.browser-layout i:nth-child(3) { inset: 58% 8% 12% 52%; }
.phone-frame { position: relative; width: 126px; height: 232px; border: 1px solid var(--ink); border-radius: 22px; background: var(--ivory); box-shadow: 30px 25px 0 rgba(201, 165, 111, .28); transform: rotate(5deg); }
.phone-notch { position: absolute; top: 8px; left: 40%; width: 20%; height: 4px; border-radius: 10px; background: var(--ink); }
.phone-card { position: absolute; right: 12px; left: 12px; display: block; border: 1px solid var(--ink); }
.card-one { top: 34px; height: 72px; background: var(--brass); }
.card-two { top: 116px; height: 62px; }
.phone-nav { position: absolute; right: 12px; bottom: 12px; left: 12px; height: 12px; border-top: 1px solid var(--ink); }
.service-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 5vw, 5.5rem); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.service-card > p { max-width: 540px; margin: 1.25rem 0; color: currentColor; line-height: 1.7; opacity: .62; }
.service-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; margin: 0 0 2rem; padding: 0; list-style: none; font-size: .72rem; font-weight: 700; letter-spacing: .035em; }
.service-card li { display: flex; align-items: center; gap: .65rem; }
.service-card li::before { content: ""; width: 4px; height: 4px; flex: 0 0 auto; background: var(--brass); transform: rotate(45deg); }
.service-card > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 1.2rem; border-top: 1px solid currentColor; font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.service-card > a span:last-child { color: var(--brass); transition: transform .2s ease; }
.service-card > a:hover span:last-child { transform: translate(3px, -3px); }

/* Approach */
.approach { display: grid; grid-template-columns: minmax(300px, .82fr) 1fr; gap: clamp(4rem, 10vw, 10rem); background: var(--ink); color: var(--ivory); }
.approach-visual { align-self: start; }
.architecture-card { position: sticky; top: 100px; padding: 1.4rem; border: 1px solid var(--line-light); background: linear-gradient(145deg, rgba(255,255,255,.04), transparent); }
.architecture-card::before { content: ""; position: absolute; inset: 9%; border: 1px solid rgba(201, 165, 111, .12); }
.arch-no, .arch-caption { position: relative; z-index: 1; display: block; color: rgba(255, 255, 255, .4); font-size: .55rem; font-weight: 800; letter-spacing: .15em; }
.architecture-card svg { position: relative; z-index: 1; width: 100%; margin: 1.5rem auto; }
.architecture-card svg path, .architecture-card svg circle { fill: none; stroke: var(--brass); stroke-width: 1; vector-effect: non-scaling-stroke; }
.arch-caption { text-align: right; }
.approach-copy { padding-top: 1.4rem; }
.approach-lead { max-width: 620px; margin: 2.2rem 0 4rem; color: rgba(255, 255, 255, .62); font-size: clamp(1rem, 1.3vw, 1.2rem); line-height: 1.8; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 1.2rem; padding: 1.6rem 0; border-top: 1px solid var(--line-light); }
.process-list li:last-child { border-bottom: 1px solid var(--line-light); }
.process-list > li > span { padding-top: .35rem; color: var(--brass); font-size: .6rem; font-weight: 800; letter-spacing: .1em; }
.process-list h3 { margin: 0 0 .35rem; font-size: 1.2rem; font-weight: 600; }
.process-list p { max-width: 530px; margin: 0; color: rgba(255, 255, 255, .49); font-size: .88rem; line-height: 1.65; }

/* About */
.about { position: relative; display: grid; grid-template-columns: .35fr 1.35fr; gap: clamp(2rem, 8vw, 9rem); overflow: hidden; background: var(--ivory-bright); }
.about::before { content: ""; position: absolute; top: 0; bottom: 0; left: 18%; width: 1px; background: var(--line-dark); }
.about-index { font-size: clamp(5rem, 11vw, 11rem); font-weight: 850; letter-spacing: -.08em; line-height: .65; }
.about-index span { color: var(--brass); font-family: var(--serif); font-size: .25em; font-weight: 400; letter-spacing: .02em; }
.about-copy { position: relative; z-index: 1; }
.about-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 880px; margin: 3rem 0 0; }
.about-columns p { margin: 0; color: rgba(11, 13, 12, .65); line-height: 1.8; }
.about-values { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; margin-top: 4rem; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.about-values div { display: grid; min-height: 110px; align-content: space-between; padding: 1rem; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.about-values span { color: var(--brass); font-size: .58rem; font-weight: 800; }
.about-values strong { font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }

/* Expertise */
.expertise { border-top: 1px solid var(--line-dark); background: var(--ivory); font-family: var(--sans); }
.expertise-heading { align-items: start; }
.expertise-intro { max-width: 470px; padding-top: .4rem; }
.expertise-intro p { margin: 0 0 1.15rem; color: rgba(11, 13, 12, .62); line-height: 1.8; }
.expertise-intro p:last-child { margin-bottom: 0; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(4rem, 7vw, 7rem); background: var(--line-dark); border: 1px solid var(--line-dark); }
.expertise-card { min-height: 500px; display: flex; flex-direction: column; padding: clamp(1.5rem, 2.5vw, 2.4rem); background: var(--ivory-bright); }
.expertise-card-featured { background: var(--brass); }
.expertise-number { display: block; padding-bottom: 1rem; border-bottom: 1px solid currentColor; color: rgba(11, 13, 12, .46); font-size: .58rem; font-weight: 800; letter-spacing: .14em; }
.expertise-card h3 { margin: clamp(3rem, 6vw, 5.5rem) 0 1.2rem; font-family: var(--sans); font-size: clamp(2rem, 3.1vw, 3.4rem); font-weight: 500; letter-spacing: -.045em; line-height: 1.05; }
.expertise-card > p { margin-bottom: 2rem; color: rgba(11, 13, 12, .64); line-height: 1.75; }
.expertise-card ul { display: grid; gap: .8rem; margin: auto 0 0; padding: 1.3rem 0 0; border-top: 1px solid rgba(11, 13, 12, .18); list-style: none; }
.expertise-card li { position: relative; padding-left: 1.1rem; color: rgba(11, 13, 12, .7); font-size: .76rem; font-weight: 650; line-height: 1.5; }
.expertise-card li::before { content: ""; position: absolute; top: .55em; left: 0; width: 5px; height: 5px; background: currentColor; transform: rotate(45deg); }

/* FAQ */
.faq { display: grid; grid-template-columns: minmax(290px, .75fr) minmax(0, 1.25fr); gap: clamp(4rem, 10vw, 11rem); border-top: 1px solid var(--line-dark); background: var(--ivory-bright); font-family: var(--sans); }
.faq-intro { align-self: start; }
.faq-intro h2 { font-size: clamp(3rem, 5.5vw, 6.2rem); }
.faq-intro > p:not(.eyebrow) { max-width: 560px; margin: 2rem 0; color: rgba(11, 13, 12, .62); line-height: 1.8; }
.faq-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .65rem 0; border-bottom: 1px solid var(--brass); font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.faq-link span:last-child { color: var(--brass); }
.faq-list { border-bottom: 1px solid var(--line-dark); }
.faq-list details { border-top: 1px solid var(--line-dark); }
.faq-list summary { display: grid; grid-template-columns: 1fr 24px; gap: 2rem; align-items: center; padding: 1.65rem 0; cursor: pointer; list-style: none; font-family: var(--sans); font-size: clamp(1rem, 1.35vw, 1.22rem); font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; display: block; width: 18px; height: 18px; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details[open] summary { color: #8d6d3c; }
.faq-list details p { max-width: 700px; margin: -.3rem 3.5rem 1.7rem 0; color: rgba(11, 13, 12, .62); font-family: var(--sans); font-size: .9rem; line-height: 1.8; }
.faq-list summary:focus-visible { outline: 2px solid var(--brass); outline-offset: 5px; }

/* Contact */
.contact { position: relative; display: grid; grid-template-columns: .85fr 1fr; gap: clamp(4rem, 10vw, 10rem); overflow: hidden; background: var(--ink-soft); color: var(--ivory); }
.contact-glow { position: absolute; top: -20vw; left: -16vw; width: 44vw; height: 44vw; border: 1px solid rgba(201, 165, 111, .14); border-radius: 50%; box-shadow: 0 0 100px rgba(201, 165, 111, .07), inset 0 0 100px rgba(201, 165, 111, .04); }
.contact-intro, .contact-form { position: relative; z-index: 1; }
.contact-intro > p:not(.eyebrow) { max-width: 620px; margin: 2.2rem 0; color: rgba(255, 255, 255, .58); line-height: 1.8; }
.contact-mail { display: flex; width: max-content; gap: 1.4rem; padding: .65rem 0; border-bottom: 1px solid var(--brass); font-size: clamp(.85rem, 1.1vw, 1.05rem); }
.contact-mail span { color: var(--brass); }
.contact-facts { display: grid; gap: .8rem; margin-top: 3rem; }
.contact-facts span { display: flex; align-items: center; gap: .75rem; }
.contact-facts i { width: 5px; height: 5px; border-radius: 50%; background: var(--brass); }
.contact-facts b { color: rgba(255, 255, 255, .42); font-size: .67rem; font-weight: 600; letter-spacing: .04em; }
.contact-form { padding: clamp(1.5rem, 3vw, 3rem); border: 1px solid rgba(255, 255, 255, .15); background: rgba(255, 255, 255, .025); }
.form-topline { display: flex; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .4); font-size: .58rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.form-row.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form > label, .form-row label { display: grid; gap: .7rem; margin-bottom: 1.3rem; }
.contact-form label > span:first-child, .contact-form legend { color: rgba(255, 255, 255, .55); font-size: .65rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea, .contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ivory);
  transition: border-color .2s ease;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form select { height: 48px; }
.contact-form textarea { min-height: 130px; padding: .8rem 0; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--brass); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, .28); }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(135deg, var(--brass) 50%, transparent 50%); background-position: calc(100% - 14px) 21px, calc(100% - 9px) 21px; background-size: 5px 5px; background-repeat: no-repeat; }
.contact-form select option { background: var(--ink); }
.contact-form fieldset { margin: 0 0 1.4rem; padding: 0; border: 0; }
.contact-form legend { margin-bottom: .85rem; }
.choice-row { display: flex; flex-wrap: wrap; gap: .55rem; }
.choice-row label { cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.choice-row span { display: block; padding: .65rem 1rem; border: 1px solid rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .65); font-size: .69rem; font-weight: 700; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.choice-row input:checked + span { border-color: var(--brass); background: var(--brass); color: var(--ink); }
.choice-row input:focus-visible + span { outline: 2px solid var(--brass-light); outline-offset: 2px; }
.honeypot { position: absolute !important; left: -9999px; }
.privacy-check { display: block !important; margin: 1.2rem 0 1.5rem !important; cursor: pointer; }
.privacy-check > input { position: absolute; opacity: 0; }
.privacy-check > span { display: flex; align-items: flex-start; gap: .7rem; color: rgba(255, 255, 255, .45) !important; font-size: .65rem !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.5; text-transform: none !important; }
.privacy-check i { position: relative; width: 16px; height: 16px; flex: 0 0 auto; margin-top: 1px; border: 1px solid rgba(255,255,255,.3); }
.privacy-check input:checked + span i { border-color: var(--brass); background: var(--brass); }
.privacy-check input:checked + span i::after { content: ""; position: absolute; top: 3px; left: 4px; width: 6px; height: 3px; border-bottom: 1px solid var(--ink); border-left: 1px solid var(--ink); transform: rotate(-45deg); }
.privacy-check a { color: var(--ivory); border-bottom: 1px solid rgba(255,255,255,.35); }
.contact-form .invalid { border-color: #d88373 !important; }
.form-status { min-height: 1.4rem; margin: .8rem 0 0; color: rgba(255, 255, 255, .65); font-size: .7rem; line-height: 1.5; }
.form-status.success { color: var(--brass-light); }
.form-status.error { color: #e8a99e; }

/* Footer */
.site-footer { padding: 3.2rem max(4vw, calc((100vw - 1440px) / 2)) 1.4rem; background: #070908; color: var(--ivory); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 2rem; padding-bottom: 3.2rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; font-size: .83rem; font-weight: 850; letter-spacing: .11em; }
.footer-top p { margin: 0; color: rgba(255,255,255,.42); font-family: var(--serif); font-size: clamp(1rem, 1.5vw, 1.4rem); font-style: italic; }
.back-top { display: flex; gap: 1.2rem; padding-bottom: .35rem; border-bottom: 1px solid rgba(255,255,255,.3); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.back-top span:last-child { color: var(--brass); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.32); font-size: .55rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.footer-bottom a:hover { color: var(--brass); }
.footer-bottom > span:last-child { text-align: right; }
.cookie-settings-link { padding: 0; border: 0; background: transparent; color: inherit; font-size: inherit; font-weight: inherit; letter-spacing: inherit; text-transform: inherit; }
.cookie-settings-link:hover { color: var(--brass); }

/* Informational privacy notice (not a consent request) */
.privacy-notice-bar {
  position: fixed;
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  z-index: 9000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  width: min(760px, calc(100vw - 2rem));
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(7,9,8,.97);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
  color: var(--ivory);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .3s ease, transform .3s ease;
}
.privacy-notice-bar[hidden] { display: none; }
.privacy-notice-bar.is-visible { opacity: 1; transform: translateY(0); }
.privacy-notice-mark { color: var(--brass); font-family: var(--serif); font-size: 1rem; font-style: italic; }
.privacy-notice-copy > span { color: var(--brass); font-size: .55rem; font-weight: 800; letter-spacing: .15em; }
.privacy-notice-copy p { margin: .35rem 0 .25rem; color: rgba(255,255,255,.65); font-size: .73rem; line-height: 1.55; }
.privacy-notice-copy a { color: var(--ivory); border-bottom: 1px solid rgba(201,165,111,.75); font-size: .64rem; }
.privacy-notice-dismiss { min-height: 44px; padding: .72rem 1rem; border: 1px solid var(--brass); background: var(--brass); color: var(--ink); font-size: .6rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; transition: background .2s ease, border-color .2s ease; }
.privacy-notice-dismiss:hover { border-color: var(--brass-light); background: var(--brass-light); }

@media (max-width: 640px) {
  .privacy-notice-bar { grid-template-columns: auto 1fr; gap: .8rem 1rem; padding: 1rem; }
  .privacy-notice-dismiss { grid-column: 1 / -1; width: 100%; }
}

/* Consent */
body.consent-open { overflow: hidden; }
.consent-banner {
  position: fixed;
  right: clamp(1rem, 3vw, 2.4rem);
  bottom: clamp(1rem, 3vw, 2.4rem);
  z-index: 12000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  width: min(720px, calc(100vw - 2rem));
  padding: clamp(1.4rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(7,9,8,.97);
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
  color: var(--ivory);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .3s ease, transform .3s ease;
}
.consent-banner.is-visible { opacity: 1; transform: translateY(0); }
.consent-banner[hidden] { display: none; }
.consent-banner::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(125deg, transparent 55%, rgba(201,165,111,.09)); }
.consent-banner-mark { position: relative; width: 78px; color: var(--brass); font-family: var(--serif); font-size: 1.15rem; font-style: italic; }
.consent-banner-copy { position: relative; }
.consent-banner-copy > span, .consent-dialog-intro > span { color: var(--brass); font-size: .58rem; font-weight: 800; letter-spacing: .16em; }
.consent-banner h2 { margin: .55rem 0 .6rem; color: var(--ivory-bright); font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 400; letter-spacing: -.025em; line-height: 1.05; }
.consent-banner p { max-width: 560px; margin: 0; color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.65; }
.consent-banner-copy a { display: inline-block; margin-top: .75rem; color: rgba(255,255,255,.62); border-bottom: 1px solid rgba(201,165,111,.7); font-size: .66rem; }
.consent-banner-actions { position: relative; grid-column: 2; display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.25rem; }
.consent-button { min-height: 44px; padding: .72rem 1rem; border: 1px solid transparent; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.consent-button-primary { background: var(--brass); color: var(--ink); }
.consent-button-primary:hover { background: var(--brass-light); }
.consent-button-outline { border-color: rgba(255,255,255,.3); background: transparent; color: var(--ivory); }
.consent-button-outline:hover { border-color: var(--brass); color: var(--brass-light); }
.consent-button-muted { order: -1; border-color: rgba(255,255,255,.3); background: transparent; color: var(--ivory); }
.consent-button-muted:hover { border-color: var(--brass); color: var(--brass-light); }
.consent-layer { position: fixed; inset: 0; z-index: 13000; display: grid; place-items: center; padding: 1rem; opacity: 0; transition: opacity .25s ease; }
.consent-layer[hidden] { display: none; }
.consent-layer.is-visible { opacity: 1; }
.consent-backdrop { position: absolute; inset: 0; background: rgba(3,4,4,.78); backdrop-filter: blur(8px); }
.consent-dialog { position: relative; width: min(680px, 100%); max-height: min(820px, calc(100vh - 2rem)); padding: clamp(1.4rem, 4vw, 2.4rem); overflow: auto; border: 1px solid rgba(255,255,255,.12); background: #0b0d0c; box-shadow: 0 32px 90px rgba(0,0,0,.48); color: var(--ivory); }
.consent-dialog-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.consent-dialog-brand { font-size: .67rem; font-weight: 850; letter-spacing: .12em; }
.consent-dialog-brand i { color: var(--brass); font-family: var(--serif); font-weight: 400; }
.consent-close { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.18); background: transparent; color: var(--ivory); font-size: 1.35rem; line-height: 1; }
.consent-close:hover { border-color: var(--brass); color: var(--brass); }
.consent-dialog-intro { padding: 2rem 0 1.5rem; }
.consent-dialog-intro h2 { margin: .55rem 0 .7rem; font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.consent-dialog-intro p { max-width: 570px; margin: 0; color: rgba(255,255,255,.58); font-size: .83rem; line-height: 1.7; }
.consent-category { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; align-items: center; padding: 1.35rem 0; border-top: 1px solid rgba(255,255,255,.11); }
.consent-category h3 { margin: 0 0 .4rem; font-size: .82rem; letter-spacing: .04em; }
.consent-category p { max-width: 510px; margin: 0; color: rgba(255,255,255,.5); font-size: .73rem; line-height: 1.6; }
.consent-category small { display: inline-block; margin-top: .5rem; color: var(--brass); font-size: .55rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.consent-category > strong { color: var(--brass-light); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.consent-switch { position: relative; flex: 0 0 auto; }
.consent-switch input { position: absolute; opacity: 0; pointer-events: none; }
.consent-switch > span { position: relative; display: block; width: 52px; height: 28px; border: 1px solid rgba(255,255,255,.35); border-radius: 30px; background: rgba(255,255,255,.06); transition: .2s ease; }
.consent-switch > span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--stone); transition: .2s ease; }
.consent-switch input:checked + span { border-color: var(--brass); background: var(--brass); }
.consent-switch input:checked + span::after { transform: translateX(24px); background: var(--ink); }
.consent-switch input:focus-visible + span { outline: 2px solid var(--brass-light); outline-offset: 3px; }
.consent-privacy-link { display: inline-block; margin-top: .9rem; color: rgba(255,255,255,.62); border-bottom: 1px solid var(--brass); font-size: .68rem; }
.consent-dialog-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }

@media (max-width: 600px) {
  .consent-banner { grid-template-columns: 1fr; padding: 1.25rem; }
  .consent-banner-mark { width: auto; margin-bottom: .75rem; }
  .consent-banner-actions { grid-column: 1; display: grid; grid-template-columns: 1fr 1fr; }
  .consent-banner-actions .consent-button-primary { grid-column: 1 / -1; grid-row: 1; }
  .consent-banner-actions .consent-button-muted { order: initial; }
  .consent-dialog { padding: 1.2rem; }
  .consent-category { gap: .8rem; }
  .consent-dialog-actions { display: grid; grid-template-columns: 1fr; }
}

/* Legal pages */
.legal-page { background: var(--ivory-bright); }
.legal-page .site-header { position: sticky; color: var(--ink); border-color: var(--line-dark); background: rgba(250,248,243,.9); backdrop-filter: blur(16px); }
.legal-main { min-height: 75vh; padding: clamp(5rem, 9vw, 9rem) max(4vw, calc((100vw - 1180px) / 2)); }
.legal-hero { display: grid; grid-template-columns: 1fr .65fr; gap: 4rem; align-items: end; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line-dark); }
.legal-hero h1 { font-size: clamp(3.8rem, 8vw, 8rem); }
.legal-hero h1 em { display: block; color: var(--brass); font-family: var(--serif); font-weight: 400; }
.legal-hero p { max-width: 480px; margin: 0; color: rgba(11,13,12,.56); line-height: 1.75; }
.legal-content { display: grid; grid-template-columns: 240px minmax(0, 720px); gap: clamp(3rem, 8vw, 8rem); padding-top: 4rem; }
.legal-toc { position: sticky; top: 110px; align-self: start; display: grid; gap: .65rem; }
.legal-toc span { margin-bottom: .5rem; color: var(--brass); font-size: .58rem; font-weight: 800; letter-spacing: .15em; }
.legal-toc a { color: rgba(11,13,12,.52); font-size: .72rem; }
.legal-toc a:hover { color: var(--ink); }
.legal-block { scroll-margin-top: 100px; padding: 0 0 2.4rem; margin: 0 0 2.4rem; border-bottom: 1px solid var(--line-dark); }
.legal-block:last-child { border-bottom: 0; }
.legal-block h2 { margin-bottom: 1.4rem; font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem); font-weight: 400; letter-spacing: -.025em; line-height: 1.15; }
.legal-block h3 { margin: 1.6rem 0 .7rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-block p, .legal-block li { color: rgba(11,13,12,.64); font-size: .9rem; line-height: 1.75; }
.legal-block ul { padding-left: 1.1rem; }
.legal-block a { border-bottom: 1px solid var(--brass); }
.legal-note { padding: 1.1rem; border-left: 2px solid var(--brass); background: rgba(201,165,111,.12); }
[data-language-block][hidden] { display: none; }

@media (max-width: 1120px) {
  :root { --header-h: 72px; }
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    z-index: 1000;
    display: none;
    width: 100%;
    height: calc(100dvh - var(--header-h));
    min-height: 0;
    align-content: center;
    justify-items: center;
    gap: 1.2rem;
    padding: 2rem;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--ivory);
    color: var(--ink);
    box-shadow: 0 24px 60px rgba(11, 13, 12, .12);
  }
  .site-nav.open { display: grid; }
  .site-nav a {
    max-width: 100%;
    padding: .2rem 1rem;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: 1.05;
    text-align: center;
    text-transform: none;
  }
  body.menu-open .site-header {
    border-color: rgba(11, 13, 12, .12);
    background: var(--ivory);
    color: var(--ink);
  }
  body.menu-open .site-header .brand-logo-crop img { filter: none; }
  body.menu-open .privacy-notice-bar { visibility: hidden; opacity: 0; pointer-events: none; }
  .header-actions { grid-column: 2; grid-row: 1; padding-right: 54px; }
  .menu-toggle { position: absolute; z-index: 1001; right: max(4vw, calc((100vw - 1440px) / 2)); display: block; }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr .55fr; gap: 3rem; }
  .hero-blueprint { max-height: 52vh; }
  .hero h1 { font-size: clamp(4rem, 8.7vw, 7.5rem); }
  .contact { grid-template-columns: .8fr 1fr; gap: 4rem; }
}

@media (max-width: 820px) {
  .intro-camera { width: 105vw; }
  .intro-topline span:last-child { display: none; }
  .intro-copy { bottom: 5.5rem; }
  .hero { grid-template-columns: 1fr; align-content: center; padding-top: calc(var(--header-h) + 7rem); padding-bottom: 5rem; }
  .hero-meta { top: calc(var(--header-h) + 1.4rem); }
  .hero-blueprint { display: none; }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(3.9rem, 13.5vw, 7.4rem); }
  .hero h1 em { margin-left: 0; white-space: normal; }
  .hero-intro, .hero-actions { margin-left: 0; }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 660px; }
  .approach { grid-template-columns: 1fr; }
  .approach-visual { max-width: 500px; }
  .architecture-card { position: relative; top: 0; }
  .about { grid-template-columns: 1fr; }
  .about::before { display: none; }
  .about-index { font-size: 6rem; }
  .about-values { grid-column: 1; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: 430px; }
  .faq { grid-template-columns: 1fr; gap: 3.5rem; }
  .contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr auto; }
  .footer-top p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-bottom > span:last-child { display: none; }
  .legal-hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-toc { position: relative; top: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; }
  .legal-toc span { width: 100%; }
}

@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .section-pad { padding: 5.2rem 1.15rem; }
  .site-header { padding: 0 1.15rem; }
  .brand-name { font-size: .62rem; }
  .brand-logo-crop { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-logo-crop img { width: 106px; }
  .header-actions { padding-right: 42px; }
  .header-cta { display: none; }
  .menu-toggle { right: 1rem; }
  .hero { min-height: 100svh; padding-right: 1.15rem; padding-left: 1.15rem; }
  .hero-meta { right: 1.15rem; left: 1.15rem; }
  .hero-meta span:last-child { display: none; }
  .hero h1 { font-size: clamp(3.35rem, 17vw, 5.5rem); line-height: .92; }
  .hero-intro { font-size: .92rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .button { width: 100%; }
  h2 { font-size: clamp(2.7rem, 13.5vw, 4.3rem); }
  .service-grid { margin-top: 3.5rem; }
  .service-card { min-height: auto; padding: 1.3rem; }
  .service-icon { height: 210px; }
  .service-card ul { grid-template-columns: 1fr; }
  .service-card > a { margin-top: 1.5rem; }
  .approach { gap: 3.5rem; }
  .approach-lead { margin-bottom: 2.5rem; }
  .about-columns { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 2rem; }
  .about-values { grid-template-columns: 1fr; }
  .about-values div { min-height: 90px; }
  .expertise-grid { margin-top: 3.5rem; }
  .expertise-card { min-height: auto; padding: 1.3rem; }
  .expertise-card h3 { margin-top: 3rem; }
  .expertise-card ul { margin-top: 2rem; }
  .faq-list summary { gap: 1rem; padding: 1.35rem 0; }
  .faq-list details p { margin-right: 0; }
  .contact { gap: 3.5rem; }
  .form-row.two-columns { grid-template-columns: 1fr; }
  .contact-form { padding: 1.2rem; }
  .footer-top { grid-template-columns: 1fr; }
  .back-top { grid-row: 3; width: max-content; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom nav { grid-row: 1; }
  .intro-topline { left: 1.1rem; }
  .intro-skip { right: 1.1rem; bottom: 1.25rem; }
  .intro-copy { left: 1.1rem; bottom: 5rem; }
  .legal-main { padding: 4rem 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-delay: 0ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .intro { display: none; }
  .page-shell { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .legal-toc, .consent-banner, .consent-layer { display: none; }
  .legal-main { padding: 0; }
  .legal-content { grid-template-columns: 1fr; }
}
