/* ============================================================
   PRIZM — Wall, Ceiling & Façade Finishing
   Art direction: "Day to dusk" — the page darkens like a
   working day on site. Materials: plaster, timber, glass,
   bitumen. One accent: bronze.
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-italic.woff2') format('woff2');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('assets/fonts/instrument-sans.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('assets/fonts/instrument-sans-italic.woff2') format('woff2');
  font-weight: 400 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/plex-mono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('assets/fonts/plex-mono-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --bitumen:   #161410;   /* primary dark ground */
  --umber:     #221E17;   /* elevated dark ground */
  --dusk:      #1B222B;   /* glazing ground */
  --plaster:   #EDE6D8;   /* light ground / text on dark */
  --limewash:  #E0D6C2;   /* secondary light ground */
  --ink:       #191713;   /* text on light */
  --stone:     #56503F;   /* secondary text on light (AA on both light grounds) */
  --mist:      #A79F90;   /* secondary text on dark */
  --mist-cool: #96A2B0;   /* secondary text on dusk */
  --bronze:    #C29B5F;   /* the accent — anodised frames, oiled hardwood */
  --bronze-hi: #D9B87E;
  --bronze-ink:#7E6132;   /* bronze for text on light grounds */
  --bronze-on: #241A0C;   /* text on bronze fills */

  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'IBM Plex Mono', 'SF Mono', Menlo, monospace;

  --pad: clamp(1.25rem, 5vw, 4.5rem);
  --sp:  clamp(7rem, 16vh, 12rem);
  --measure: 33em;
  --hl-dark: 1px solid rgba(237, 230, 216, 0.16);
  --hl-light: 1px solid rgba(25, 23, 19, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@media (prefers-reduced-motion: no-preference) {
  /* :not(.lenis) is the independent kill-switch — Lenis + CSS smooth scrolling
     silently freezes the page, so either class disables this */
  html:not(.js):not(.lenis) { scroll-behavior: smooth; }
}
html.lenis, html.lenis body { height: auto; }
.nowrap { white-space: nowrap; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--plaster);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* Section grounds — solid by default; JS makes them transparent and
   animates the body colour between chapters (the day dims). */
.g-plaster  { background: var(--plaster);  color: var(--ink); }
.g-limewash { background: var(--limewash); color: var(--ink); }
.g-umber    { background: var(--umber);    color: var(--plaster); }
.g-dusk     { background: var(--dusk);     color: var(--plaster); }
.g-bitumen  { background: var(--bitumen);  color: var(--plaster); }
.js.grounds body { transition: none; }
.js.grounds .g-plaster, .js.grounds .g-limewash, .js.grounds .g-umber,
.js.grounds .g-dusk, .js.grounds .g-bitumen { background: transparent; }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}
.g-plaster :focus-visible, .g-limewash :focus-visible { outline-color: var(--bronze-ink); }

.skip-link {
  position: fixed; top: -100%; left: var(--pad);
  z-index: 200; padding: 0.6rem 1rem;
  background: var(--bronze); color: var(--bronze-on);
  font-family: var(--f-mono); font-size: 0.75rem;
  transition: top 0.2s;
}
.skip-link:focus { top: 0.75rem; }

