/* ============================================================
   HYDE ONE — Luxury Visual Production
   Dark cinematic editorial system
   ============================================================ */

:root {
  --ink:        #0a0a0b;   /* page background */
  --ink-2:      #101012;   /* raised surfaces  */
  --ivory:      #f0eae0;   /* primary text on dark */
  --ivory-dim:  #b9b2a6;   /* secondary text on dark */
  --paper:      #ece6da;   /* light section background */
  --paper-ink:  #171614;   /* text on light */
  --champagne:  #c9a876;   /* accent */
  --champagne-2:#e0c79a;
  --bronze-aa:  #755d33;   /* accent on light bg, AA-compliant at small sizes */
  --line:       rgba(240, 234, 224, .14);
  --line-strong:rgba(240, 234, 224, .42);
  --line-dark:  rgba(23, 22, 20, .16);

  --font-serif: "Lora", Georgia, serif;
  --font-sans:  "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --container:  min(92vw, 1440px);
  --ease:       cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--champagne); color: var(--ink); }

:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

[id] { scroll-margin-top: 92px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding-block: clamp(96px, 12vw, 180px); }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}
.eyebrow--dark { color: var(--bronze-aa); }

.h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-top: 22px;
}
.h2 em, .hero__title em, .manifesto__title em, .outro__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--champagne-2);
}

.lead {
  max-width: 56ch;
  margin-top: 28px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--ivory-dim);
}
.lead--dark { color: #5c574d; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 34px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn:hover { transform: translateY(-2px); }

.btn--solid { background: var(--champagne); color: #141005; }
.btn--solid:hover { background: var(--champagne-2); }

.btn--ghost { border: 1px solid var(--line-strong); color: var(--ivory); }
.btn--ghost:hover { border-color: var(--champagne); color: var(--champagne-2); }

.btn--ink { background: var(--paper-ink); color: var(--paper); }
.btn--ink:hover { background: #000; }

.btn--sm { padding: 12px 24px; font-size: 11px; }
.btn--wide { width: 100%; justify-content: center; }

/* Round nav buttons (carousel / testimonials) */
.navbtn {
  width: 52px; height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), color .4s var(--ease);
}
.navbtn svg { width: 18px; height: 18px; }
.navbtn:hover { background: var(--champagne); border-color: var(--champagne); color: #141005; }
.navbtn--sm { width: 44px; height: 44px; }

/* CTA rows */
.cta-row {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: clamp(36px, 4vw, 56px);
}
.cta-row--center { justify-content: center; text-align: center; padding-block: clamp(40px, 5vw, 64px) 0; }
.cta-row__phrase {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--ivory-dim);
}
.cta-row--dark .cta-row__phrase { color: #5c574d; }

/* ---------- Intro veil ---------- */
/* Auto-dismisses via CSS animation even if JS never runs (belt & braces
   with the <noscript> style and the JS .is-done path). */
.veil {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: grid; place-items: center;
  animation: veilAway 1.6s var(--ease) forwards;
}
@keyframes veilAway {
  0%, 60% { opacity: 1; visibility: visible; }
  100%    { opacity: 0; visibility: hidden; }
}
html.noveil .veil { display: none; }
html.noveil .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.veil.is-done { opacity: 0; visibility: hidden; transition: opacity .7s var(--ease), visibility .7s; animation: none; }
.veil__word {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  letter-spacing: .42em;
  padding-left: .42em;
  color: var(--ivory);
  opacity: 0;
  animation: veilWord 1.4s var(--ease) forwards;
}
@keyframes veilWord {
  0%   { opacity: 0; letter-spacing: .6em; }
  100% { opacity: 1; letter-spacing: .42em; }
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding-block: 26px;
  transition: padding .45s var(--ease), background .45s var(--ease),
              backdrop-filter .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  padding-block: 14px;
  background: rgba(10, 10, 11, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 15px; width: auto; }

.header__nav { display: flex; gap: 38px; }
.header__nav a {
  position: relative;
  font-size: 12px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color .3s;
  padding-block: 6px;
}
.header__nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--champagne);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.header__nav a:hover { color: var(--ivory); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 18px; }

.burger { display: none; width: 40px; height: 40px; position: relative; }
.burger span {
  position: absolute; left: 8px; right: 8px; height: 1.5px;
  background: var(--ivory);
  transition: transform .4s var(--ease), top .4s var(--ease);
}
.burger span:first-child { top: 15px; }
.burger span:last-child { top: 24px; }
.burger.is-open span:first-child { top: 19px; transform: rotate(45deg); }
.burger.is-open span:last-child { top: 19px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10, 10, 11, .97);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  display: flex; flex-direction: column;
  overflow-y: auto;
  padding: 110px 8vw 48px;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.mmenu.is-open { opacity: 1; visibility: visible; }
.mmenu__nav { display: flex; flex-direction: column; gap: 8px; margin-block: auto; }
.mmenu__nav a {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  line-height: 1.25;
  color: var(--ivory);
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.mmenu.is-open .mmenu__nav a { opacity: 1; transform: none; }
.mmenu.is-open .mmenu__nav a:nth-child(2) { transition-delay: .05s; }
.mmenu.is-open .mmenu__nav a:nth-child(3) { transition-delay: .1s; }
.mmenu.is-open .mmenu__nav a:nth-child(4) { transition-delay: .15s; }
.mmenu.is-open .mmenu__nav a:nth-child(5) { transition-delay: .2s; }
.mmenu.is-open .mmenu__nav a:nth-child(6) { transition-delay: .25s; }
.mmenu__nav a:hover { color: var(--champagne-2); }
.mmenu__foot {
  margin-top: 48px; display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--ivory-dim);
  flex: none;
}
.mmenu__foot a { color: var(--champagne); }

/* Desktop backstop: menu can never cover the page above the burger breakpoint */
@media (min-width: 1025px) {
  .mmenu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 7s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.02); }
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.18) 34%, rgba(10,10,11,.42) 68%, rgba(10,10,11,.92) 100%),
    radial-gradient(120% 90% at 18% 82%, rgba(10,10,11,.55) 0%, transparent 55%);
}
.hero__content {
  position: relative; z-index: 2;
  padding-bottom: clamp(120px, 15vh, 180px);
}
.hero__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 4.9rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-top: 26px;
  max-width: 30ch;
  text-wrap: balance;
}
.hero__services {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
  margin-top: 30px;
  font-size: clamp(.85rem, 1.1vw, 1rem);
}
.hero__services strong {
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.hero__services i { color: var(--champagne); font-style: normal; }
.hero__sub {
  margin-top: 22px;
  max-width: 52ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ivory-dim);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero__foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  border-top: 1px solid var(--line);
  padding-block: 18px;
  background: linear-gradient(0deg, rgba(10,10,11,.4), transparent);
}
.hero__foot-inner {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ivory-dim);
}
.hero__scroll { display: inline-flex; align-items: center; gap: 10px; }
.hero__scroll i {
  width: 1px; height: 34px; background: var(--champagne);
  display: inline-block;
  animation: scrollPulse 2.2s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-block: 26px;
  background: var(--ink);
}
/* No flex gap: uniform margin-right on every item keeps the -50% loop seamless */
.marquee__track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee__track span,
.marquee__track i { margin-right: 48px; }
.marquee__track span {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: var(--ivory-dim);
  white-space: nowrap;
}
.marquee__track i { color: var(--champagne); font-style: normal; font-size: 1.2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sectors ---------- */
.sectors { padding-bottom: 0; }
.sectors__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.sectors__note {
  max-width: 32ch;
  color: var(--ivory-dim);
  font-size: .95rem;
  text-align: right;
  padding-bottom: 10px;
}
.sectors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 28px);
}
.sector {
  position: relative;
  display: block;
  min-height: clamp(420px, 62vh, 620px);
  overflow: hidden;
  background: var(--ink-2);
}
.sector__bg { position: absolute; inset: 0; }
.sector__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .5;
  transform: scale(1.05);
  transition: opacity .8s var(--ease), transform 1.4s var(--ease);
}
.sector:hover .sector__bg img,
.sector:focus-visible .sector__bg img { opacity: .75; transform: scale(1); }
.sector::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,11,.92) 0%, rgba(10,10,11,.35) 45%, rgba(10,10,11,.15) 100%);
}
.sector__content {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(24px, 2.6vw, 40px);
}
.sector__num {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--champagne);
}
.sector__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  line-height: 1;
  margin-top: 10px;
  transition: color .5s var(--ease);
}
.sector:hover .sector__name { color: var(--champagne-2); }
.sector__scope {
  display: block;
  margin-top: 12px;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}
