/* =====================================================================
   SeaVista — cinematic, restrained.
   tokens · reset · overlays · loader · nav · hero · studio · reel ·
   contact · responsive · reduced-motion
===================================================================== */

:root {
  --ink: #0A0E10;
  --ink-2: #0F1417;
  --line: #1c2429;
  --bone: #E8E4DB;
  --bone-2: #C4C0B6;
  --muted: #7E8A8C;
  --brass: #ae8b3b;

  --font-display: "Instrument Serif", Georgia, serif;
  --font-ui: "Archivo", system-ui, -apple-system, sans-serif;

  --t-eyebrow: clamp(0.7rem, 0.66rem + 0.18vw, 0.8rem);
  --t-body: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --t-lede: clamp(1.15rem, 1rem + 0.7vw, 1.6rem);
  --t-stat: clamp(2.4rem, 1.6rem + 3.4vw, 4.4rem);
  --t-h2: clamp(2.2rem, 1.2rem + 4.6vw, 5.6rem);
  --t-hero: clamp(3rem, 0.6rem + 8vw, 8rem);

  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --gutter: clamp(1.4rem, 5vw, 6rem);
  --maxw: 1600px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--bone);
  background: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: var(--brass);
  color: var(--ink);
}

html.lenis,
html.lenis body {
  height: auto;
  overflow-x: clip;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

/* ---------- CINEMATIC OVERLAYS ---------- */
.grain,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
}

.grain {
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  z-index: 1;
  background: radial-gradient(120% 100% at 50% 45%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

/* ---------- LOADER ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.loader__mark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: var(--bone);
  letter-spacing: 0.01em;
}

.loader__bar {
  width: min(220px, 50vw);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}

.loader__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--brass);
}

/* ---------- TEXT PRIMITIVES ---------- */
.linewrap {
  display: block;
  overflow: hidden;
}

.linewrap__in {
  display: block;
  will-change: transform;
}

[data-reveal="fade"] {
  will-change: transform, opacity;
}

.eyebrow,
.section-no {
  display: inline-block;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
}

.section-no {
  color: var(--muted);
}

/* .section-no::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-right: 0.9rem;
} */

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.1rem, 2.2vw, 1.7rem) var(--gutter);
  transition: padding 0.5s var(--ease), background 0.5s var(--ease);
}

.nav.is-scrolled {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  background: var(--brass);
  backdrop-filter: blur(10px);
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  display: block;
  height: clamp(26px, 3.4vw, 36px);
  width: auto;
}

.foot__brand .brand__logo {
  height: clamp(34px, 4.5vw, 48px);
}

.nav__links {
  display: flex;
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
}

.nav__links a,
.nav__contact {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-2);
}

.nav__links a {
  position: relative;
  padding: 2px 0;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--bone);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__contact {
  border: 1px solid var(--bone-2);
  border-radius: 100px;
  padding: 0.55rem 1.2rem;
  color: var(--bone);
  transition: border-color 0.4s, color 0.4s;
}

.nav__contact:hover {
  border-color: var(--brass);
  color: var(--brass);
}

/* nav sits over the LIGHT hero at the very top → dark ink; turns light once scrolled onto dark content */
.nav__links a,
.nav__contact {
  color: #2a2e31;
}

.nav__contact {
  border-color: rgba(0, 0, 0, 0.2);
  color: #16191c;
}

.nav__links a::after {
  background: #16191c;
}

.nav .brand__logo {
  filter: brightness(0);
  transition: filter 0.4s var(--ease);
}

.nav.is-scrolled .nav__links a,
.nav.is-scrolled .nav__contact {
  color: #ffffff;
}

.nav.is-scrolled .nav__contact {
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.nav.is-scrolled .nav__contact:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  color: #ffffff;
}

.nav.is-scrolled .nav__links a::after {
  background: #ffffff;
}

.nav.is-scrolled .brand__logo {
  filter: brightness(0) invert(1);
}

/* hamburger + drawer are mobile-only */
.nav__toggle {
  display: none;
}

.nav__backdrop {
  display: none;
}

.nav__cta-mobile {
  display: none;
}

/* ---------- I18N (Dutch / English) ---------- */
[data-en],
[data-nl] {
  display: none;
}

html[data-lang="en"] [data-en],
html[data-lang="nl"] [data-nl] {
  display: inline;
}

html[data-lang="en"] option[data-en],
html[data-lang="nl"] option[data-nl] {
  display: block;
}

/* language toggle pill */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 100px;
}

.lang-btn {
  padding: 0.22rem 0.6rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #16191c;
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.lang-btn.is-active {
  background: #16191c;
  color: #fff;
}

.nav.is-scrolled .lang-toggle {
  border-color: rgba(255, 255, 255, 0.5);
}

.nav.is-scrolled .lang-btn {
  color: #fff;
}

.nav.is-scrolled .lang-btn.is-active {
  background: #fff;
  color: var(--brass);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.5vw, 1.2rem);
}

/* desktop toggle in the bar; mobile toggle lives in the drawer */
.lang-toggle--mobile {
  display: none;
}

/* ---------- LIGHT HERO (reference style, light mode) ---------- */
.lhero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  background: #e7e4dd;
  padding: clamp(5.5rem, 11vh, 8rem) clamp(0.8rem, 2vw, 1.6rem) clamp(0.8rem, 2vw, 1.6rem);
}