/* ---------- Shared type roles ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-ink);
}
.eyebrow--bronze { color: var(--bronze); }

.caption {
  font-family: var(--f-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--stone);
}
.g-umber .caption, .g-bitumen .caption { color: var(--mist); }
.g-dusk .caption { color: var(--mist-cool); }

.body-copy { max-width: var(--measure); color: var(--stone); }
.g-umber .body-copy, .g-bitumen .body-copy { color: var(--mist); }
.g-dusk .body-copy { color: var(--mist-cool); }

[data-split] .w { display: inline-block; }
[data-split] { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease),
              border-color 0.35s var(--ease);
  will-change: transform;
}
.btn--bronze { background: var(--bronze); color: var(--bronze-on); }
.btn--bronze:hover { background: var(--bronze-hi); }
.btn--ghost { border-color: rgba(237, 230, 216, 0.45); color: var(--plaster); }
.btn--ghost:hover { border-color: var(--plaster); background: rgba(237, 230, 216, 0.08); }

/* ---------- Intro veil ---------- */
.intro {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  background: var(--bitumen);
  animation: introAway 0.9s var(--ease) 3.4s forwards;
}
.intro__mark { display: flex; align-items: center; gap: 1.1rem; }
.intro__logo {
  width: clamp(52px, 7vw, 84px); height: clamp(45px, 6vw, 73px);
  background: var(--bronze);
  -webkit-mask: url('assets/img/logo-ink.png') center / contain no-repeat;
  mask: url('assets/img/logo-ink.png') center / contain no-repeat;
}
.intro__word {
  font-family: var(--f-body);
  font-weight: 560;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  letter-spacing: 0.34em;
  margin-right: -0.34em;
  color: var(--plaster);
}
@keyframes introAway { to { opacity: 0; visibility: hidden; } }
.intro.is-done { opacity: 0; visibility: hidden; transition: opacity 0.7s var(--ease), visibility 0s 0.7s; animation: none; }

/* ---------- Progress hairline ---------- */
.progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  z-index: 150; pointer-events: none;
}
.progress span {
  display: block; height: 100%; width: 100%;
  background: var(--bronze);
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ---------- Header ---------- */
.site-head {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 2.2rem;
  padding: 1.1rem var(--pad);
  color: var(--plaster);
  transition: transform 0.5s var(--ease), background-color 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.site-head.is-hidden { transform: translateY(-100%); }
.site-head.is-solid {
  background: rgba(22, 20, 16, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(237, 230, 216, 0.1);
}
.site-head__brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.brand-mark {
  width: 30px; height: 26px; display: inline-block;
  background: currentColor;
  -webkit-mask: url('assets/img/logo-ink.png') center / contain no-repeat;
  mask: url('assets/img/logo-ink.png') center / contain no-repeat;
}
.site-head .brand-mark { color: var(--bronze); }
.brand-word {
  font-weight: 560; font-size: 1.05rem;
  letter-spacing: 0.3em; margin-right: -0.3em;
}
.site-head__nav { display: flex; gap: 1.8rem; }
.site-head__nav a, .site-head__tel {
  font-family: var(--f-mono); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.85; transition: opacity 0.25s, color 0.25s;
  padding: 0.3rem 0;
  text-shadow: 0 1px 12px rgba(22, 20, 16, 0.4);
}
.site-head__nav a:hover, .site-head__tel:hover { opacity: 1; color: var(--bronze-hi); }
.site-head__tel { border-bottom: 1px solid currentColor; }
.site-head__burger { display: none; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0.4rem; padding: var(--pad);
  background: var(--bitumen); color: var(--plaster);
  opacity: 0; visibility: hidden; transition: opacity 0.45s var(--ease), visibility 0s 0.45s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transition: opacity 0.45s var(--ease); }
.mobile-nav a {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  line-height: 1.25; border-bottom: var(--hl-dark);
  padding: 0.35rem 0;
}
.mobile-nav a:hover { color: var(--bronze-hi); }
.mobile-nav a.mobile-nav__tel {
  font-family: var(--f-mono); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; margin-top: 2rem; border-bottom: none;
  color: var(--bronze);
}
.mobile-nav :focus-visible { outline-color: var(--bronze); }

/* ---------- Hero — full-screen video, text over the left ---------- */
.hero {
  position: relative; background: var(--bitumen);
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(5.5rem, 12vh, 8rem) var(--pad) clamp(4.5rem, 9vh, 6rem);
  overflow: clip;
  color: var(--plaster);
}
.hero__media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero__poster, .hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 52% 50%;
}
.hero__video { opacity: 0; transition: opacity 0.9s ease; }
.hero__video.is-playing { opacity: 1; }
/* left-side shade so the copy always reads; the tower on the right stays clean.
   A light top band keeps the nav legible over bright sky. */
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 20, 16, 0.86) 0%, rgba(22, 20, 16, 0.66) 28%,
                            rgba(22, 20, 16, 0.22) 50%, rgba(22, 20, 16, 0) 64%),
    linear-gradient(180deg, rgba(22, 20, 16, 0.42) 0%, rgba(22, 20, 16, 0) 22%,
                            rgba(22, 20, 16, 0) 78%, rgba(22, 20, 16, 0.32) 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: 0.05; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 40rem;
  text-shadow: 0 1px 28px rgba(22, 20, 16, 0.45);
}
.hero__eyebrow {
  color: var(--bronze-hi); margin-bottom: 1.5rem;
  font-family: var(--f-mono); font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.hero__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(3.1rem, 8.6vw, 7.6rem);
  line-height: 0.96; letter-spacing: -0.015em;
}
.hero__title .line { display: block; }
.hero__title em { font-weight: 400; }
.hero__regions {
  margin-top: 1.7rem;
  font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(237, 230, 216, 0.82);
}
.hero__cta { display: flex; gap: 0.9rem; margin-top: 2.3rem; flex-wrap: wrap; }