.sector__copy {
  margin-top: 12px;
  color: var(--ivory-dim);
  font-size: .95rem;
  max-width: 34ch;
  transition: color .5s;
}
.sector:hover .sector__copy { color: var(--ivory); }
.sector__arrow {
  position: absolute; top: 0; right: clamp(24px, 2.6vw, 40px);
  transform: translateY(-140%);
  width: 46px; height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .5s var(--ease), border-color .5s var(--ease),
              color .5s var(--ease), transform .7s var(--ease);
}
.sector__arrow svg { width: 17px; height: 17px; }
.sector:hover .sector__arrow {
  background: var(--champagne); border-color: var(--champagne);
  color: #141005; transform: translateY(-140%) rotate(-45deg);
}

/* ---------- Why ---------- */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(32px, 5vw, 96px);
}
.why__label { position: relative; }
.why__label .eyebrow { position: sticky; top: 120px; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.stat__num {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  line-height: 1;
  color: var(--champagne-2);
}
.stat__cap {
  display: block; margin-top: 10px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ivory-dim);
}

/* Value props */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  margin-top: clamp(64px, 7vw, 110px);
}
.value {
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(28px, 3vw, 44px);
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.value:hover { border-color: var(--champagne); transform: translateY(-6px); }
.value__num {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--champagne);
}
.value h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  margin-top: 14px;
  line-height: 1.2;
}
.value p { margin-top: 12px; color: var(--ivory-dim); font-size: .95rem; }

/* Behind the brand */
.about-team { margin-top: clamp(64px, 7vw, 100px); }
.about-team__inner {
  border-top: 1px solid var(--line);
  padding-top: clamp(36px, 4vw, 56px);
  max-width: 72ch;
}
.about-team__copy {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.45;
  margin-top: 18px;
}
.about-team__copy em { color: var(--champagne-2); }

/* ---------- Manifesto ---------- */
.manifesto {
  position: relative;
  min-height: 82vh;
  display: grid; place-items: center;
  overflow: hidden;
  text-align: center;
}
.manifesto__bg { position: absolute; inset: -12% 0; }
.manifesto__bg img { width: 100%; height: 100%; object-fit: cover; }
.manifesto__shade {
  position: absolute; inset: 0;
  background: rgba(10, 10, 11, .62);
}
.manifesto__content { position: relative; z-index: 2; padding-block: 110px; }
.manifesto__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  line-height: 1.1;
}
.manifesto__copy {
  max-width: 54ch;
  margin: 28px auto 0;
  color: var(--ivory-dim);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

/* ---------- Services ---------- */
.services { padding-bottom: clamp(72px, 8vw, 120px); }
.services__head { margin-bottom: clamp(56px, 7vw, 110px); }

.services__list { border-top: 1px solid var(--line); }
.service {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.service__bg { position: absolute; inset: 0; }
.service__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .22;
  transform: scale(1.06);
  transition: opacity .8s var(--ease), transform 1.2s var(--ease);
}
.service:hover .service__bg img,
.service:focus-visible .service__bg img { opacity: .55; transform: scale(1.01); }
.service::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,11,.86) 0%, rgba(10,10,11,.5) 55%, rgba(10,10,11,.25) 100%);
}
.service__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding-block: clamp(48px, 7vw, 96px);
}
.service__num {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--champagne);
}
.service__kicker {
  display: block;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
  font-weight: 500;
}
.service__name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 1;
  letter-spacing: -.01em;
  transition: color .5s var(--ease), transform .7s var(--ease);
}
.service:hover .service__name { color: var(--champagne-2); transform: translateX(10px); }
.service__copy {
  max-width: 52ch;
  margin-top: 18px;
  color: var(--ivory-dim);
  transition: color .5s;
}
.service:hover .service__copy { color: var(--ivory); }
.service__tag {
  display: block; margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--champagne-2);
  opacity: .75;
  transition: opacity .5s;
}
.service:hover .service__tag { opacity: 1; }
.service__arrow {
  width: 54px; height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .5s var(--ease), border-color .5s var(--ease),
              color .5s var(--ease), transform .7s var(--ease);
}
.service__arrow svg { width: 20px; height: 20px; }
.service:hover .service__arrow {
  background: var(--champagne); border-color: var(--champagne);
  color: #141005; transform: rotate(-45deg);
}

/* ---------- Method (light) ---------- */
.method {
  background: var(--paper);
  color: var(--paper-ink);
}
.method .h2 { color: var(--paper-ink); }
.method .h2 em { color: var(--bronze-aa); }
.method__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 6vw, 120px);
  align-items: start;
}
.method__intro { position: sticky; top: 110px; }
.method__nots {
  margin-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: grid; gap: 12px;
  color: #5c574d;
  font-size: .95rem;
}
.method__nots em { color: var(--paper-ink); font-style: italic; font-family: var(--font-sans); font-size: 1.05rem; }