.lhero__inner {
  flex: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  background: linear-gradient(140deg, #fdfcfa 0%, #f1ede6 55%, #ece6db 100%);
  border-radius: clamp(20px, 2.5vw, 34px);
  padding: clamp(1.6rem, 4vw, 4rem);
  position: relative;
}

.lhero__content {
  position: relative;
  z-index: 9;
  padding-right: clamp(1.5rem, 20%, 12rem);
}

.lhero__eyebrow {
  display: inline-block;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.lhero__title {
  margin: 1rem 0 1.1rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #16191c;
}

.lhero__lede {
  max-width: 46ch;
  color: #555a5c;
  font-size: var(--t-body);
  line-height: 1.6;
}

.lhero__cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: clamp(1.4rem, 3vh, 2.2rem);
  padding: 0.95rem 2rem;
  border-radius: 100px;
  background: linear-gradient(120deg, var(--brass), #8a6a2c);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  animation: ctaPulse 2.8s ease-in-out infinite;
}

/* glint sweeping across the button */
.lhero__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

/* arrow nudges right and back */
.lhero__cta span[aria-hidden] {
  display: inline-block;
  animation: ctaArrow 1.5s var(--ease) infinite;
}

.lhero__cta:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(174, 139, 59, 0.55);
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 8px 22px rgba(174, 139, 59, 0.28);
  }

  50% {
    box-shadow: 0 12px 34px rgba(174, 139, 59, 0.52);
  }
}

@keyframes ctaShine {
  0% {
    left: -130%;
  }

  55%,
  100% {
    left: 135%;
  }
}

@keyframes ctaArrow {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(5px);
  }
}

/* search widget */
.lsearch {
  margin-top: clamp(2rem, 4vh, 3rem);
  max-width: 560px;
}

.lsearch__tabs {
  display: inline-flex;
  gap: 0.3rem;
}

.lsearch__tab {
  padding: 0.65rem 1.7rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: #555a5c;
  background: #e3ddd2;
  border-radius: 10px 10px 0 0;
  transition: background 0.3s, color 0.3s;
}

.lsearch__tab.is-active {
  background: #1b1f23;
  color: #fff;
}

.lsearch__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 0 14px 14px 14px;
  padding: 0.8rem 0.8rem 0.8rem 1.4rem;
}

.lsearch__field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.lsearch__field+.lsearch__field {
  border-left: 1px solid rgba(0, 0, 0, 0.10);
  padding-left: 1.2rem;
}

.lsearch__k {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1d20;
}

.lsearch__v {
  font-size: 0.82rem;
  color: #6b6f72;
}

.lsearch__go {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--brass);
  color: #fff;
  display: grid;
  place-items: center;
  transition: filter 0.3s;
}

.lsearch__go:hover {
  filter: brightness(1.1);
}

.lsearch__go svg {
  width: 20px;
  height: 20px;
}

/* building image pulled OUT of the card — bleeds past its top, right & bottom */
.lhero__media {
  position: absolute;
  z-index: 4;
  /* top: clamp(-2.5rem, -5vh, -1rem);
  bottom: clamp(-3rem, -6vh, -1.5rem);
  right: clamp(-3.5rem, -4.5vw, -1.5rem);
  width: clamp(52%, 62vw, 68%); */
  top: clamp(-22rem, -28%, -2.5rem);
  bottom: clamp(-26rem, -42%, -3rem);
  right: clamp(-15rem, -12%, -1.5rem);
  width: clamp(30rem, 90%, 85rem);
  pointer-events: none;
  transform: scale(.9);
}

.lhero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.18));
}

.iti--allow-dropdown input[type=tel] {
  width: 100%;
}

/* big screens: the inner card caps at --maxw (1600px) so the clamped 85rem
   width stops growing — drive every dimension with vw (no rem cap) so the
   building keeps scaling proportionally with the monitor, all the way to ~6000px */
@media (min-width: 1650px) {
  .lhero__media {
    top: -15vw;
    bottom: -17vw;
    right: -9vw;
    width: 82vw;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .lhero {
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    padding-top: clamp(5rem, 12vh, 7rem);
  }

  .lhero__inner {
    flex: 0 1 auto;
    grid-template-columns: 1fr;
    text-align: center;
    align-content: start;
  }

  .lhero__content {
    padding-right: 0;
  }

  .lhero__lede {
    margin-inline: auto;
  }

  /* image back into the flow but pulled up to start over the card background */
  .lhero__media {
    position: relative;
    z-index: 4;
    inset: auto;
    width: 100%;
    max-width: 620px;
    margin: clamp(-2rem, -30vw, -2rem) auto 0;
    transform: scale(1.2);
    /* top: -4%; */
  }

  .lhero__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 560px) {
  .lsearch__bar {
    flex-direction: column;
    align-items: stretch;
  }

  .lsearch__field+.lsearch__field {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    padding-left: 0;
    padding-top: 0.6rem;
  }

  .lsearch__go {
    width: 100%;
    height: 44px;
  }

  .lhero {
    min-height: 80vh;
  }

  .lhero__media {
    margin: clamp(-6rem, -30vw, -2rem) auto 0;
  }

}

@media (max-width:400px) {
  .lhero__media {
    margin: clamp(-0rem, -20vw, -2rem) auto 0;
    height: fit-content;
  }
}

/* ===== iPhone-only tuning for the hero building image (iOS Safari) =====
   @supports (-webkit-touch-callout: none) is true only on iOS Safari, so this
   block targets iPhones exclusively (not Android, not iPad). max-width 430px
   covers every iPhone portrait width (SE 375 → Pro Max / Plus 430). */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 530px) {

    .lhero {
      flex-direction: column;
      justify-content: flex-start;
      min-height: 90vh;
      padding-top: clamp(5rem, 12vh, 7rem);
    }

    .lhero__media {
      position: absolute;
      z-index: 4;
      inset: auto;
      left: 0;
      right: 0;
      width: 100%;
      max-width: 430px;
      margin: 0;
      transform: scale(1);
      transform-origin: bottom center;
      bottom: 0vh;
      top: 0vh;
    }

    .lhero__media img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center;
    }

    .pmodal__close {
      width: 48px;
      min-width: 48px;
      height: 48px;
      min-height: 48px;
    }
  }
}