/* ---------- Positioning — line ignite ---------- */
.statement { position: relative; }
.statement__pin {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--sp) var(--pad);
  max-width: 78rem;
}
.statement .eyebrow { margin-bottom: 2.4rem; }
.statement__line {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.04; letter-spacing: -0.015em;
  max-width: 19ch;
  color: var(--ink);
}
.statement__line .w { display: inline-block; }
.statement__sub {
  margin-top: 2.6rem; max-width: var(--measure); color: var(--stone);
}

/* ---------- Plates (chapters) ---------- */
.plate { position: relative; padding: var(--sp) var(--pad); overflow: clip; }
.plate__numeral {
  position: absolute; z-index: 0; pointer-events: none;
  top: clamp(1rem, 4vh, 3rem); right: -0.06em;
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(11rem, 26vw, 24rem);
  line-height: 0.8; letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(25, 23, 19, 0.18);
}
.g-umber .plate__numeral { -webkit-text-stroke-color: rgba(237, 230, 216, 0.13); }
.g-dusk .plate__numeral { -webkit-text-stroke-color: rgba(237, 230, 216, 0.12); }
.plate__ribbon {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.2em; font-weight: 500;
  margin-bottom: clamp(3rem, 7vh, 5rem);
}
.plate__ribbon i { flex: 0 0 clamp(3rem, 8vw, 7rem); height: 1px; background: currentColor; opacity: 0.4; }
.g-limewash .plate__ribbon { color: var(--bronze-ink); }
.g-umber .plate__ribbon, .g-dusk .plate__ribbon { color: var(--bronze); }

.plate__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02; letter-spacing: -0.015em;
  position: relative; z-index: 1;
}
.plate__head { position: relative; z-index: 1; max-width: 64rem; }
.plate__lead { margin-top: 1.8rem; }

.plate__band {
  position: relative; z-index: 1;
  margin: clamp(3rem, 7vh, 5rem) calc(-1 * var(--pad));
  overflow: clip;
}
.plate__band img { width: 100%; height: clamp(260px, 42vh, 440px); object-fit: cover; }
.plate__band-note {
  position: absolute; left: var(--pad); bottom: 0.9rem;
  color: rgba(25, 23, 19, 0.55);
}

.caps { list-style: none; position: relative; z-index: 1; border-top: var(--hl-light); }
.cap {
  display: grid;
  grid-template-columns: 4rem 1fr 1.1fr;
  gap: 2rem; align-items: baseline;
  padding: 2.1rem 0;
  border-bottom: var(--hl-light);
  transition: background-color 0.4s var(--ease);
}
.cap__idx {
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em;
  color: var(--bronze-ink);
}
.cap__name {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.12; letter-spacing: -0.01em;
  transition: transform 0.45s var(--ease);
}
.cap__desc { color: var(--stone); font-size: 0.98rem; max-width: 34em; }
.cap:hover { background: rgba(237, 230, 216, 0.45); }
.cap:hover .cap__name { transform: translateX(0.5rem); }

.plate__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.plate__grid--flip { grid-template-columns: 1.05fr 1fr; }
.plate__grid--flip .plate__copy { order: 2; }
.plate__grid--flip .dissolve { order: 1; }
.plate__copy .body-copy { margin-top: 1.8rem; }