.method__list { display: grid; gap: 0; }
.method__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
  padding-block: clamp(32px, 4vw, 52px);
  border-bottom: 1px solid var(--line-dark);
}
.method__item:first-child { border-top: 1px solid var(--line-dark); }
.method__letter {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(3rem, 5vw, 4.6rem);
  line-height: .9;
  color: var(--bronze-aa);
  min-width: 1.2ch;
}
.method__item h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 10px;
}
.method__item p { color: #4c473e; max-width: 52ch; }

/* ---------- Work carousel ---------- */
.work__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.work__side { display: grid; gap: 20px; justify-items: end; }
.work__note {
  max-width: 34ch;
  color: var(--ivory-dim);
  font-size: .95rem;
  text-align: right;
}
.work__navbtns { display: flex; gap: 12px; }

.work__carousel {
  display: flex;
  gap: clamp(14px, 1.8vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: max(4vw, (100vw - 1440px) / 2);
  padding-bottom: 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.work__carousel::-webkit-scrollbar { display: none; }
.work__slide {
  position: relative;
  flex: 0 0 min(44vw, 640px);
  aspect-ratio: 4 / 3;
  scroll-snap-align: center;
  overflow: hidden;
  background: var(--ink-2);
  text-align: left;
  padding: 0;
}
.work__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
}
.work__slide:hover img, .work__slide:focus-visible img { transform: scale(1.04); }
.work__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  background: linear-gradient(0deg, rgba(10,10,11,.85), transparent);
}
.work__caption span {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  font-weight: 500;
}
.work__caption em {
  font-family: var(--font-sans);
  color: var(--champagne-2);
  font-size: 1rem;
  white-space: nowrap;
}
.work__cta {
  margin-top: clamp(40px, 4vw, 60px);
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
  text-align: center;
}

/* ---------- Testimonials ---------- */
.testimonials { border-top: 1px solid var(--line); }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 6vw, 120px);
  align-items: start;
}
.testimonials__refnote {
  margin-top: 26px;
  color: var(--ivory-dim);
  font-size: .95rem;
  max-width: 34ch;
}
.testimonials__refnote em {
  font-family: var(--font-sans);
  color: var(--champagne-2);
}
.testimonials__panel {
  border-left: 1px solid var(--line);
  padding-left: clamp(28px, 4vw, 64px);
  min-height: 320px;
  display: flex; flex-direction: column;
}
.tquote { display: none; }
.tquote.is-active { display: block; animation: quoteIn .7s var(--ease); }
@keyframes quoteIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.tquote blockquote {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.35;
  font-weight: 400;
}
.tquote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}
.testimonials__controls {
  margin-top: auto;
  padding-top: 40px;
  display: flex; align-items: center; gap: 20px;
}
.testimonials__dots { display: flex; gap: 8px; }
.testimonials__dots i {
  width: 24px; height: 1px; background: var(--line-strong);
  transition: background .4s;
}
.testimonials__dots i.on { background: var(--champagne); }