/* ---------- ABOUT (screenshot style, light) ---------- */
.about {
  background: #f5f2ec;
  color: #16191c;
  padding: clamp(4rem, 10vh, 9rem) var(--gutter);
}

.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
}

.about__title {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #16191c;
}

.about__lede {
  margin-top: clamp(1.2rem, 3vh, 1.8rem);
  max-width: 50ch;
  color: #555a5c;
  font-size: var(--t-body);
  line-height: 1.65;
}

.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(1.4rem, 3vh, 2rem);
  color: var(--brass);
  font-weight: 600;
  font-size: 0.95rem;
}

.about__cta span {
  transition: transform 0.3s var(--ease);
}

.about__cta:hover span {
  transform: translateX(4px);
}

/* stats below the about text */
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vh, 3rem);
  padding-top: clamp(1.6rem, 3vh, 2.2rem);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.astat {
  text-align: center;
}

.astat__num {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #16191c;
  font-variant-numeric: tabular-nums;
}

.astat__label {
  display: block;
  margin-top: 0.55rem;
  font-size: clamp(0.58rem, 1.7vw, 0.78rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #8a8d8e;
}

/* right visual: two overlapping images + floating accents */
.about__visual {
  position: relative;
  min-height: clamp(320px, 40vw, 470px);
  order: -1;
  /* image on the left, text on the right */
}

.about__img {
  display: block;
  object-fit: cover;
}

.about__img--back {
  width: 84%;
  aspect-ratio: 4 / 3;
  margin-right: auto;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.about__img--front {
  position: absolute;
  right: 0;
  bottom: -6%;
  width: 46%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 5px solid #f5f2ec;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.about__blob {
  position: absolute;
}

.about__blob--1 {
  top: 2%;
  left: 4%;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--brass);
  transform: rotate(16deg);
}

.about__blob--2 {
  top: -3%;
  right: 10%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #caa24c;
}

.about__blob--3 {
  bottom: 6%;
  right: -2%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--brass);
}

.about__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(1.4rem, 4vw, 3.5rem);
  margin-top: clamp(3rem, 7vh, 5rem);
  padding-top: clamp(2rem, 4vh, 3rem);
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.about__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #7a7e80;
  font-size: 0.95rem;
}

.about__logo-ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #d9d4ca;
}

@media (max-width: 860px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vh, 4rem);
  }

  .about__visual {
    min-height: 0;
    margin-top: 0.5rem;
  }

  .about__img--front {
    width: 40%;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gutter);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__plate {
  position: absolute;
  inset: -6%;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 12, 0.4) 0%, transparent 30%, rgba(6, 10, 12, 0.85) 100%);
}

.hero__inner {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
}

.eyebrow {
  margin-bottom: clamp(1.2rem, 3vh, 2rem);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-hero);
  line-height: 0.94;
  letter-spacing: -0.01em;
}

.hero__title .line {
  display: block;
}

.line--italic {
  font-style: italic;
  color: var(--bone);
}

.hero__foot {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
  border-top: 1px solid var(--line);
}

.meta {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.14em;
  color: var(--muted);
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-cue__line {
  position: relative;
  width: 1px;
  height: 52px;
  background: var(--line);
  overflow: hidden;
}

.scroll-cue__line i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 40%;
  background: var(--brass);
  animation: cue 2.2s var(--ease) infinite;
}

@keyframes cue {
  0% {
    transform: translateY(-100%);
  }

  60%,
  100% {
    transform: translateY(260%);
  }
}

/* ---------- ARCHITECT 3D ---------- */
/* ---- pinned video backdrop ---- */
.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0e10;
  perspective: 1300px;
}

.hero-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
}

.hero-blend {
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
}

/* all page content rides ABOVE the fixed backdrop */
#top {
  position: relative;
  z-index: 1;
}

/* opaque sections cover the video as they scroll up (hero + About stay over it) */
main>section:not(.architect):not(.studio):not(.stories):not(.reel):not(.history),
main>footer {
  background: #ffffff;
}

/* ---- hero (text only; the video shows through from behind) ---- */
.architect {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--gutter);
  background: transparent;
}

/* one continuous tint over the video — spans hero + About as a single overlay */
.hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 12, 0.45);
  pointer-events: none;
}

.architect .architect__foot {
  padding-top: clamp(1.2rem, 3vh, 2rem);
}

.architect__inner {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
}

/* ---- Featured Projects: 4-up card carousel ---- */
.reel {
  position: relative;
  background: #e9e6e1;
  color: #14181b;
  padding: clamp(2.5rem, 6vh, 6rem) var(--gutter);
}

.reel__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  background: #ffffff;
  border-radius: clamp(20px, 3vw, 36px);
  padding: clamp(1.8rem, 3.5vw, 3.5rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
}

.reel__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: clamp(1.8rem, 4vh, 3rem);
}

.reel__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #14181b;
}

.reel__intro {
  max-width: 32ch;
  text-align: right;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #54585a;
}