.plate__backdrop {
  position: absolute; inset: auto 0 0 0; height: clamp(180px, 30vh, 320px);
  z-index: 0; overflow: clip; opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%);
  mask-image: linear-gradient(180deg, transparent, #000 60%);
}
.plate__backdrop img { width: 100%; height: 130%; object-fit: cover; }

/* ---------- Rise — the timber finish installs itself bottom-up on scroll ----------
   Both plates are the same pixel frame, stacked and cover-cropped identically.
   Default CSS state is the FINISHED façade (no-JS / no-GSAP / reduced motion);
   JS drives --fill 0 → 100% (and --p 0 → 1) as the section scrolls through. */
.rise {
  --fill: 100%;
  --p: 1;
  position: relative; height: min(76vh, 46rem);
  overflow: clip; border-radius: 2px;
  background: var(--umber);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.rise__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 50%;
}
/* the finish sits over the substructure and is unmasked from the bottom up */
.rise__after {
  position: absolute; inset: 0;
  clip-path: inset(calc(100% - var(--fill)) 0 0 0);
  will-change: clip-path;
}
/* the installation line that travels up the façade */
.rise__edge {
  position: absolute; left: 0; right: 0; bottom: var(--fill);
  height: 1px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, rgba(194, 155, 95, 0) 0%, var(--bronze-hi) 20%,
                                     var(--bronze-hi) 80%, rgba(194, 155, 95, 0) 100%);
  box-shadow: 0 0 22px 3px rgba(194, 155, 95, 0.26);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.rise.is-filling .rise__edge { opacity: 0.85; }
.rise__tag {
  position: absolute; bottom: 1rem; z-index: 3;
  padding: 0.45rem 0.8rem; border-radius: 2px;
  background: rgba(22, 20, 16, 0.6); color: var(--plaster) !important;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.rise__tag--l { left: 1.1rem;  opacity: calc(1 - var(--p)); }
.rise__tag--r { right: 1.1rem; opacity: var(--p); }

/* ---------- Dissolve — bare openings fade into the glazed tower on scroll ----------
   Default CSS state is the FINISHED glazed tower (no-JS / no-GSAP / reduced
   motion); JS raises the "before" layer to full and scrubs it away. */
.dissolve {
  position: relative; height: min(76vh, 46rem);
  overflow: clip; border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}
.dissolve__after, .dissolve__before {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 40%;
}
.dissolve__before { opacity: 0; will-change: opacity; }
.dissolve__tag {
  position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2;
  padding: 0.45rem 0.8rem; border-radius: 2px;
  background: rgba(22, 20, 16, 0.6); color: var(--plaster) !important;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: opacity 0.3s;
}

/* ---------- Company ---------- */
.company { position: relative; padding: var(--sp) var(--pad); overflow: clip; }
.company__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.company__copy .eyebrow--bronze { margin-bottom: 1.6rem; display: block; }
.company__copy .body-copy { margin-top: 1.8rem; }
.company__refs {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: var(--hl-dark);
  max-width: var(--measure);
}
.company__media { position: relative; overflow: clip; border-radius: 2px; }
.company__media img { width: 100%; height: min(74vh, 44rem); object-fit: cover; }
.company__media-note {
  position: absolute; left: 1.1rem; bottom: 1rem;
  padding: 0.45rem 0.8rem; border-radius: 2px;
  background: rgba(22, 20, 16, 0.6); color: var(--plaster) !important;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: var(--hl-dark);
  margin-top: clamp(4rem, 9vh, 6.5rem);
}
.stat {
  padding: 2.4rem 1.6rem 2.6rem 0;
  border-right: var(--hl-dark);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.stat + .stat { padding-left: 1.6rem; }
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.6rem, 4.6vw, 4.6rem);
  line-height: 1; color: var(--bronze);
}
.stat__num--word { font-size: clamp(1.5rem, 2.4vw, 2.2rem); line-height: 1.15; padding-top: 0.4rem; color: var(--plaster); }
.stat__label {
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mist);
}