/* ---------- Outro ---------- */
.outro {
  position: relative;
  min-height: 72vh;
  display: grid; place-items: center;
  overflow: hidden;
  text-align: center;
}
.outro__bg { position: absolute; inset: -12% 0; }
.outro__bg img { width: 100%; height: 100%; object-fit: cover; }
.outro__shade { position: absolute; inset: 0; background: rgba(10,10,11,.68); }
.outro__content { position: relative; z-index: 2; padding-block: 110px; }
.outro__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.4vw, 6rem);
  line-height: 1.05;
}
.outro__actions { margin-top: 44px; display: flex; justify-content: center; gap: 16px; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 130px);
  align-items: start;
}
.contact__channels {
  margin-top: clamp(40px, 4vw, 60px);
  display: grid; gap: 0;
}
.contact__channels li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}
.contact__channels li:first-child { border-top: 1px solid var(--line); }
.contact__channels li > span:first-child {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ivory-dim);
}
.contact__channels a, .contact__static {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--ivory);
  transition: color .3s;
}
.contact__channels a:hover { color: var(--champagne-2); }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: clamp(28px, 3.4vw, 48px);
}
.field { grid-column: 1 / -1; display: grid; gap: 9px; }
.field--half { grid-column: span 1; }
.field label {
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ivory-dim); font-weight: 500;
}
.field label small { text-transform: none; letter-spacing: .04em; opacity: .7; }
.field input, .field textarea, .field select {
  background: transparent;
  border: 0; border-bottom: 1px solid var(--line-strong);
  padding: 10px 2px 12px;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 300;
  transition: border-color .3s, box-shadow .3s;
  border-radius: 0;
}
.field select { color-scheme: dark; cursor: pointer; }
.field select:invalid { color: var(--ivory-dim); }
.field select option { background: var(--ink-2); color: var(--ivory); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--champagne);
  box-shadow: 0 1px 0 var(--champagne);
}
.field textarea { resize: vertical; min-height: 96px; }
.contact__form .btn { grid-column: 1 / -1; margin-top: 8px; }
.contact__hint {
  grid-column: 1 / -1;
  font-size: .8rem; color: var(--ivory-dim); text-align: center;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(64px, 7vw, 110px) 0 40px;
  background: var(--ink);
}
.footer__logo { height: 22px; width: auto; }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: clamp(48px, 5vw, 72px);
}
.footer__col { display: grid; gap: 12px; align-content: start; }
.footer__col h3 {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  font-family: var(--font-sans);
  margin-bottom: 10px;
}
.footer__col a { color: var(--ivory-dim); font-size: .95rem; transition: color .3s; width: fit-content; }
.footer__col a:hover { color: var(--ivory); }
.footer__muted { color: var(--ivory-dim); font-size: .95rem; opacity: .7; }
.footer__bottom {
  margin-top: clamp(56px, 6vw, 88px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: var(--ivory-dim);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 10, 11, .96);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: clamp(12px, 3vw, 40px);
}
.lightbox[hidden] { display: none; }
.lightbox__stage {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-height: 100%;
  min-width: 0;
}
.lightbox__stage img {
  max-width: 100%;
  max-height: min(78vh, 900px);
  object-fit: contain;
}
.lightbox__stage figcaption {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ivory-dim);
}
.lightbox__nav {
  width: 54px; height: 54px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .4s, border-color .4s, color .4s;
}
.lightbox__nav svg { width: 20px; height: 20px; }
.lightbox__nav:hover { background: var(--champagne); border-color: var(--champagne); color: #141005; }
.lightbox__close {
  position: absolute; top: 22px; right: 22px;
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .4s, border-color .4s, color .4s;
}
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__close:hover { background: var(--champagne); border-color: var(--champagne); color: #141005; }

/* ---------- Reveal on scroll (JS-gated: html.js added by main.js) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
html.js .reveal[data-delay="1"] { transition-delay: .12s; }
html.js .reveal[data-delay="2"] { transition-delay: .24s; }
html.js .reveal[data-delay="3"] { transition-delay: .36s; }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .burger { display: block; }
  .header__actions .btn { display: none; }

  .sectors__grid { grid-template-columns: 1fr; }
  .sector { min-height: clamp(340px, 52vh, 480px); }
  .sectors__head { flex-direction: column; align-items: flex-start; }
  .sectors__note { text-align: left; }


  .why__grid { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .method__grid { grid-template-columns: 1fr; }
  .method__intro { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__panel { border-left: 0; padding-left: 0; min-height: 0; }

  .service__inner { grid-template-columns: auto 1fr; }
  .service__arrow { display: none; }
  .service__bg img { opacity: .38; }

  .work__slide { flex-basis: 62vw; }
}

@media (max-width: 640px) {
  .hero__foot-inner span:last-child { display: none; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__services { gap: 10px; }


  .stats { grid-template-columns: 1fr; gap: 32px; }
  .work__head { flex-direction: column; align-items: flex-start; }
  .work__side { justify-items: start; }
  .work__note { text-align: left; }
  .work__slide { flex-basis: 86vw; }

  .service__inner { grid-template-columns: 1fr; gap: 18px; }
  .contact__form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }

  .cta-row { justify-content: center; text-align: center; }

  .lightbox { grid-template-columns: 1fr; }
  .lightbox__nav { position: fixed; bottom: 22px; }
  .lightbox__nav--prev { left: 22px; }
  .lightbox__nav--next { right: 22px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .veil { display: none; }
  html.js .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}


/* ============================================================
   Type system v3 — Instrument Sans displays, Lora italic accents
   ============================================================ */
.h2 em, .hero__title em, .manifesto__title em, .outro__title em,
.service__num, .service__tag, .method__letter, .method__nots em,
.cta-row__phrase, .about-team__copy, .tquote blockquote,
.marquee__track span, .testimonials__refnote em, .work__caption em,
.sector__num {
  font-family: var(--font-serif);
}

.h2, .manifesto__title, .outro__title, .service__name, .sector__name {
  font-weight: 600;
  letter-spacing: -.02em;
}
.h2 { font-size: clamp(2.1rem, 4.1vw, 3.9rem); }
.manifesto__title { font-size: clamp(2.1rem, 4.8vw, 4.6rem); }
.outro__title { font-size: clamp(2.4rem, 5.6vw, 5.2rem); }
.service__name { font-size: clamp(2.2rem, 5vw, 4.6rem); }
.sector__name { font-size: clamp(2rem, 3vw, 3rem); }
.stat__num { font-weight: 600; letter-spacing: -.02em; }
.mmenu__nav a { font-weight: 600; letter-spacing: -.02em; font-size: clamp(1.9rem, 7.5vw, 3rem); }
.mmenu.is-open .mmenu__nav a:nth-child(7) { transition-delay: .3s; }
.mmenu.is-open .mmenu__nav a:nth-child(8) { transition-delay: .35s; }
.contact__channels a, .contact__static { font-size: 1.05rem; }
.veil__word { font-weight: 500; }

/* ============================================================
   Navbar v2 — centered, roll-hover links, sector dropdown
   ============================================================ */
.header__inner { position: relative; }
.header__nav {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  gap: 34px;
  align-items: center;
}
.header__nav > a, .nav-drop > a { overflow: hidden; display: inline-flex; align-items: center; gap: 7px; padding-block: 0; line-height: 1.5; }
.header__nav a::after { content: none; }
.nav-roll {
  position: relative; display: inline-block;
  transition: transform .45s var(--ease);
}
.nav-roll::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 100%;
  color: var(--champagne-2);
}
.header__nav a:hover .nav-roll,
.header__nav a:focus-visible .nav-roll,
.nav-drop:hover > a .nav-roll,
.nav-drop:focus-within > a .nav-roll { transform: translateY(-100%); }

.nav-drop { position: relative; }
.nav-drop__caret {
  width: 12px; height: 12px; flex: none;
  color: var(--champagne);
  transition: transform .4s var(--ease);
}
.nav-drop:hover .nav-drop__caret,
.nav-drop:focus-within .nav-drop__caret { transform: rotate(180deg); }
.nav-drop__panel {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translate(-50%, 10px);
  min-width: 260px;
  background: rgba(10, 10, 11, .92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  padding: 10px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.nav-drop__panel::before {
  content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px;
}
.nav-drop:hover .nav-drop__panel,
.nav-drop:focus-within .nav-drop__panel {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav-drop__item {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 16px;
  letter-spacing: 0; text-transform: none;
  transition: background .3s;
  overflow: visible;
}
.nav-drop__item:hover { background: rgba(240, 234, 224, .06); }
.nav-drop__item i {
  font-family: var(--font-serif); font-style: italic;
  font-size: .85rem; color: var(--champagne);
}
.nav-drop__item span { font-size: .95rem; font-weight: 500; color: var(--ivory); }
.nav-drop__item small {
  margin-left: auto;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivory-dim);
}
.nav-drop__item.is-active span { color: var(--champagne-2); }

/* ============================================================
   Clickable image tiles (zoom + badge + lightbox)
   ============================================================ */
.click-tile { cursor: pointer; }
.click-tile::before {
  content: "+";
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 58px; height: 58px; margin: -29px 0 0 -29px;
  display: grid; place-items: center;
  font-size: 26px; font-weight: 400; line-height: 0;
  color: var(--ivory);
  border: 1px solid var(--line-strong); border-radius: 50%;
  background: rgba(10, 10, 11, .45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0; transform: scale(.7);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  pointer-events: none;
}
.click-tile:hover::before,
.click-tile:focus-visible::before { opacity: 1; transform: scale(1); }

/* ============================================================
   Sector landing pages
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 86vh; min-height: 86svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 7s var(--ease) forwards;
}
.page-hero__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.6) 0%, rgba(10,10,11,.22) 40%, rgba(10,10,11,.93) 100%);
}
.page-hero__content { position: relative; z-index: 2; padding-bottom: clamp(72px, 9vh, 120px); }
.page-hero__title {
  font-family: var(--font-sans); font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 1.04; letter-spacing: -.02em;
  margin-top: 24px; max-width: 24ch; text-wrap: balance;
}
.page-hero__title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--champagne-2);
}
.page-hero__sub {
  margin-top: 20px; max-width: 52ch;
  color: var(--ivory-dim);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

/* Action band */
.cta-band { border-block: 1px solid var(--line); background: var(--ink-2); }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-block: 26px;
}
.cta-band__phrase {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  color: var(--ivory-dim);
}
.cta-band__phrase strong { color: var(--ivory); font-weight: 500; font-style: normal; }

/* Expertise / proof */
.split {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}
.proof { margin-top: clamp(36px, 4vw, 54px); display: grid; }
.proof li {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: baseline;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}
.proof li:first-child { border-top: 1px solid var(--line); }
.proof i { font-family: var(--font-serif); font-style: italic; color: var(--champagne); font-size: 1rem; }
.proof strong { display: block; font-weight: 600; font-size: 1.05rem; }
.proof p { color: var(--ivory-dim); font-size: .95rem; margin-top: 4px; }

/* Gallery grid (clickable, lightbox) */
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 26px);
  margin-top: clamp(40px, 5vw, 64px);
}
.gallery .work__slide { width: 100%; aspect-ratio: 4 / 3; }

/* Benefit section */
.benefit { background: var(--paper); color: var(--paper-ink); }
.benefit .h2 { color: var(--paper-ink); }
.benefit .h2 em { color: var(--bronze-aa); }
.benefit__copy {
  color: #4c473e; max-width: 60ch; margin-top: 24px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

/* Service packages */
.packages {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
  margin-top: clamp(44px, 5vw, 70px);
}
.package {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); background: var(--ink-2);
  padding: clamp(24px, 2.4vw, 36px);
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}
.package:hover { border-color: var(--champagne); transform: translateY(-6px); }
.package--flag { border-color: rgba(201, 168, 118, .5); }
.package__kicker { font-family: var(--font-serif); font-style: italic; color: var(--champagne); font-size: .95rem; }
.package h3 {
  font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(1.2rem, 1.5vw, 1.45rem);
  margin-top: 10px; line-height: 1.25;
}
.package ul { margin-top: 14px; display: grid; gap: 7px; }
.package li { font-size: .88rem; color: var(--ivory-dim); padding-left: 16px; position: relative; }
.package li::before { content: "·"; position: absolute; left: 2px; color: var(--champagne); }
.package__cta { margin-top: 22px; }
.package__cta .btn { width: 100%; justify-content: center; }
.package__tag {
  margin-top: 18px;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--champagne-2);
}