.reel__intro span {
  color: #adb0ad;
}

.reel__viewport {
  overflow: hidden;
  position: relative;
}

.reel__track {
  --gap: clamp(0.8rem, 1.4vw, 1.4rem);
  --per: 4;
  display: flex;
  gap: var(--gap);
  transition: transform 0.65s var(--ease);
  will-change: transform;
}

.pcard {
  flex: 0 0 calc((100% - (var(--per) - 1) * var(--gap)) / var(--per));
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #ddd9d2;
}

.pcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.pcard:hover img {
  transform: scale(1.06);
}

.pcard__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(0.9rem, 1.4vw, 1.3rem);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
}

.pcard__name {
  font-weight: 600;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.2;
}

.pcard__meta {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  opacity: 0.82;
}

/* description lives on the card only as data for the modal — never shown on the card */
.pcard__desc {
  display: none;
}

/* ---------- PROJECT MODAL ---------- */
.pmodal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.pmodal.is-open {
  opacity: 1;
  visibility: visible;
}

.pmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 12, 0.7);
  backdrop-filter: blur(4px);
}

.pmodal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(620px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.45s var(--ease);
}

.pmodal.is-open .pmodal__dialog {
  transform: translateY(0) scale(1);
}

.pmodal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  min-width: 38px;
  height: 38px;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}

.pmodal__close:hover {
  background: var(--brass);
}

.pmodal__img {
  width: 100%;
  height: clamp(200px, 34vh, 320px);
  object-fit: cover;
  display: block;
  flex: 0 0 auto;
}

.pmodal__body {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  color: #16191c;
}

.pmodal__name {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: #16191c;
}

.pmodal__meta {
  display: block;
  margin-top: 0.4rem;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
}

.pmodal__desc {
  margin-top: clamp(1rem, 2vh, 1.4rem);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.75;
  color: #555a5c;
}

.reel__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: clamp(1.6rem, 3.5vh, 2.6rem);
}

.reel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #1b1f23;
  color: #fff;
  border-radius: 100px;
  padding: clamp(0.8rem, 1.4vw, 1.1rem) clamp(1.8rem, 3vw, 2.6rem);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: background 0.4s var(--ease);
}

.reel__cta:hover {
  background: var(--brass);
}

.reel__nav {
  display: flex;
  gap: 0.7rem;
}

.reel__arrow {
  width: clamp(44px, 4vw, 52px);
  height: clamp(44px, 4vw, 52px);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  color: #14181b;
  cursor: pointer;
  display: none;            /* desktop relies on swipe/drag — no arrows */
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1;
  transition: background 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
  /* overlay the swiper edges, vertically centred */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.reel__arrow svg {
  width: clamp(20px, 2.4vw, 26px);
  height: clamp(20px, 2.4vw, 26px);
  display: block;
}

#reelPrev {
  left: clamp(8px, 2vw, 18px);
}

#reelNext {
  right: clamp(8px, 2vw, 18px);
}

.reel__arrow:hover {
  background: #1b1f23;
  color: #fff;
  border-color: #1b1f23;
}

.reel__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 1100px) {
  .reel__track {
    --per: 3;
  }

  /* arrows appear only on responsive screens, centred over the swiper edges */
  .reel__arrow {
    display: inline-flex;
  }
}

@media (max-width: 820px) {
  .reel__track {
    --per: 2;
  }

  .reel__top {
    flex-direction: column;
    gap: 1rem;
  }

  .reel__intro {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .reel__track {
    --per: 1;
  }
}

/* ---- About rides over the video; the single .hero-tint provides legibility ---- */
.studio {
  position: relative;
}

.studio__inner {
  position: relative;
  z-index: 1;
}

.architect .eyebrow {
  margin-bottom: clamp(1.2rem, 3vh, 2rem);
}

.architect__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-hero);
  line-height: 0.94;
  letter-spacing: -0.01em;
}

.architect__title .line {
  display: block;
}

.architect__lede {
  max-width: 46ch;
  margin-top: clamp(1.4rem, 3.5vh, 2.4rem);
  color: var(--bone-2);
  font-size: var(--t-lede);
  line-height: 1.45;
}

.architect__foot {
  position: relative;
  z-index: 3;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(1.5rem, 4vh, 2.5rem);
  border-top: 1px solid var(--line);
}

/* ---------- STUDIO ---------- */
.studio {
  padding: clamp(6rem, 18vh, 14rem) var(--gutter);
}

.studio__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.studio__statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: clamp(1.5rem, 4vh, 2.5rem) 0;
  max-width: 18ch;
}

.studio__statement .line {
  display: block;
}

.studio__lede {
  max-width: 52ch;
  color: var(--muted);
  font-size: var(--t-lede);
  line-height: 1.45;
}

.stats {
  margin-top: clamp(3.5rem, 9vh, 7rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.stat__num {
  display: block;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: var(--t-stat);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat__label {
  display: block;
  margin-top: 0.7rem;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- REEL / PORTFOLIO ---------- */
.reel {
  position: relative;
}

.reel__hud {
  position: fixed;
  left: var(--gutter);
  bottom: clamp(1.4rem, 4vh, 2.4rem);
  z-index: 30;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  mix-blend-mode: difference;
}

.reel__hud.is-active {
  opacity: 1;
}

.reel__hud-no {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--bone);
}

.reel__hud-sep {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.1em;
  color: var(--bone);
}

.reel__hud-name {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-left: 0.6rem;
}

.frame {
  position: relative;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--gutter);
}

.frame__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.frame__plate {
  position: absolute;
  inset: -8%;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.frame__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 12, 0.5) 0%, transparent 35%, rgba(6, 10, 12, 0.8) 100%);
}