.coverage { margin-top: clamp(4rem, 9vh, 6.5rem); }
.coverage__title { margin-bottom: 2.4rem; }
.coverage__list { list-style: none; border-top: var(--hl-dark); max-width: 64rem; }
.coverage__row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem; padding: 1.6rem 0;
  border-bottom: var(--hl-dark);
}
.coverage__name {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1; letter-spacing: -0.01em;
  color: var(--plaster);
  transition: color 0.35s var(--ease), transform 0.45s var(--ease);
}
.coverage__row:hover .coverage__name { color: var(--bronze-hi); transform: translateX(0.5rem); }
.coverage__note { margin-top: 2.4rem; }

/* ---------- Contact ---------- */
.contact {
  position: relative; padding: var(--sp) var(--pad);
  overflow: clip;
}
.contact__glow {
  position: absolute; inset: 0; z-index: 0; opacity: 0.85; pointer-events: none;
}
.contact__glow img { width: 100%; height: 100%; object-fit: cover; }
.contact > *:not(.contact__glow) { position: relative; z-index: 1; }
.contact .eyebrow--bronze { margin-bottom: 1.8rem; display: block; }
.contact__title {
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(3.2rem, 9.4vw, 8.2rem);
  line-height: 0.96; letter-spacing: -0.02em;
  color: var(--plaster);
}
.contact__title em { color: var(--bronze); font-weight: 400; }
.people {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 58rem;
  align-items: end;
}
.person__name {
  color: var(--bronze) !important;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.person .contact__tel { margin-top: 0.7rem; }
.assistant {
  margin-top: clamp(2.2rem, 4.5vh, 3.2rem);
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(194, 155, 95, 0.4);
  border-radius: 2px;
  max-width: 34rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  background: rgba(22, 20, 16, 0.35);
}
.assistant__label {
  color: var(--bronze-hi) !important;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.assistant__tel {
  font-family: var(--f-mono); font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.06em; color: var(--plaster);
  border-bottom: 1px solid rgba(194, 155, 95, 0.55);
  align-self: flex-start; padding-bottom: 0.2rem;
  transition: color 0.3s, border-color 0.3s;
}
.assistant__tel:hover { color: var(--bronze-hi); border-color: var(--bronze-hi); }
.contact__tel {
  display: inline-block;
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  line-height: 1.1; letter-spacing: 0.01em;
  color: var(--plaster);
  border-bottom: 1px solid rgba(194, 155, 95, 0.55);
  padding-bottom: 0.3rem;
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}
.contact__tel:hover { border-color: var(--bronze-hi); color: var(--bronze-hi); }
.contact__sub { margin-top: 2rem; }

.contact__grid {
  display: grid; grid-template-columns: minmax(0, 46rem) 1fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}
.contact__aside {
  margin-top: clamp(3rem, 6vh, 4.5rem);
  padding-top: 0.4rem;
  display: flex; flex-direction: column; gap: 0.45rem;
}
.contact__aside-eyebrow { color: var(--bronze) !important; margin-bottom: 0.7rem; }
.contact__aside-line {
  font-family: var(--f-display); font-weight: 500;
  font-size: 1.5rem; line-height: 1.25;
  color: rgba(237, 230, 216, 0.88);
}
.contact__aside-note { margin-top: 1.6rem; max-width: 22em; }

.quote { margin-top: clamp(3rem, 6vh, 4.5rem); max-width: 46rem; }
.quote__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.quote__field { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.9rem; }
.quote__label { color: rgba(237, 230, 216, 0.65) !important; }
.quote input, .quote select, .quote textarea {
  font-family: var(--f-body); font-size: 1rem;
  color: var(--plaster);
  background: transparent;
  border: none; border-bottom: 1px solid rgba(237, 230, 216, 0.3);
  padding: 0.55rem 0;
  border-radius: 0;
  transition: border-color 0.3s;
}
.quote select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23C29B5F' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem center;
  padding-right: 1.6rem;
}
.quote select option { color: var(--ink); }
.quote textarea { resize: vertical; }
.quote input::placeholder, .quote textarea::placeholder { color: rgba(237, 230, 216, 0.5); }
.quote input:focus, .quote select:focus, .quote textarea:focus {
  outline: none; border-bottom-color: var(--bronze-hi);
}
.quote__actions { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-top: 0.6rem; }
.quote__status { color: var(--bronze-hi) !important; max-width: 26em; }

/* ---------- Footer ---------- */
.site-foot {
  background: #100E0B; color: var(--plaster);
  padding: clamp(3.5rem, 8vh, 5.5rem) var(--pad) 2.5rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem;
}
.site-foot__brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.brand-mark--plaster { color: var(--bronze); }
.site-foot .caption { color: rgba(237, 230, 216, 0.62); }
.site-foot__tel {
  font-family: var(--f-mono); font-size: 0.85rem; letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(194, 155, 95, 0.5);
  padding-bottom: 0.15rem; margin-top: 0.5rem;
  transition: color 0.3s;
}
.site-foot__tel:hover { color: var(--bronze-hi); }
.site-foot__tel--ai { color: rgba(237, 230, 216, 0.75); border-bottom-color: rgba(194, 155, 95, 0.35); }
.site-foot__fine { margin-top: 2.2rem; }
.site-foot :focus-visible { outline-color: var(--bronze); }

/* ---------- Reveal primitives ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(30px); }
.js [data-reveal].is-in {
  opacity: 1; transform: none;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

/* ---------- Reduced motion / no-animation fallbacks ---------- */
.js .rm [data-reveal], .rm [data-reveal] {
  opacity: 1; transform: none; transition: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { animation-duration: 0.01s; animation-delay: 0.5s; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Breakpoints ---------- */
@media (max-width: 1080px) {
  .cap { grid-template-columns: 3rem 1fr; }
  .cap__desc { grid-column: 2; }
}

@media (max-width: 860px) {
  .site-head { gap: 1.2rem; }
  .site-head__nav, .site-head__tel { display: none; }
  .site-head__burger {
    display: flex; flex-direction: column; gap: 7px;
    background: none; border: none; padding: 10px; cursor: pointer;
    z-index: 95; color: var(--plaster);
  }
  .site-head__burger span {
    display: block; width: 26px; height: 1.5px;
    background: currentColor;
    transition: transform 0.4s var(--ease);
  }
  .site-head__burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
  .site-head__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

  .hero { padding-top: 6rem; align-items: flex-end; }
  /* portrait crops ~74% of the frame away: hold the sunset and the city on the
     left (under the stacked copy) with the tower entering from the right edge */
  .hero__poster, .hero__video { object-position: 44% 50%; }
  .hero__shade {
    background:
      linear-gradient(180deg, rgba(22, 20, 16, 0.5) 0%, rgba(22, 20, 16, 0.1) 24%,
                              rgba(22, 20, 16, 0.55) 52%, rgba(22, 20, 16, 0.9) 100%);
  }
  .hero__content { max-width: none; }

  .statement__pin { min-height: 0; }

  .plate__numeral { font-size: clamp(9rem, 34vw, 13rem); top: 0.5rem; }
  .plate__grid, .plate__grid--flip { grid-template-columns: 1fr; }
  .plate__grid--flip .plate__copy { order: 1; }
  .plate__grid--flip .dissolve { order: 2; }
  .dissolve, .rise { height: min(64vh, 34rem); }
  .plate__band img { height: clamp(200px, 30vh, 300px); }

  .company__grid { grid-template-columns: 1fr; }
  .company__media img { height: min(52vh, 28rem); }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: var(--hl-dark); padding: 1.8rem 0; }
  .stat + .stat { padding-left: 0; }
  .stat:nth-child(odd) { border-right: var(--hl-dark); padding-right: 1.4rem; }
  .stat:nth-child(even) { padding-left: 1.4rem; }

  .quote__row { grid-template-columns: 1fr; gap: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__aside { display: none; }
}

@media (max-width: 480px) {
  :root { --sp: clamp(5rem, 12vh, 7rem); }
  .hero__cta .btn { padding: 0.85rem 1.4rem; font-size: 0.7rem; }
  .contact__tel { font-size: clamp(1.6rem, 8.4vw, 2.4rem); }
  .people { grid-template-columns: 1fr; gap: 1.6rem; }
  .plate__ribbon i { flex-basis: 2rem; }
}