/* Landing page responsive */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .packages { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gallery { grid-template-columns: 1fr; }
  .packages { grid-template-columns: 1fr; }
  .cta-band__inner { justify-content: center; text-align: center; }
  .page-hero__actions .btn { width: 100%; justify-content: center; }
}


/* ============================================================
   Readability — accents over imagery
   ============================================================ */
.work__caption {
  background: linear-gradient(0deg, rgba(10,10,11,.92) 0%, rgba(10,10,11,.55) 55%, transparent 100%);
  padding-top: 34px;
}
.work__caption em { color: var(--champagne-2); text-shadow: 0 1px 10px rgba(10,10,11,.95); }
.work__caption span { text-shadow: 0 1px 8px rgba(10,10,11,.95); }
.hero__title em, .page-hero__title em, .outro__title em, .manifesto__title em {
  text-shadow: 0 2px 26px rgba(10,10,11,.85), 0 1px 4px rgba(10,10,11,.7);
}
.hero .eyebrow, .page-hero .eyebrow, .outro .eyebrow { text-shadow: 0 1px 10px rgba(10,10,11,.9); }
.sector__scope, .sector__num, .sector__copy { text-shadow: 0 1px 8px rgba(10,10,11,.85); }

/* ============================================================
   Client Portal
   ============================================================ */
.portal-note {
  font-size: .8rem; color: var(--ivory-dim);
  border-left: 2px solid var(--champagne);
  padding-left: 14px;
  max-width: 60ch;
}

/* Process tracker */
.tracker {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
  margin-top: clamp(40px, 5vw, 64px);
  counter-reset: step;
}
.tracker__step {
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: 20px 18px 22px;
  position: relative;
  transition: border-color .4s;
}
.tracker__step i {
  font-family: var(--font-serif); font-style: italic;
  color: var(--champagne); font-size: .9rem;
}
.tracker__step h3 { font-weight: 600; font-size: .95rem; margin-top: 8px; line-height: 1.3; }
.tracker__step p { font-size: .8rem; color: var(--ivory-dim); margin-top: 8px; }
.tracker__step.is-active { border-color: var(--champagne); }
.tracker__step.is-active::after {
  content: "You are here";
  position: absolute; top: -9px; right: 10px;
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  background: var(--champagne); color: #141005;
  padding: 3px 8px; border-radius: 999px;
}

/* Configurator layout */
.config { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
.config__col { min-width: 0; }
.config h3.config__label {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--champagne); font-weight: 600;
  margin: clamp(36px, 4vw, 52px) 0 16px;
}
.config h3.config__label:first-child { margin-top: 0; }