.frame__cap {
  position: relative;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}

.frame__no {
  display: block;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.22em;
  color: var(--brass);
  margin-bottom: 0.8rem;
}

.frame__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1;
  letter-spacing: -0.01em;
}

.frame__loc {
  display: block;
  margin-top: 0.9rem;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-2);
}

.frame__desc {
  max-width: 46ch;
  margin-top: 1.1rem;
  color: var(--bone-2);
  font-size: var(--t-body);
  line-height: 1.5;
}

/* ---------- HISTORY / JOURNEY (pinned timeline â reference style, light) ---------- */
.history {
  position: relative;
  height: 180vh;
  /* scroll length for the pinned reveal — shorter = faster timeline */
  background: #f5f2ec;
}

.history__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(4rem, 9vh, 6rem) var(--gutter) clamp(1.5rem, 4vh, 2.5rem);
  color: #16191c;
  overflow: hidden;
}

.history__head {
  flex: 0 0 auto;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto clamp(1rem, 3vh, 2rem);
}

.history .section-no {
  color: #7a7e80;
}

.history__statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-top: clamp(0.3rem, 1.2vh, 0.8rem);
  color: #16191c;
}

.history .line--italic {
  color: var(--brass);
}

/* ---- vertical timeline (entries translate so each focuses to centre) ---- */
.tl-vertical {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 6%;
  overflow: hidden;
}

.tl-axis {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}

.tl-line-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
}

.tl-line-grow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--brass) 0%, #d8b455 100%);
  border-radius: 2px;
  transform: scaleY(0);
  transform-origin: top center;
  box-shadow: 0 0 16px rgba(174, 139, 59, 0.4);
}

.tl-entries {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4.5vh, 3rem);
  will-change: transform;
}

.tl-entry {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.tl-card-side {
  min-width: 0;
}

.tl-card-side--ghost {
  pointer-events: none;
}

.tl-entry--left .tl-card-side:first-child {
  justify-self: end;
  width: 100%;
  max-width: 380px;
}

.tl-entry--right .tl-card-side:last-child {
  justify-self: start;
  width: 100%;
  max-width: 380px;
}

.tl-node {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.tl-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 5px rgba(174, 139, 59, 0.18);
  transform: scale(0);
  transform-origin: center;
}

.tl-card-body {
  padding: 1.2rem 1.45rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s var(--ease);
}

.tl-entry:hover .tl-card-body {
  border-color: rgba(174, 139, 59, 0.4);
}

.tl-year {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  color: var(--brass);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.tl-text {
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  line-height: 1.65;
  color: #555a5c;
}

/* scroll-reveal states (JS adds .tl-ready, then .is-in per entry) */
.tl-ready .tl-entry {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.tl-ready .tl-entry .tl-card-body {
  transition: transform 0.5s var(--ease), border-color 0.3s var(--ease);
}

.tl-ready .tl-entry--left .tl-card-body {
  transform: translateX(-40px);
}

.tl-ready .tl-entry--right .tl-card-body {
  transform: translateX(40px);
}

.tl-ready .tl-dot {
  transition: transform 0.45s var(--ease);
}

.tl-entry.is-in {
  opacity: 1;
}

.tl-entry.is-in .tl-card-body {
  transform: translateX(0);
}

.tl-entry.is-in .tl-dot {
  transform: scale(1);
}

@media (max-width: 768px) {

  /* static stacked timeline — no scroll-driven pin, all cards visible at once */
  .history {
    height: auto;
  }

  .history__pin {
    position: static;
    height: auto;
    overflow: visible;
    padding-top: clamp(3rem, 9vh, 5rem);
    padding-bottom: clamp(3rem, 8vh, 5rem);
  }

  .tl-entries {
    transform: none !important;
  }

  .tl-line-grow {
    transform: scaleY(1);
  }

  /* all dots populated (filled) from the start — same as desktop active state */
  .tl-dot {
    transform: scale(1);
  }

  .tl-vertical {
    padding: 0 4%;
    overflow: visible;
    max-width: 640px;
  }

  .tl-axis {
    left: 1.2rem;
    transform: none;
  }

  .tl-entry {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }

  .tl-card-side--ghost {
    display: none;
  }

  .tl-node {
    grid-column: 1;
    grid-row: 1;
  }

  .tl-entry--left .tl-card-side:first-child,
  .tl-entry--right .tl-card-side:last-child {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    justify-self: stretch;
  }

  .tl-ready .tl-entry--left .tl-card-body,
  .tl-ready .tl-entry--right .tl-card-body {
    transform: translateX(30px);
  }
}

/* ---------- STORIES / TESTIMONIALS ---------- */
.stories {
  padding: clamp(6rem, 16vh, 13rem) var(--gutter);
  background: var(--ink-2);
}

.stories__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.stories__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 540px;
  margin: 0 auto clamp(2.5rem, 6vh, 4rem);
}

.stories__badge {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.3rem 1rem;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-2);
}

.stories__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-top: clamp(1rem, 3vh, 1.6rem);
}

.stories__title .line {
  display: block;
}

.stories__sub {
  color: var(--muted);
  margin-top: 1rem;
}