/* Choice cards (radio) */
.choices { display: grid; gap: 12px; }
.choices--3 { grid-template-columns: repeat(3, 1fr); }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice label, .choice > span.choice__body {
  display: block;
  border: 1px solid var(--line); background: var(--ink-2);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.choice input:checked + .choice__body { border-color: var(--champagne); background: rgba(201,168,118,.07); }
.choice input:focus-visible + .choice__body { outline: 2px solid var(--champagne); outline-offset: 2px; }
.choice__body strong { display: block; font-weight: 600; font-size: .98rem; }
.choice__body small { display: block; color: var(--ivory-dim); font-size: .78rem; margin-top: 4px; }
.choice__body .choice__price {
  display: block; margin-top: 8px;
  font-family: var(--font-serif); font-style: italic;
  color: var(--champagne-2); font-size: .9rem;
}

/* Includes / not included detail */
.choice details { margin-top: 12px; }
.choice summary {
  cursor: pointer; list-style: none;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--champagne);
}
.choice summary::-webkit-details-marker { display: none; }
.choice summary::after { content: " +"; }
.choice details[open] summary::after { content: " –"; }
.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }
.inc-exc h4 {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ivory); font-weight: 600; margin-bottom: 6px;
}
.inc-exc ul { display: grid; gap: 4px; }
.inc-exc li { font-size: .78rem; color: var(--ivory-dim); padding-left: 14px; position: relative; }
.inc-exc .inc li::before { content: "✓"; position: absolute; left: 0; color: var(--champagne); font-size: .7rem; }
.inc-exc .exc li::before { content: "✕"; position: absolute; left: 0; color: #8a6a6a; font-size: .7rem; }

/* Units stepper */
.stepper { display: flex; align-items: center; gap: 18px; }
.stepper button {
  width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 50%;
  font-size: 20px; display: grid; place-items: center;
  transition: background .3s, border-color .3s, color .3s;
}
.stepper button:hover { background: var(--champagne); border-color: var(--champagne); color: #141005; }
.stepper output { font-weight: 600; font-size: 1.4rem; min-width: 2ch; text-align: center; }
.stepper .stepper__hint { font-size: .8rem; color: var(--ivory-dim); }
.stepper .stepper__hint b { color: var(--champagne-2); font-weight: 600; }

/* World map */
.map-wrap { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(12px, 1.5vw, 20px); }
.map-svg { width: 100%; height: auto; display: block; }
.map-svg .land { fill: rgba(240,234,224,.07); stroke: rgba(240,234,224,.18); stroke-width: 1; }
.map-svg .grid-line { stroke: rgba(240,234,224,.07); stroke-dasharray: 3 5; }
.map-city { cursor: pointer; }
.map-city circle.dot { fill: var(--champagne); transition: r .3s, fill .3s; }
.map-city circle.halo { fill: none; stroke: var(--champagne); opacity: .35; }
.map-city text {
  fill: var(--ivory-dim); font-size: 13px; font-family: "Instrument Sans", sans-serif;
  transition: fill .3s;
}
.map-city:hover text, .map-city.is-selected text { fill: var(--ivory); }
.map-city.is-selected circle.dot { fill: var(--champagne-2); }
.map-city.is-selected circle.halo { animation: haloPulse 2s var(--ease) infinite; }
@keyframes haloPulse {
  0% { r: 6; opacity: .5; }
  100% { r: 16; opacity: 0; }
}
.map-meta { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 12px; font-size: .8rem; color: var(--ivory-dim); }
.map-meta b { color: var(--champagne-2); font-weight: 600; }

/* Date & venue */
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row .field label { color: var(--ivory-dim); }

/* Summary card */
.summary {
  position: sticky; top: 100px;
  border: 1px solid var(--line); background: var(--ink-2);
  padding: clamp(24px, 2.6vw, 36px);
}
.summary h3 { font-weight: 600; font-size: 1.15rem; letter-spacing: -.01em; }
.summary__rows { margin-top: 18px; display: grid; }
.summary__rows > div {
  display: flex; justify-content: space-between; gap: 14px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: .88rem; color: var(--ivory-dim);
}
.summary__rows > div span:last-child { color: var(--ivory); text-align: right; }
.summary__rows > div.summary__discount span:last-child { color: var(--champagne-2); }
.summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 16px;
}
.summary__total b { font-size: 1.6rem; font-weight: 600; letter-spacing: -.02em; }
.summary__total small { color: var(--ivory-dim); font-size: .72rem; }
.summary__sched { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 14px; display: grid; gap: 8px; }
.summary__sched h4 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--champagne); }
.summary__sched div { display: flex; justify-content: space-between; font-size: .82rem; color: var(--ivory-dim); }
.summary__sched div b { color: var(--ivory); font-weight: 600; }
.summary .btn { margin-top: 20px; }
.summary__foot { margin-top: 12px; font-size: .72rem; color: var(--ivory-dim); }

/* Payment methods */
.paygrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 26px); margin-top: clamp(40px, 4vw, 60px); }
.pay { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(22px, 2.4vw, 32px); }
.pay i { font-family: var(--font-serif); font-style: italic; color: var(--champagne); font-size: .95rem; }
.pay h3 { font-weight: 600; margin-top: 8px; font-size: 1.05rem; }
.pay p { color: var(--ivory-dim); font-size: .85rem; margin-top: 8px; }
.flow { margin-top: clamp(40px, 4vw, 60px); display: grid; gap: 0; }
.flow li {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: baseline;
  padding-block: 16px; border-bottom: 1px solid var(--line);
}
.flow li:first-child { border-top: 1px solid var(--line); }
.flow i { font-family: var(--font-serif); font-style: italic; color: var(--champagne); }
.flow strong { font-weight: 600; }
.flow p { color: var(--ivory-dim); font-size: .85rem; margin-top: 2px; }
.flow .flow__pct { color: var(--champagne-2); font-weight: 600; white-space: nowrap; }

@media (max-width: 1024px) {
  .tracker { grid-template-columns: repeat(3, 1fr); }
  .config { grid-template-columns: 1fr; }
  .summary { position: static; }
  .paygrid { grid-template-columns: 1fr; }
  .choices--3 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .tracker { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .inc-exc { grid-template-columns: 1fr; }
  .map-svg text { font-size: 17px; }
}


/* ============================================================
   Accent pass — no gold type on dark; champagne kept for UI
   ============================================================ */
.h2 em, .hero__title em, .manifesto__title em, .outro__title em, .page-hero__title em { color: var(--ivory); }
.stat__num { color: var(--ivory); }
.service__tag { color: var(--ivory); opacity: .85; }
.work__caption em { color: var(--ivory); }
.choice__price { color: var(--ivory); }
.package__kicker { color: var(--ivory-dim); }
.package__tag { color: var(--ivory); }
.flow .flow__pct { color: var(--ivory); }
.mmenu__foot a { color: var(--ivory); }
.testimonials__refnote em { color: var(--ivory); }
.cta-row__phrase em { color: var(--ivory); }

/* ============================================================
   Navbar — differentiated Client Portal pill
   ============================================================ */
.nav-portal {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--champagne);
  border-radius: 999px;
  padding: 8px 16px;
  color: var(--ivory);
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s;
}
.nav-portal svg { width: 13px; height: 13px; flex: none; color: var(--champagne); transition: color .35s; }
.nav-portal:hover { background: var(--champagne); color: #141005; }
.nav-portal:hover svg { color: #141005; }
.mmenu__nav .nav-portal {
  font-size: 1.3rem; font-weight: 600; letter-spacing: 0;
  padding: 14px 24px; width: fit-content; margin-top: 10px;
}
.mmenu__nav .nav-portal svg { width: 18px; height: 18px; }

/* ============================================================
   Volume discount — tier chips + savings callout
   ============================================================ */
.tiers { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.tier {
  border: 1px solid var(--line);
  padding: 10px 16px;
  font-size: .8rem; color: var(--ivory-dim);
  display: grid; gap: 2px; text-align: center;
  min-width: 96px;
  transition: border-color .3s, background .3s, color .3s, transform .3s;
}
.tier b { font-size: 1.05rem; font-weight: 600; color: var(--ivory); }
.tier.is-active {
  border-color: var(--champagne);
  background: var(--champagne);
  color: #3a2f14;
  transform: translateY(-3px);
}
.tier.is-active b { color: #141005; }
.savings {
  margin-top: 16px;
  display: none;
  align-items: baseline; gap: 12px;
  border: 1px solid var(--champagne);
  background: rgba(201, 168, 118, .1);
  padding: 14px 18px;
}
.savings.is-on { display: flex; animation: savingsIn .5s var(--ease); }
.savings b { font-size: 1.3rem; font-weight: 600; color: var(--ivory); }
.savings span { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-dim); }
@keyframes savingsIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.summary__discount.is-on span:last-child {
  background: var(--champagne); color: #141005;
  padding: 2px 10px; border-radius: 999px; font-weight: 600;
}

/* ============================================================
   Account — register / sign in
   ============================================================ */
.account { border: 1px solid var(--line); background: var(--ink-2); padding: clamp(24px, 3vw, 44px); }
.account__tabs { display: flex; gap: 10px; margin-bottom: 22px; }
.account__tab {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 22px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--ivory-dim);
  transition: all .3s;
}
.account__tab.is-active { border-color: var(--champagne); background: var(--champagne); color: #141005; }
.account form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.account form .field--wide { grid-column: 1 / -1; }
.account form .btn { grid-column: 1 / -1; justify-content: center; }
.account__msg { grid-column: 1 / -1; font-size: .85rem; color: var(--ivory-dim); min-height: 1.2em; }
.account__msg.is-error { color: #c98a76; }
.account__msg.is-ok { color: var(--ivory); }
.account__welcome { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.account__welcome h3 { font-weight: 600; font-size: 1.4rem; letter-spacing: -.01em; }
.account__welcome h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.drafts { margin-top: 22px; display: grid; gap: 10px; }
.draft {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  border: 1px solid var(--line);
  padding: 14px 18px;
  font-size: .85rem; color: var(--ivory-dim);
}
.draft b { color: var(--ivory); font-weight: 600; }
.draft button { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-dim); }
.draft button:hover { color: var(--ivory); }

/* ============================================================
   Location — country/city selects
   ============================================================ */
.loc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 16px; }

/* ============================================================
   News
   ============================================================ */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(44px, 5vw, 70px);
}
.news-card {
  text-align: left; padding: 0;
  border: 1px solid var(--line); background: var(--ink-2);
  display: flex; flex-direction: column;
  transition: border-color .4s, transform .4s;
  cursor: pointer;
}
.news-card:hover { border-color: var(--champagne); transform: translateY(-5px); }
.news-card__img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__body { padding: clamp(18px, 2vw, 26px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card__meta { display: flex; gap: 12px; align-items: center; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ivory-dim); }
.news-card__meta i {
  font-style: normal; color: var(--ivory);
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 3px 10px;
}
.news-card h3 { font-weight: 600; font-size: 1.15rem; letter-spacing: -.01em; line-height: 1.3; }
.news-card p { font-size: .88rem; color: var(--ivory-dim); }
.news-card__more {
  margin-top: auto; padding-top: 10px;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ivory);
}

/* Article overlay */
.article {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(10, 10, 11, .97);
  overflow-y: auto;
  padding: clamp(80px, 10vh, 120px) 0 80px;
}
.article[hidden] { display: none; }
.article__inner { width: min(92vw, 760px); margin-inline: auto; }
.article__img { aspect-ratio: 16 / 8; overflow: hidden; margin-bottom: 32px; }
.article__img img { width: 100%; height: 100%; object-fit: cover; }
.article h2 { font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.02em; line-height: 1.15; }
.article h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.article__meta { display: flex; gap: 14px; margin: 18px 0 26px; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ivory-dim); }
.article__body p { color: var(--ivory-dim); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.article__body p strong { color: var(--ivory); font-weight: 600; }
.article__close {
  position: fixed; top: 22px; right: 22px;
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong); border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(10, 10, 11, .6);
  transition: background .4s, border-color .4s, color .4s;
  z-index: 2;
}
.article__close:hover { background: var(--champagne); border-color: var(--champagne); color: #141005; }
.article__close svg { width: 20px; height: 20px; }
.article__cta { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 26px; }

@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .account form { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .loc-row { grid-template-columns: 1fr; }
  .tiers { display: grid; grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   Navbar v3 — grouped, language switch, single-line pill
   ============================================================ */
.header__nav { gap: 26px; }
.nav-portal, .nav-portal__label { white-space: nowrap; }
.nav-lang { position: relative; }
.nav-lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 8px 2px;
  transition: color .3s;
}
.nav-lang__btn:hover { color: var(--ivory); }
.nav-lang__btn .globe { width: 14px; height: 14px; color: var(--champagne); }
.nav-lang__btn .nav-drop__caret { width: 11px; height: 11px; }
.nav-lang .nav-drop__panel { min-width: 170px; right: 0; left: auto; transform: translateY(10px); }
.nav-lang:hover .nav-drop__panel, .nav-lang:focus-within .nav-drop__panel { transform: translateY(0); }
.nav-lang .nav-drop__item { width: 100%; text-align: left; }
.nav-lang .nav-drop__item.is-active span { color: var(--champagne-2); }
.mmenu__langs { display: flex; gap: 10px; margin-top: 20px; }
.mmenu__langs button {
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 9px 20px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: var(--ivory-dim);
  transition: all .3s;
}
.mmenu__langs button.is-active { background: var(--champagne); border-color: var(--champagne); color: #141005; }

@media (max-width: 1024px) {
  .header__actions .nav-lang, .header__actions .nav-portal { display: none; }
}

/* ============================================================
   Interactive map v2 — countries → zoom → cities
   ============================================================ */
.map-wrap { position: relative; }
.map-back {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(10, 10, 11, .7);
  padding: 8px 16px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600;
  color: var(--ivory);
  transition: background .3s, border-color .3s, color .3s, opacity .3s;
}
.map-back:hover { background: var(--champagne); border-color: var(--champagne); color: #141005; }
.map-back[hidden] { display: none; }
.map-hint {
  position: absolute; top: 20px; right: 18px;
  text-align: right;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ivory-dim);
  pointer-events: none;
}
.map-country { cursor: pointer; }
.map-country circle { fill: var(--champagne); opacity: .8; transition: opacity .3s; }
.map-country text {
  fill: var(--ivory); font-size: 13px; font-family: "Instrument Sans", sans-serif;
  opacity: 0; transition: opacity .25s;
  paint-order: stroke; stroke: rgba(10,10,11,.85); stroke-width: 3px;
}
.map-country:hover circle, .map-country:focus-visible circle { opacity: 1; }
.map-country:hover text, .map-country:focus-visible text { opacity: 1; }
.map-city text { paint-order: stroke; stroke: rgba(10,10,11,.85); stroke-width: 3px; }

/* ============================================================
   Off Market
   ============================================================ */
.om-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); margin-top: clamp(44px, 5vw, 70px); }
@media (max-width: 900px) { .om-steps { grid-template-columns: 1fr; } }

/* ============================================================
   Articles — SEO structure
   ============================================================ */
.article__body h3 {
  font-weight: 600; font-size: 1.2rem; letter-spacing: -.01em;
  color: var(--ivory);
  margin: 26px 0 10px;
}


/* ============================================================
   Navbar v4 — grid alignment (logo | nav | actions)
   ============================================================ */
.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}
.header__logo { justify-self: start; }
.header__nav {
  position: static;
  transform: none;
  justify-self: center;
  gap: clamp(18px, 2vw, 30px);
}
.header__actions { justify-self: end; gap: 14px; }
.header__nav > a, .nav-drop > a, .nav-lang__btn, .nav-portal, .header__actions .btn {
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .header__inner { grid-template-columns: 1fr auto; }
}

/* ============================================================
   Account tabs — segmented control
   ============================================================ */
#accountForms .account__tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px;
  max-width: 440px;
  margin-bottom: 26px;
}
#accountForms .account__tab {
  border: 0; border-radius: 999px;
  padding: 13px 10px;
  text-align: center;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  color: var(--ivory-dim);
  transition: background .3s, color .3s;
}
#accountForms .account__tab:hover { color: var(--ivory); }
#accountForms .account__tab.is-active {
  background: var(--champagne);
  color: #141005;
}
.account__welcome .account__tab {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 10px 22px;
}
.account__welcome .account__tab:hover { border-color: var(--champagne); color: var(--ivory); }