/* ---- animated testimonial columns ---- */
.tcols {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.tcol {
  width: 100%;
  max-width: 22rem;
}

.tcol__track {
  display: flex;
  flex-direction: column;
  animation-name: tscroll;
  animation-duration: var(--dur, 34s);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.tcols:hover .tcol__track {
  animation-play-state: paused;
}

@keyframes tscroll {
  to {
    transform: translateY(-50%);
  }
}

.tcard {
  margin-bottom: 1.5rem;
  padding: clamp(1.6rem, 2.4vw, 2.4rem);
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.10);
}

.tcard__text {
  color: var(--bone-2);
  line-height: 1.5;
}

.tcard__by {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.tcard__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(0.2);
}

.tcard__by>span {
  display: flex;
  flex-direction: column;
}

.tcard__name {
  font-weight: 500;
  color: var(--bone);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.tcard__role {
  color: var(--muted);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.tcol--md,
.tcol--lg {
  display: none;
}

@media (min-width: 768px) {
  .tcol--md {
    display: block;
  }
}

@media (min-width: 1024px) {
  .tcol--lg {
    display: block;
  }
}

/* ---------- NEWS ---------- */
.news {
  padding: clamp(6rem, 16vh, 13rem) var(--gutter);
}

.news__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}

.news__statement {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-h2);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: clamp(1.5rem, 4vh, 2.5rem) 0 clamp(3rem, 8vh, 5rem);
}

.news__statement .line {
  display: block;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  text-align: left;
}

.post {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.post__media {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25);
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
}

.post:hover .post__media img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.post__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.post__meta {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.post__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.post__excerpt {
  color: var(--muted);
  font-size: var(--t-body);
  line-height: 1.5;
}

.post__cta {
  margin-top: 0.4rem;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-2);
}

/* ---------- CONTACT ---------- */
.contact {
  padding: clamp(6rem, 16vh, 13rem) var(--gutter) clamp(2rem, 5vh, 3.5rem);
}

.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

/* centred heading block */
.contact .section-no {
  display: block;
  text-align: center;
}

.contact__big {
  text-align: center;
}

.contact__lede {
  text-align: center;
  margin-inline: auto;
}

.contact__big {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--t-hero);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin: clamp(1.5rem, 4vh, 3rem) 0 clamp(3.5rem, 9vh, 6rem);
}

.contact__big .line {
  display: block;
}

.contact__lede {
  max-width: 50ch;
  margin: clamp(1.2rem, 3vh, 2rem) auto clamp(3rem, 7vh, 5rem);
  text-align: center;
  color: var(--muted);
  font-size: var(--t-lede);
  line-height: 1.45;
}

.contact__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vh, 2.6rem);
}

.cform__success {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.cform__success-icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--brass);
  color: var(--brass);
  margin-bottom: 1.4rem;
}

.cform__success-icon svg {
  width: 26px;
  height: 26px;
}

.cform__success-title {
  font-family: var(--font-display);
  font-size: var(--t-lede);
  color: var(--bone);
  margin-bottom: 0.6rem;
}

.cform__success-body {
  font-size: var(--t-body);
  color: var(--muted);
  max-width: 42ch;
}

.contact__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__k {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}

.contact__v {
  color: var(--bone-2);
}