/* ============================================================
   Real world map
   ============================================================ */
.map-svg .land-base {
  fill: rgba(240, 234, 224, .05);
  stroke: rgba(240, 234, 224, .12);
  stroke-width: .4;
}
.map-svg .land-active {
  fill: rgba(201, 168, 118, .16);
  stroke: rgba(201, 168, 118, .45);
  stroke-width: .5;
  cursor: pointer;
  transition: fill .3s;
  outline: none;
}
.map-svg .land-active:hover,
.map-svg .land-active:focus-visible { fill: rgba(201, 168, 118, .34); }
.map-svg .land-active.is-current {
  fill: rgba(201, 168, 118, .26);
  stroke: var(--champagne);
  stroke-width: .8;
}


/* ============================================================
   Navbar v5 — perfect vertical alignment
   ============================================================ */
.header__nav { align-items: center; }
.header__nav > a,
.header__nav .nav-drop,
.header__nav .nav-drop > a {
  display: inline-flex; align-items: center;
  height: 24px;
  padding-block: 0;
  line-height: 1;
}
.header__nav .nav-roll { line-height: 24px; }
.nav-roll::after { line-height: 24px; }
.header__actions { align-items: center; }
.nav-lang__btn { height: 24px; padding-block: 0; line-height: 1; }

/* ============================================================
   Account v2 — single-form auth card
   ============================================================ */
.account { max-width: 520px; }
.account__title { font-weight: 600; font-size: 1.5rem; letter-spacing: -.01em; }
.account__lead { color: var(--ivory-dim); font-size: .9rem; margin-top: 8px; }
.account__msg { margin-top: 14px; }
.account form { grid-template-columns: 1fr; margin-top: 18px; }
.account form .btn { margin-top: 6px; }
.account__switch {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .88rem; color: var(--ivory-dim);
  display: flex; gap: 8px; align-items: baseline;
}
.account__switch button {
  color: var(--ivory);
  font-weight: 600;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 1px;
  transition: color .3s;
}
.account__switch button:hover { color: var(--champagne-2); }

/* ============================================================
   Account v2 — tabbed sign in / create account
   ============================================================ */
.account form .account__lead { grid-column: 1 / -1; margin: 0; font-size: .9rem; color: var(--ivory-dim); }
.account__hint { grid-column: 1 / -1; margin: 0; font-size: .8rem; color: var(--ivory-dim); }
.account__hint::before { content: "→ "; color: var(--champagne); }
.field .pwd { position: relative; }
.field .pwd input { width: 100%; padding-right: 84px; }
.pwd__toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ivory-dim); transition: color .3s;
}
.pwd__toggle:hover { color: var(--champagne-2); }

/* The hidden attribute must always win over display rules (forms, fields, overlays) */
[hidden] { display: none !important; }

/* Header actions: the CTA must stay on one line — Spanish labels are longer
   than the English source and were wrapping to three lines. */
.header__actions .btn--sm,
.header__actions .nav-portal { white-space: nowrap; }
.header__actions .btn--sm { padding-inline: 20px; }
@media (max-width: 1180px) {
  .header__nav { gap: 24px; }
  .header__actions { gap: 12px; }
  .header__actions .btn--sm { padding-inline: 16px; }
  .nav-portal { padding-inline: 12px; }
}

/* News: sector filter bar */
.news-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 40px);
}
.news-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.news-filter {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 20px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  color: var(--ivory-dim);
  transition: color .3s, border-color .3s, background .3s;
}
.news-filter:hover { color: var(--ivory); border-color: var(--champagne); }
.news-filter.is-active { background: var(--champagne); border-color: var(--champagne); color: #141005; }
.news-count { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory-dim); margin: 0; }

/* ============================================================
   Floating WhatsApp button — bottom-right on every page.
   Sits under the mobile menu (90) and dialogs (300).
   ============================================================ */
.wa-fab {
  position: fixed; right: clamp(16px, 2.5vw, 28px); bottom: clamp(16px, 2.5vw, 28px);
  z-index: 80;
  display: inline-flex; align-items: center; gap: 0;
  height: 56px; padding: 0 16px;
  border-radius: 999px;
  background: var(--champagne); color: #141005;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
  transition: gap .45s var(--ease), padding .45s var(--ease),
              background .35s var(--ease), transform .35s var(--ease), opacity .3s;
}
.wa-fab svg { width: 28px; height: 28px; flex: none; }
.wa-fab__label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  transition: max-width .45s var(--ease);
}
.wa-fab:hover, .wa-fab:focus-visible {
  background: var(--champagne-2); transform: translateY(-2px); gap: 10px;
}
.wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label { max-width: 130px; }
.wa-fab.is-hidden { opacity: 0; visibility: hidden; transform: translateY(12px); }
@media (max-width: 640px) {
  .wa-fab { height: 52px; padding: 0 12px; }
  .wa-fab svg { width: 26px; height: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-fab, .wa-fab__label { transition: none; }
}

/* Keep the floating WhatsApp button clear of the hero's bottom band: reserve
   room on wide screens, and drop the scroll cue on phones, where the button
   occupies that corner and swiping is self-evident anyway. */
@media (min-width: 641px) {
  .hero__foot-inner > *:last-child { padding-right: 76px; }
}
@media (max-width: 640px) {
  .hero__scroll { display: none; }
}

/* The hero anchors its content to the bottom, so tall content (Spanish copy is
   longer than the English source) used to slide under the fixed header.
   Reserve the header height, and tighten the bottom gap on phones. */
.hero__content { padding-top: clamp(86px, 12vh, 130px); }
@media (max-width: 640px) {
  .hero__content { padding-bottom: 88px; }
}