/* contact form */
.cform {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.cform[hidden] {
  display: none;
}

.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.cfield {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cfield>span {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.cfield input,
.cfield select,
.cfield textarea {
  font-family: var(--font-ui);
  font-size: var(--t-body);
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.4s var(--ease);
}

.cfield textarea {
  resize: vertical;
}

.cfield select {
  appearance: none;
  cursor: pointer;
}

.cfield select option {
  background: var(--ink-2);
  color: var(--bone);
}

.cfield input:focus,
.cfield select:focus,
.cfield textarea:focus {
  outline: none;
  border-color: var(--brass);
}

.cfield>.cfield__err {
  display: none;
  font-size: 0.8rem;
  letter-spacing: normal;
  text-transform: none;
  color: #c2554a;
}

.cfield.is-invalid input,
.cfield.is-invalid select,
.cfield.is-invalid textarea {
  border-color: #c2554a;
}

.cfield.is-invalid .cfield__err {
  display: block;
}

.cform__submit {
  align-self: flex-start;
  margin-top: 0.4rem;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.9rem 2rem;
  transition: border-color 0.4s, color 0.4s, background 0.4s;
}

.cform__submit:hover {
  border-color: var(--brass);
  color: var(--ink);
  background: var(--brass);
}

.cform__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cfield .iti {
  width: 100%;
}

.cfield .iti__selected-flag {
  background: transparent;
}

.cfield .iti__country-list,
.iti__country-list {
  color: #1c1c1c !important;
  background: #ffffff !important;
  border-color: #d8d4c8 !important;
}

.iti__country {
  color: #1c1c1c !important;
}

.iti__country.iti__highlight {
  background: #efebe1 !important;
}

.iti__dial-code {
  color: var(--muted) !important;
}

.cfield--hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  left: -9999px;
}

.cform__status {
  font-size: var(--t-eyebrow);
  letter-spacing: 0.02em;
  color: var(--muted);
  min-height: 1.2em;
}

.cform__status[data-state="success"] {
  color: var(--brass);
}

.cform__status[data-state="error"] {
  color: #c2554a;
}

.link {
  position: relative;
  width: max-content;
}

.link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ---------- FOOTER ---------- */
.foot {
  padding: clamp(4rem, 10vh, 8rem) var(--gutter) clamp(2rem, 5vh, 3.5rem);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* decorative backdrop, bottom-right (kept subtle so text stays readable) */
.foot::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(50vw, 660px);
  aspect-ratio: 595 / 381;
  background: url("images/decor-011-copyright.png") no-repeat bottom right / contain;
  /* recolour the sky-blue artwork toward the brass highlight tone */
  filter: grayscale(1) sepia(1) saturate(2.6) hue-rotate(2deg) brightness(0.82);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.foot__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: clamp(2.5rem, 6vh, 4rem);
}

.foot__brand .brand {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.foot__tag {
  margin-top: 1rem;
  max-width: 40ch;
  color: var(--muted);
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
}

.foot__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.foot__v {
  color: var(--bone-2);
}

.foot__social {
  display: flex;
  gap: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(2rem, 5vh, 3rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.1em;
  color: var(--muted);
}

.foot__credit {
  color: var(--brass);
  font-weight: 600;
  transition: color 0.3s var(--ease);
}

.foot__credit:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- LIGHT SECTIONS: white background + dark text (token re-scope) ---- */
.stories,
.news,
.contact,
.foot {
  background: #ffffff;
  color: #16191c;
  --bone: #14181b;
  --bone-2: #454a4b;
  --muted: #6b6f6a;
  --line: rgba(0, 0, 0, 0.14);
  --ink-2: #f4f2ec;
}

.stories .line--italic,
.news .line--italic,
.contact .line--italic {
  color: var(--brass);
}


/* ---------- NEWS DETAIL PAGE (news-detail.html) ---------- */
.article {
  background: #f5f2ec;
  color: #16191c;
  padding: clamp(7rem, 15vh, 10rem) var(--gutter) clamp(3.5rem, 9vh, 6rem);
}

.article__inner {
  max-width: 820px;
  margin: 0 auto;
}

.article__back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--t-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  transition: gap 0.3s var(--ease);
}

.article__back:hover {
  gap: 0.75rem;
}

.article__back--bottom {
  margin-top: clamp(2.5rem, 6vh, 4rem);
}

.article__meta {
  display: block;
  margin-top: clamp(1.6rem, 4vh, 2.6rem);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.article__title {
  margin-top: 0.7rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #16191c;
}

.article__hero {
  display: block;
  width: 100%;
  height: clamp(220px, 42vh, 460px);
  object-fit: cover;
  border-radius: clamp(14px, 2vw, 22px);
  margin: clamp(1.6rem, 4vh, 2.6rem) 0;
}

.article__video-wrap {
  position: relative;
  margin: clamp(1.6rem, 4vh, 2.6rem) 0;
}

.article__video,
.article__video-wrap iframe {
  display: block;
  width: 100%;
  min-height: 66.3dvh;
  max-height: 70vh;
  border-radius: clamp(14px, 2vw, 22px);
  background: #000;
  aspect-ratio: 16 / 9;
}

/* custom play button over the poster */
.article__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 9vw, 88px);
  height: clamp(64px, 9vw, 88px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(174, 139, 59, 0.92);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}

.article__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--brass);
}

.article__play svg {
  width: 42%;
  height: 42%;
  fill: #fff;
  margin-left: 4px;
}

.article__video-wrap.is-playing .article__play {
  opacity: 0;
  pointer-events: none;
}

.article__body p {
  margin-bottom: 1.2rem;
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.85;
  color: #45494b;
}

.article__body p:last-child {
  margin-bottom: 0;
}

.article__lead {
  font-size: clamp(1.15rem, 1.5vw, 1.45rem) !important;
  line-height: 1.6 !important;
  font-weight: 500;
  color: #16191c !important;
  margin-bottom: 1.6rem !important;
}

.article__h2 {
  margin: clamp(2rem, 4vh, 2.8rem) 0 1.1rem;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  letter-spacing: -0.01em;
  color: #16191c;
}

.article__list {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.article__list li {
  position: relative;
  padding-left: 1.9rem;
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.6;
  color: #45494b;
}

.article__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brass);
  font-weight: 700;
}

.article__kicker {
  margin-top: clamp(1.8rem, 4vh, 2.6rem) !important;
  padding-top: clamp(1.2rem, 3vh, 1.8rem);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: clamp(1.05rem, 1.3vw, 1.3rem) !important;
  font-weight: 500;
  font-style: italic;
  color: #16191c !important;
}

.afoot {
  background: #ffffff;
  color: var(--muted);
  text-align: center;
  padding: clamp(1.6rem, 4vh, 2.4rem) var(--gutter);
  font-size: var(--t-eyebrow);
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ---------- COOKIE CONSENT ---------- */
/* Banner — compact floating card, bottom-right */
.cookie-banner {
  position: fixed;
  bottom: clamp(1rem, 2.5vw, 1.5rem);
  right: clamp(1rem, 3vw, 2rem);
  width: min(360px, calc(100vw - 2rem));
  z-index: 95;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  transform: translateY(calc(100% + 2.5rem));
  transition: transform 0.55s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__title {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin-bottom: 0.5rem;
}

.cookie-banner__body {
  font-size: 0.77rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cookie-banner__btns {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

/* Shared cookie button */
.cookie-btn {
  display: block;
  width: 100%;
  padding: 0.6rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s var(--ease), color 0.25s, border-color 0.25s;
}

.cookie-btn--primary {
  background: var(--brass);
  color: var(--ink);
  border: 1px solid var(--brass);
}

.cookie-btn--primary:hover {
  background: #c4a04a;
  border-color: #c4a04a;
}

.cookie-btn--secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--bone);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cookie-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.13);
}

.cookie-btn--ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-btn--ghost:hover {
  color: var(--bone-2);
  border-color: rgba(255, 255, 255, 0.18);
}

.cookie-banner__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cookie-link {
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cookie-link:hover {
  color: var(--bone-2);
}

/* Preferences modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.cookie-modal.is-visible .cookie-modal__backdrop {
  opacity: 1;
}

.cookie-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90dvh;
  overflow-y: auto;
  background: #f5f2ec;
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.cookie-modal.is-visible .cookie-modal__dialog {
  transform: translateY(0);
  opacity: 1;
}

.cookie-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  color: #5a5a52;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-modal__close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #1c1c1c;
}

.cookie-modal__title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  letter-spacing: 0.01em;
  color: #0A0E10;
  margin-bottom: 0.85rem;
  padding-right: 2.5rem;
  line-height: 1.3;
}

.cookie-modal__intro {
  font-size: 0.8rem;
  color: #5a5a52;
  line-height: 1.65;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-cat {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.cookie-cat__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1c1c1c;
  letter-spacing: 0.01em;
}

.cookie-cat__badge {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ae8b3b;
  background: rgba(174, 139, 59, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.cookie-cat__desc {
  font-size: 0.78rem;
  color: #7a7a72;
  line-height: 1.6;
}

/* iOS-style toggle */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__track {
  position: absolute;
  inset: 0;
  background: #d0ccc4;
  border-radius: 100px;
  transition: background 0.3s var(--ease);
}

.cookie-toggle__track::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s var(--ease);
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: #ae8b3b;
}

.cookie-toggle input:checked + .cookie-toggle__track::after {
  transform: translateX(20px);
}

.cookie-toggle input:focus-visible + .cookie-toggle__track {
  outline: 2px solid #ae8b3b;
  outline-offset: 2px;
}

.cookie-modal__footer {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-modal__footer .cookie-btn {
  flex: 1 1 120px;
  width: auto;
  background: rgba(10, 14, 16, 0.06);
  color: #1c1c1c;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-modal__footer .cookie-btn:hover {
  background: rgba(10, 14, 16, 0.12);
}

.cookie-modal__footer .cookie-btn--primary {
  background: #ae8b3b;
  color: #fff;
  border-color: #ae8b3b;
}

.cookie-modal__footer .cookie-btn--primary:hover {
  background: #9a7c30;
  border-color: #9a7c30;
}

.cookie-btn--save {
  background: rgba(10, 14, 16, 0.06);
  color: #1c1c1c;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-btn--save:hover {
  background: rgba(10, 14, 16, 0.12);
}

.cookie-modal__policy {
  display: flex;
  gap: 1rem;
  margin-top: 0.85rem;
}

.cookie-modal__policy .cookie-link {
  color: #9a9486;
}

.cookie-modal__policy .cookie-link:hover {
  color: #5a5a52;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .contact__layout {
    grid-template-columns: 1fr;
  }

  .news__grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {

  /* hamburger button */
  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #16191c;
    position: relative;
    z-index: 60;
  }

  .nav.is-scrolled .nav__toggle,
  .nav.is-open .nav__toggle {
    color: #ffffff;
  }

  .nav__toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  }

  .nav.is-open .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open .nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav__contact {
    display: none;
  }

  .lang-toggle--desktop {
    display: none;
  }

  .lang-toggle--mobile {
    display: inline-flex;
    margin-top: 1.6rem;
    border-color: rgba(255, 255, 255, 0.3);
  }

  .lang-toggle--mobile .lang-btn {
    color: #fff;
  }

  .lang-toggle--mobile .lang-btn.is-active {
    background: #fff;
    color: #14181c;
  }

  .brand {
    position: relative;
    z-index: 8;
  }

  .nav.is-open .brand__logo {
    filter: brightness(0) invert(1);
  }

  /* right-side slide-in drawer */
  .nav__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: center; */
    justify-content: flex-start;
    gap: 1.7rem;
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(80vw, 320px);
    padding: 6rem var(--gutter) 2rem;
    background: #14181c;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    z-index: 55;
  }

  .nav.is-open .nav__links {
    transform: translateX(0);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
  }

  .nav__links a {
    color: #ffffff;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
  }

  .nav__links a::after {
    background: var(--brass);
  }

  .nav__links a.nav__cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    background: var(--brass);
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  /* "Get in Touch" button inside the drawer */
  .nav__cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.85rem 1.8rem;
    border-radius: 100px;
    background: var(--brass);
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .nav__cta-mobile::after {
    content: none;
  }

  /* dimming backdrop */
  .nav__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    z-index: 54;
  }

  .nav.is-open .nav__backdrop {
    opacity: 1;
    visibility: visible;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .stories__grid {
    grid-template-columns: 1fr;
  }

  .news__grid {
    grid-template-columns: 1fr;
  }

  .foot__cols {
    grid-template-columns: 1fr 1fr;
  }

  .hero__foot {
    flex-direction: row;
    align-items: flex-end;
  }

  .contact__base-mid {
    display: none;
  }

  .lhero__media img {
    width: 100%;
    min-height: fit-content;
    height: auto;
  }
}

@media (max-width: 520px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .reel__hud-name {
    display: none;
  }

  .cform__row {
    grid-template-columns: 1fr;
  }

  .foot__cols {
    grid-template-columns: 1fr;
  }

  .cookie-modal__footer {
    flex-direction: column;
  }

  .cookie-modal__footer .cookie-btn {
    width: 100%;
    flex: none;
  }

}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .linewrap__in,
  [data-reveal] {
    transform: none !important;
    opacity: 1 !important;
  }

  .scroll-cue__line i {
    display: none;
  }
}