/* ============================================================
   Athalie & Co — Business Consulting
   Editorial / luxury aesthetic · serif + sans pairing
   ============================================================ */

:root {
  --ink: #0A0A0A;
  --ink-soft: #2D2D2D;
  --ink-mute: #5A5A5A;
  --gold: #C9A961;
  --gold-deep: #A88A47;
  --cream: #FAF8F3;
  --cream-soft: #F3EFE6;
  --paper: #FFFFFF;
  --line: rgba(10,10,10,.12);
  --line-light: rgba(250,248,243,.18);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --radius: 2px;

  --t-fast: 180ms cubic-bezier(.2,.7,.2,1);
  --t: 320ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

/* Lock scroll when mobile menu open */
body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

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

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

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--ink); color: var(--cream);
  padding: 8px 16px; z-index: 100;
}
.skip-link:focus { top: 0; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 1.4rem;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.display--sm { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.08; }
.display--light { color: var(--cream); }
.display--light em { color: var(--gold); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.4rem;
}
.eyebrow--light { color: var(--gold); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 2rem;
}

.section__lede {
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}
.section__lede--light { color: rgba(250,248,243,.78); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: 0.04em;
  padding: .95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--t-fast);
  text-transform: uppercase;
  background: transparent;
  color: inherit;
}
.btn--gold {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
  isolation: isolate; /* contains the negative z-index of ::before */
}
.btn--gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-deep) 100%);
  transform: translateY(101%);
  transition: transform var(--t);
  z-index: -1; /* sits under text without needing a wrapping span */
}
.btn--gold:hover::before { transform: translateY(0); }
.btn--gold:hover { color: var(--ink); border-color: var(--gold); }

.btn--ghost {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--link {
  padding: .95rem 0;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn--link:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.btn--sm { padding: .65rem 1.1rem; font-size: .78rem; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  min-height: 60px;
}
/* On large screens keep the elegant blur effect, on mobile use solid bg */
@media (min-width: 1024px) {
  .site-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(140%) blur(14px);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
  }
}
.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding-block: 1.1rem;
}

.brand { display: inline-flex; align-items: center; gap: .75rem; }
.brand__mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand__mark text { fill: var(--ink); }
.brand__amp { fill: var(--gold) !important; }
.brand__wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif); font-weight: 500;
  font-size: 1.4rem; letter-spacing: 0.02em;
}
.brand__amp-inline { color: var(--gold); font-style: italic; }
.brand__tag {
  font-size: .62rem; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: .35rem;
}

.nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 2.2rem;
  justify-content: center;
}
.nav a {
  font-size: .82rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative; padding: .3rem 0;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

/* Active page indicator (desktop nav) */
.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--gold);
  height: 2px;
}

.header__aside {
  display: flex; align-items: center; gap: 1rem;
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding: .25rem 0;
  transition: color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.header__cta svg { color: var(--gold-deep); flex-shrink: 0; }
.header__cta:hover { color: var(--gold-deep); border-color: var(--gold); }

@media (max-width: 1280px) { .header__cta span { display: none; } }
@media (max-width: 820px)  { .header__cta { display: none; } }

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang button {
  background: transparent;
  border: 0;
  font: 500 .72rem var(--sans);
  letter-spacing: 0.1em;
  padding: .42rem .65rem;
  color: var(--ink-mute);
  cursor: pointer;
  transition: all var(--t-fast);
}
.lang button + button { border-left: 1px solid var(--line); }
.lang button[aria-pressed="true"] {
  background: var(--ink); color: var(--cream);
}
.lang button:hover:not([aria-pressed="true"]) { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0;
  padding: 8px; cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.menu-toggle span {
  display: block; height: 1.5px; background: var(--ink);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* RIGHT-SIDE DRAWER — slides in from right with dark backdrop */
.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.5);
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}
.mobile-nav__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav__backdrop[hidden] {
  /* Override default display:none so we can animate */
  display: block !important;
}
/* Initially fully hidden — JS removes [hidden] on first open */
.mobile-nav__backdrop[hidden]:not(.is-open) {
  visibility: hidden;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: var(--cream);
  z-index: 70;
  padding: 4.5rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  box-shadow: -20px 0 60px -30px rgba(10,10,10,.4);
}
.mobile-nav[hidden] { display: flex !important; visibility: hidden; }
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }

/* Close button */
.mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--t-fast);
}
.mobile-nav__close:hover { background: rgba(10,10,10,.06); }

/* Nav links */
.mobile-nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-nav li { border-bottom: 1px solid var(--line); }
.mobile-nav li:first-child { border-top: 1px solid var(--line); }
.mobile-nav nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
  position: relative;
  transition: color var(--t-fast);
}
.mobile-nav nav a::after {
  content: '→';
  color: var(--gold);
  font-family: var(--sans);
  font-size: 1rem;
  opacity: .55;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.mobile-nav nav a:hover { color: var(--gold-deep); }
.mobile-nav nav a:hover::after { transform: translateX(4px); opacity: 1; }
.mobile-nav nav a[aria-current="page"] {
  color: var(--gold-deep);
  padding-left: .9rem;
  border-left: 3px solid var(--gold);
}
.mobile-nav nav a[aria-current="page"]::after { opacity: 1; }

/* Lang switcher inside drawer */
.mobile-nav__lang {
  display: flex;
  gap: .4rem;
  padding-top: .4rem;
}
.mobile-nav__lang button {
  flex: 1;
  background: transparent;
  border: 1px solid var(--line);
  padding: .6rem 0;
  font: 500 .72rem var(--sans);
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  cursor: pointer;
  min-height: 40px;
  transition: all var(--t-fast);
}
.mobile-nav__lang button:hover:not([aria-pressed="true"]) { color: var(--ink); border-color: var(--ink-soft); }
.mobile-nav__lang button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Contact links inside drawer */
.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-top: .4rem;
  border-top: 1px solid var(--line);
}
.mobile-nav__contact a {
  font-size: .88rem;
  color: var(--ink-soft);
  padding: .4rem 0;
  transition: color var(--t-fast);
}
.mobile-nav__contact a:hover { color: var(--gold-deep); }

/* CTA pinned at bottom */
.mobile-nav__cta { margin-top: auto !important; min-height: 52px; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding: clamp(3rem, 9vw, 8rem) 0 clamp(2.5rem, 6vw, 5rem);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
/* Background photo (Brussels architecture) — right-side bleed, dim & desaturated */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/brussels.jpg');
  background-size: cover;
  background-position: center right;
  filter: grayscale(.6) contrast(1.05) brightness(.92);
  z-index: 0;
}
/* Cream gradient overlay: solid on the left for text legibility, fades right to reveal photo */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      var(--paper) 0%,
      var(--paper) 30%,
      rgba(255,255,255,.92) 50%,
      rgba(250,248,243,.55) 75%,
      rgba(250,248,243,.30) 100%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(201,169,97,.18), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }

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

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

.hero__cta {
  display: flex; gap: 1.5rem; align-items: center;
  flex-wrap: wrap;
  margin: 2.5rem 0 2rem;
}

.hero__pills {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: .9rem; align-items: center;
  font-size: .78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__pills li:nth-child(-n+3) {
  border: 1px solid var(--line);
  padding: .35rem .65rem;
  border-radius: 999px;
  letter-spacing: 0.14em;
}
.hero__pills-sep { color: var(--gold) !important; }

/* Hero KPI card */
.hero__card {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  box-shadow:
    0 1px 0 var(--gold),
    0 30px 80px -30px rgba(10,10,10,.45);
}
.hero__card::after {
  content: ''; position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.kpi { position: relative; }
.kpi__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: .4rem;
  color: var(--cream);
}
.kpi__num span {
  font-size: 0.5em;
  color: var(--gold);
  margin-left: 2px;
  vertical-align: top;
  line-height: 1;
}
.kpi__lbl {
  font-size: .8rem;
  letter-spacing: 0.04em;
  color: rgba(250,248,243,.68);
  line-height: 1.45;
}
.kpi--quote {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line-light);
  padding-top: 1.5rem;
}
.kpi--quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  margin: 0 0 .6rem;
  color: var(--cream);
  line-height: 1.5;
}
.kpi__cite {
  font-size: .72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__rule {
  position: relative;
  z-index: 2;
  margin-top: clamp(3rem, 6vw, 5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ============================================================
   CLIENTS / TRUSTED BY
   Restrained wordmarks — uniform typography, monochrome.
   Slots are <span> placeholders; swap to <img src="..."> when
   official logo files are available (drop in assets/clients/).
   ============================================================ */

.clients {
  background: var(--cream);
  padding: clamp(3.6rem, 7vw, 5.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clients__label {
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 2.8rem;
  font-weight: 500;
}
.clients__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  justify-items: center;
}
.client {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 0 .4rem;
  opacity: 0.72;
  filter: saturate(0);
  transition: opacity var(--t), filter var(--t);
}
.client:hover {
  opacity: 1;
  filter: saturate(1);
}

/* Real logo files (SVG/PNG in assets/clients/) */
.client img {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Makes PNGs with white background blend cleanly on cream */
  mix-blend-mode: multiply;
}

/* Text wordmark placeholders — uniform editorial treatment */
.client__wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  line-height: 1.15;
  white-space: nowrap;
}
.client__wordmark em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--gold-deep);
  text-transform: none;
  font-size: 1.1em;
  letter-spacing: 0;
  margin: 0 .15em;
}
.client__wordmark sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--gold-deep);
}

/* Subtle per-brand differentiation (still text-based, restrained) */
.client__wordmark--bnp { font-weight: 600; letter-spacing: 0.22em; }
.client__wordmark--fortis { font-family: var(--serif); font-weight: 500; letter-spacing: 0.12em; }
.client__wordmark--blake { font-family: var(--serif); font-weight: 500; letter-spacing: 0.08em; text-transform: none; }
.client__wordmark--diasorin { font-weight: 600; letter-spacing: 0.14em; }
.client__wordmark--360 { letter-spacing: 0.14em; }
.client__wordmark--leopad { letter-spacing: 0.22em; }
.client__wordmark--muidatech { font-weight: 500; letter-spacing: 0.14em; }

/* ============================================================
   SECTIONS — base
   ============================================================ */

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}
.section--dark { background: var(--ink); color: var(--cream); }
.section--cream { background: var(--cream); }

/* Photo-backed section */
.section--photo {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.section--photo > .container { position: relative; z-index: 2; }
.section--photo .section__bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  filter: grayscale(.4) contrast(1.05) brightness(.55);
  z-index: 0;
  pointer-events: none;
}
.section--photo::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.65) 0%, rgba(10,10,10,.85) 50%, rgba(10,10,10,.92) 100%),
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(201,169,97,.10), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.section--photo::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}

/* Editorial strip */
.strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);  /* minmax(0,1fr) lets columns shrink past their content's intrinsic min-size — kills the 1400px-image overflow */
  background: var(--cream);
  overflow: hidden;                                      /* belt-and-suspenders: clip anything inside the strip that tries to escape */
  max-width: 100%;
}
.strip__half {
  margin: 0;
  min-height: 360px;
  position: relative;
  overflow: hidden;
  min-width: 0;       /* CRITICAL: prevents img intrinsic width (1400px) from
                         forcing the grid item to overflow viewport */
}
.strip__half--img img {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(.9);
}
.strip__half--quote {
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
}
.strip__half--quote::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.strip__half--quote blockquote {
  margin: 0;
  max-width: 36ch;
  position: relative;
}
.strip__mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
}
.strip__half--quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  line-height: 1.3;
  margin: 0 0 1.4rem;
  color: var(--cream);
}
.strip__half--quote footer {
  font-size: .72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 70ch; }
.section__head--center { text-align: center; margin-inline: auto; }

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  position: relative;
  background: var(--paper);
  padding: clamp(2rem, 3vw, 2.8rem);
  transition: background var(--t);
}
.service:hover { background: var(--cream); }
.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
  letter-spacing: 0.05em;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.service p {
  color: var(--ink-soft);
  font-size: .96rem;
  margin: 0 0 1.4rem;
}
.service ul {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.service li {
  font-size: .85rem;
  color: var(--ink-mute);
  padding: .35rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.service li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service--featured {
  background: var(--ink);
  color: var(--cream);
}
.service--featured:hover { background: var(--ink-soft); }
.service--featured .service__num { color: var(--gold); }
.service--featured h3 { color: var(--cream); }
.service--featured p { color: rgba(250,248,243,.78); }
.service--featured ul { border-color: var(--line-light); }
.service--featured li { color: rgba(250,248,243,.7); }
.service__badge {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  font-size: .65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .3rem .55rem;
  border-radius: 999px;
}

/* Homepage service-card CTA link */
.service__cta {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid currentColor;
  padding: .2rem 0;
  transition: color var(--t-fast);
}
.service__cta:hover { color: var(--ink); }
.service__cta--light { color: var(--gold); }
.service__cta--light:hover { color: var(--cream); }

/* services.html section CTA row */
.service-detail__action {
  display: flex !important;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.5rem !important;
}
.service-detail__action .btn--link {
  padding: .95rem 0;
  font-size: .82rem;
}
.service-detail__link--light {
  color: var(--gold) !important;
  border-bottom-color: var(--gold) !important;
}
.service-detail__link--light:hover { color: var(--cream) !important; border-bottom-color: var(--cream) !important; }

/* ============================================================
   APPROACH (dark section)
   ============================================================ */

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.steps li {
  padding: 2rem;
  border-bottom: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
}
.steps__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
}
.steps h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin: 0 0 .6rem;
  color: var(--cream);
}
.steps p {
  margin: 0;
  font-size: .9rem;
  color: rgba(250,248,243,.65);
  line-height: 1.55;
}

/* ============================================================
   SECTORS
   ============================================================ */

.sectors {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3+3 layout for 6 items */
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 820px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sectors { grid-template-columns: 1fr; } }
.sectors li {
  background: var(--paper);
  padding: 1.8rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.2rem;
  align-items: baseline;
  transition: background var(--t);
}
.sectors li:hover { background: var(--cream-soft); }
.sectors li span {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-deep);
}
.sectors li strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--ink);
}
.sectors li em {
  grid-column: 2;
  font-style: normal;
  font-size: .85rem;
  color: var(--ink-mute);
  margin-top: .25rem;
}

/* ============================================================
   FAQ
   Editorial accordion — native <details> for accessibility.
   ============================================================ */

.faq {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 880px;
  border-top: 1px solid var(--line);
}
.faq__item { border-bottom: 1px solid var(--line); }

.faq details {
  position: relative;
}
.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1;
  margin-top: .1em;
  transition: transform var(--t);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-deep); }
.faq details p {
  margin: 0 0 1.8rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 70ch;
  animation: faq-in 360ms cubic-bezier(.2,.7,.2,1);
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .faq summary { font-size: 1.05rem; padding: 1.2rem 0; gap: 1rem; }
  .faq details p { font-size: .95rem; margin-bottom: 1.4rem; }
}

/* ============================================================
   TEAM / ABOUT
   ============================================================ */

.team__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.team__copy p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0 0 1.2rem;
  max-width: 56ch;
}
.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  margin: 2.4rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.facts div { display: flex; flex-direction: column; }
.facts dt {
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .5rem;
}
.facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--ink);
}

.team__visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -40px rgba(10,10,10,.35);
}
.team__visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: contrast(1.02) saturate(0.92);
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.team__visual:hover img { transform: scale(1.03); }
.team__visual::before {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(255,255,255,.16);
  margin: 1rem;
  pointer-events: none;
  z-index: 2;
}
.team__visual::after {
  content: ''; position: absolute;
  inset: auto 0 0 0; height: 45%;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.65));
  pointer-events: none;
  z-index: 1;
}
.team__caption {
  position: absolute;
  left: 2rem; right: 2rem; bottom: 1.8rem;
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  z-index: 3;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.team__caption::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin-bottom: .8rem;
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contact__list {
  list-style: none; padding: 0; margin: 2.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem 2rem;
}
.contact__list li { display: flex; flex-direction: column; gap: .35rem; }
.contact__list span {
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact__list a, .contact__list address, .contact__list em {
  color: var(--cream);
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.1rem;
  transition: color var(--t-fast);
}
.contact__list a:hover { color: var(--gold); }

/* Contact widget — tab system wrapping form + Cal.com */
.contact__widget {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.contact__widget::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}
.contact__tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.contact__tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 1rem 1.2rem;
  font: 500 .76rem var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  position: relative;
  transition: color var(--t-fast);
  min-height: 48px;
}
.contact__tab:hover { color: var(--ink); }
.contact__tab.is-active { color: var(--ink); }
.contact__tab.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
}
.contact__panel { animation: panel-in 360ms cubic-bezier(.2,.7,.2,1); }
.contact__panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.contact__panel--book {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__cal {
  width: 100%;
  min-height: 620px;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
}

/* Thank-you state — full editorial takeover after form submit (?sent=1) */
.thank-you { animation: ty-fade 600ms cubic-bezier(.2,.7,.2,1); }
@keyframes ty-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.thank-you .display em { color: var(--gold-deep); }
.thank-you .eyebrow { color: var(--gold-deep); font-weight: 500; }
.thank-you__actions {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 2.2rem 0 1.6rem;
}
.thank-you__note {
  font-size: .92rem;
  color: var(--ink-mute);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0;
}
.thank-you__note a {
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold);
}
.thank-you__note a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .thank-you__actions { flex-direction: column; align-items: stretch; gap: .9rem; }
  .thank-you__actions .btn { width: 100%; text-align: center; }
}

/* Booking placeholder (until Cal.com is wired) */
.cal-placeholder {
  background: var(--paper);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  border-radius: var(--radius);
}
.cal-placeholder .eyebrow { margin-bottom: 1rem; }
.cal-placeholder__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--ink);
}
.cal-placeholder__lede {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.8rem;
  max-width: 42ch;
  margin-inline: auto;
}
.cal-placeholder__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.cal-placeholder__note {
  font-size: .78rem;
  color: var(--ink-mute);
  font-style: italic;
  margin: 0;
}

@media (max-width: 520px) {
  .cal-placeholder__actions { flex-direction: column; align-items: stretch; }
}
.contact__cal-fallback {
  margin: 0;
  font-size: .82rem;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 640px) {
  .contact__cal { min-height: 540px; }
  .contact__tab { padding: .9rem .8rem; font-size: .68rem; letter-spacing: .12em; }
}

/* Form */
.form {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}
.field { display: flex; flex-direction: column; gap: .45rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label, .consent {
  font-size: .72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  font: 400 16px var(--sans); /* 16px prevents iOS zoom on focus */
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: .7rem 0;
  min-height: 44px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
          appearance: none;
  transition: border-color var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23C9A961' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  padding-right: 1.6rem;
  cursor: pointer;
}

.consent {
  display: flex; gap: .7rem; align-items: flex-start;
  text-transform: none; letter-spacing: 0; font-weight: 400;
  font-size: .82rem; color: var(--ink-mute);
  line-height: 1.5;
}
.consent input { margin-top: .2rem; accent-color: var(--gold-deep); }

.form .btn--gold { background: var(--ink); color: var(--cream); }
.form__note {
  font-size: .75rem;
  color: var(--ink-mute);
  text-align: center;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 1.6rem;
  color: var(--ink-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand p {
  font-size: .9rem;
  max-width: 32ch;
  margin: 1rem 0 0;
  color: var(--ink-mute);
}
.footer__geo {
  font-size: .72rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep) !important;
  margin-top: 1.2rem !important;
}
.site-footer h5 {
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin: 0 0 1rem;
}
.site-footer a,
.site-footer .footer__meta span {
  display: block;
  font-size: .9rem;
  color: var(--ink-soft);
  padding: .25rem 0;
  transition: color var(--t-fast);
}
.site-footer a:hover { color: var(--ink); }
.footer__bottom {
  display: flex; justify-content: space-between;
  margin-top: 1.6rem; flex-wrap: wrap; gap: 1rem;
}
.footer__bottom small { color: var(--ink-mute); font-size: .8rem; }

/* ============================================================
   RESPONSIVE
   Breakpoints:
   1024px  · tablet / small laptop
    820px  · large phone landscape
    640px  · phone
    420px  · small phone (iPhone SE etc.)
   ============================================================ */

/* Tablet & small laptop */
@media (max-width: 1024px) {
  :root { --gutter: clamp(14px, 3.5vw, 28px); }

  .nav { display: none; }
  .header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    padding-block: .9rem;
  }
  .menu-toggle { display: flex; }
  .header__aside .btn { display: none; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { order: 2; }

  .approach__grid,
  .team__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .team__visual { aspect-ratio: 16 / 10; max-width: 480px; margin-inline: auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* Phone landscape */
@media (max-width: 820px) {
  /* Nuclear: force every top-level layout container to 100vw + zero margin
     so nothing can ever indent the page content from the screen edge. */
  html, body, main { width: 100% !important; max-width: 100vw !important; margin: 0 !important; padding-left: 0 !important; padding-right: 0 !important; overflow-x: clip; }
  .hero, .page-hero, .section, .clients, .strip, .site-footer { width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }
  .hero > .container, .page-hero > .container, .section > .container, .clients > .container, .site-footer > .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section { padding: clamp(3rem, 9vw, 6rem) 0; }

  /* Edge-to-edge: container has zero gutter on mobile.
     Text wrappers (.hero__copy, .page-hero__copy, .section__head, etc)
     get 14px inline padding so text doesn't touch the screen edge.
     The homepage CTA button breaks out via negative margin so it can
     stretch true edge-to-edge over the photo banner. */
  :root { --gutter: 0px; }
  .hero__copy,
  .page-hero__copy,
  .section__head,
  .about__intro,
  .step-detail__grid,
  .approach__grid > div,
  .team__copy,
  .article__inner,
  .legal__inner,
  .blog-list,
  .faq,
  .clients,
  .footer__grid,
  .footer__bottom,
  .post-card__body,
  .service-detail__copy,
  .form,
  .cal-placeholder,
  .contact__list,
  .values {
    padding-inline: 14px;
  }
  /* Homepage CTA escapes the 14px parent padding to go true edge-to-edge */
  .hero__cta {
    margin-inline: -14px;
    padding-inline: 0;
  }
  .hero__cta .btn { border-radius: 0; }
  /* Header keeps comfortable padding */
  .header__inner { padding-inline: 14px; }

  .display { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .display--sm { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .lede { font-size: 1rem; }

  /* Header — tighter packing, hide brand tagline so it never wraps */
  .brand__tag { display: none; }
  .brand__name { font-size: 1.2rem; }
  .header__inner { gap: .8rem !important; padding-block: .75rem; }
  .header__aside { gap: .5rem; }
  .lang button { padding: .45rem .55rem; font-size: .68rem; min-height: 36px; }

  /* Page-hero card stacks below text, max-height capped to stay readable */
  .page-hero > .container { grid-template-columns: 1fr !important; gap: 2rem; padding-inline: 0; }
  .page-hero__card { max-width: none; margin-inline: 0; width: 100%; border-radius: 0; }

  /* Homepage hero — true edge-to-edge.
     NOTE: do NOT add padding to .hero__copy here; padding lives on
     individual text children (see selectors above) so the CTA button
     and KPI card can extend to the screen edges. */
  .hero > .container { padding-inline: 0 !important; }
  .hero__card { border-radius: 0; box-shadow: none; }

  .clients__list { grid-template-columns: repeat(3, 1fr); row-gap: 2.4rem; max-width: none; }
  .client { min-height: 90px; }
  .client img { max-height: 70px; }

  .services { grid-template-columns: 1fr; }
  .sectors { grid-template-columns: 1fr 1fr; }

  /* Editorial strip stacks vertically */
  .strip { grid-template-columns: minmax(0, 1fr); }
  .strip__half { min-height: 280px; }
  .strip__half--img { aspect-ratio: 16 / 9; }

  /* Team caption shrinks */
  .team__caption { font-size: 1rem; left: 1.4rem; right: 1.4rem; bottom: 1.4rem; }
}

/* Phone — primary mobile pass */
@media (max-width: 640px) {
  /* Header */
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 1.15rem; }
  .brand__tag { font-size: .54rem; letter-spacing: 0.28em; margin-top: .25rem; }
  .header__aside { gap: .5rem; }
  .lang button {
    padding: .5rem .55rem;
    font-size: .68rem;
    min-height: 36px;
    min-width: 36px;
  }
  .menu-toggle { width: 44px; height: 44px; padding: 10px; }

  /* Hero — image becomes a top banner; text/KPI fully on cream below */
  .hero {
    padding: 240px 0 3rem; /* leaves room for the photo banner */
  }
  .hero::before {
    background-position: center 30%;
    height: 220px;
    inset: 0 0 auto 0;
    filter: grayscale(.45) contrast(1.05) brightness(.78);
  }
  .hero::after {
    background:
      linear-gradient(180deg,
        rgba(10,10,10,.20) 0%,
        rgba(10,10,10,.05) 60%,
        rgba(255,255,255,0) 75%,
        var(--paper) 100%),
      radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,169,97,.22), transparent 70%);
    height: 240px;
    inset: 0 0 auto 0;
  }
  .hero__grid { gap: 2rem; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: .9rem;
    margin-top: 2rem;
    margin-bottom: 1.6rem;
    margin-inline: -14px;  /* preserve edge-to-edge break-out from @820 */
    padding-inline: 0;
  }
  .hero__cta .btn { width: 100%; border-radius: 0; }
  .hero__cta .btn--link { text-align: center; }
  .hero__pills {
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .68rem;
  }
  .hero__pills-sep { display: none; }

  .hero__card {
    grid-template-columns: 1fr 1fr;
    padding: 1.6rem;
    gap: 1.6rem 1.2rem;
  }
  .kpi__num { font-size: 2.2rem; }
  .kpi__lbl { font-size: .74rem; }
  .kpi--quote p { font-size: .98rem; }

  /* Editorial strip — tighter internal padding so content fills the dark area */
  .strip__mark { font-size: 4.5rem; }
  .strip__half--quote { padding: 1.8rem 1.4rem; }
  .strip__half--quote p { font-size: 1.3rem; }

  /* Clients band */
  .clients { padding: 2.6rem 0 3rem; }
  .clients__list { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; gap: 1.4rem; max-width: none; }
  .client { min-height: 80px; }
  .client img { max-height: 60px; }
  .client__wordmark { font-size: 0.95rem; letter-spacing: 0.18em; }

  /* Trust strip removed */

  /* Sections */
  .section { padding: 3.5rem 0; }
  .section__head { margin-bottom: 2.2rem; }
  .display--sm { font-size: clamp(1.65rem, 7vw, 2.1rem); line-height: 1.12; }

  /* Services / sectors / steps */
  .services, .sectors { grid-template-columns: 1fr; }
  .service { padding: 1.6rem 1.4rem; }
  .service h3 { font-size: 1.3rem; }
  .service__badge {
    top: 1rem; right: 1rem;
    font-size: .58rem; padding: .25rem .5rem;
  }
  .sectors li { padding: 1.3rem 1.4rem; column-gap: 1rem; }
  .sectors li strong { font-size: 1.1rem; }

  .steps { grid-template-columns: 1fr; }
  .steps li { padding: 1.5rem 1.4rem; }
  .steps h4 { font-size: 1.2rem; }

  /* Team */
  .team__grid { gap: 2rem; }
  .team__visual { aspect-ratio: 4 / 3; max-width: 360px; }
  .facts { grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 1.8rem; padding-top: 1.6rem; }
  .facts dd { font-size: 1rem; }

  /* Contact */
  .contact__grid { gap: 2.2rem; }
  .contact__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.2rem;
    margin-top: 1.8rem;
  }
  .contact__list a, .contact__list address, .contact__list em { font-size: .98rem; }

  /* Contact widget — tabs full-width tap targets, slightly tighter form padding */
  .contact__widget { border-radius: 2px; }
  .contact__tab { min-height: 52px; }

  /* Cal.com booking placeholder */
  .cal-placeholder { padding: 1.6rem 1.3rem; }
  .cal-placeholder__title { font-size: 1.35rem; }
  .cal-placeholder__lede { font-size: .92rem; margin-bottom: 1.4rem; }
  .cal-placeholder__actions { gap: .8rem; }
  .cal-placeholder__note { font-size: .75rem; }


  /* Video frame on About */
  .video-frame figcaption { font-size: .85rem; padding: .8rem 1rem; }

  /* Services detail page — action buttons stack */
  .service-detail__action {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .7rem !important;
  }
  .service-detail__action .btn { width: 100%; text-align: center; }
  .service-detail__action .btn--link { padding: .8rem 0; }

  /* Article (blog post) */
  .article__hero { height: 220px; margin-bottom: 1.8rem; }
  .article__head .display { font-size: clamp(1.5rem, 6vw, 1.95rem); }
  .article__meta { font-size: .76rem; }

  /* Form */
  .form { padding: 1.5rem 1.3rem; gap: 1rem; }
  .field-row { grid-template-columns: 1fr; gap: 1rem; }
  .field label { font-size: .68rem; }
  .consent { font-size: .8rem; gap: .55rem; }

  /* Buttons */
  .btn { padding: .95rem 1.3rem; font-size: .85rem; min-height: 48px; }
  .btn--sm { min-height: 36px; padding: .55rem 1rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 1.6rem; padding-bottom: 2rem; }
  .site-footer h5 { margin-bottom: .6rem; }
  .footer__brand p { margin-top: .6rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: .4rem; }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 420px) {
  :root { --gutter: 14px; }

  .brand__tag { display: none; }
  .brand__name { font-size: 1.05rem; }
  .brand__mark { width: 32px; height: 32px; }

  .display { font-size: 2rem; }
  .display--sm { font-size: 1.55rem; }

  .hero__card { grid-template-columns: 1fr; gap: 1.4rem; }
  .contact__list { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }

  /* New components on tiny screens */
  .contact__tab { padding: .85rem .6rem; font-size: .64rem; letter-spacing: 0.1em; }
  .cal-placeholder { padding: 1.3rem 1rem; }
  .cal-placeholder__title { font-size: 1.2rem; }
  .post-card a, .post-card > div { padding: 0; }
  .post-card__body { padding: 1.2rem 1.1rem 1.4rem; }
  .article__hero { height: 180px; }
  .legal__head { padding-bottom: 1.4rem; margin-bottom: 1.8rem; }
}

/* Touch-only devices: drop hover-only effects */
@media (hover: none) {
  .service:hover { background: var(--paper); }
  .service--featured:hover { background: var(--ink); }
  .sectors li:hover { background: var(--paper); }
  .nav a:hover::after { transform: scaleX(0); }
  .btn--gold:hover::before { transform: translateY(101%); }
  .btn--gold:hover { color: var(--cream); border-color: var(--ink); }
  .btn--ghost:hover { background: transparent; color: var(--ink); }
  .btn--link:hover { color: var(--ink); border-color: var(--ink); }
}

/* iOS safe-area — only applied on tablet+ where gutter still exists.
   On mobile (<820px) we want true edge-to-edge so we skip the safe-area pad. */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(var(--gutter), env(safe-area-inset-left));
    padding-right: max(var(--gutter), env(safe-area-inset-right));
  }
  @media (min-width: 821px) {
    .container {
      padding-left: max(var(--gutter), env(safe-area-inset-left));
      padding-right: max(var(--gutter), env(safe-area-inset-right));
    }
  }
  .site-footer { padding-bottom: max(1.6rem, env(safe-area-inset-bottom)); }
  .mobile-nav { padding-bottom: max(1.5rem, env(safe-area-inset-bottom)); }
}

/* ============================================================
   PAGE HERO (about, services, approach, blog)
   ============================================================ */

/* Full-bleed editorial page hero — same pattern as homepage .hero */
.page-hero {
  position: relative;
  padding: clamp(3rem, 9vw, 8rem) 0 clamp(2.5rem, 6vw, 5rem);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  --hero-bg: url('assets/images/brussels.jpg');
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center right;
  filter: grayscale(.6) contrast(1.05) brightness(.92);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      var(--paper) 0%,
      var(--paper) 30%,
      rgba(255,255,255,.92) 50%,
      rgba(250,248,243,.55) 75%,
      rgba(250,248,243,.30) 100%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(201,169,97,.18), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.page-hero > .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
/* Single-column hero (no card on the right) */
.page-hero--single > .container {
  grid-template-columns: 1fr;
  max-width: 900px;
}
.page-hero__copy .display { max-width: 18ch; margin-bottom: 1.4rem; }
.page-hero__copy .lede { max-width: 56ch; margin-bottom: 0; }

/* Dark editorial card on the right — same look as .hero__card */
.page-hero__card {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 var(--gold), 0 30px 80px -30px rgba(10,10,10,.45);
}
.page-hero__card::after {
  content: ''; position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero__card .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.page-hero__card h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.25;
  margin: 0 0 1.2rem; color: var(--cream);
}
.page-hero__card ul { list-style: none; padding: 0; margin: 0; }
.page-hero__card li {
  padding: .7rem 0;
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0 1rem;
  align-items: baseline;
  font-size: .94rem;
}
.page-hero__card li:first-child { border-top: 0; padding-top: 0; }
.page-hero__card li strong {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  color: var(--gold);
  grid-row: 1 / span 2;
  align-self: start;
  padding-top: .1em;
}
.page-hero__card li span {
  color: var(--cream);
  display: block;
}
.page-hero__card li em {
  display: block;
  color: rgba(250,248,243,.7);
  font-style: normal;
  font-size: .82rem;
  margin-top: .2rem;
}

.page-hero__card a {
  color: var(--cream); border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.page-hero__card a:hover { border-color: var(--gold); }

/* Mobile: stack card under text, scaled photo at top */
@media (max-width: 1024px) {
  .page-hero > .container { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .page-hero { padding: 2rem 0 2.5rem; }
  .page-hero__copy .display { max-width: none; }
  .page-hero__copy .lede { font-size: .96rem; }
  .page-hero__card { padding: 1.4rem 1.2rem; max-width: 100%; }
  .page-hero__card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
  .page-hero__card li {
    grid-template-columns: 1.8rem 1fr;
    gap: 0 .8rem;
    font-size: .88rem;
    padding: .5rem 0;
  }
  .page-hero__card li em { font-size: .76rem; margin-top: .15rem; }
}

/* ============================================================
   ABOUT — intro + values
   ============================================================ */

.about__intro {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.about__intro p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.values {
  background: var(--cream);
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
}
.values h3 {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin: 0 0 1.4rem;
}
.values dl { margin: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.values dt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: .15rem;
}
.values dd {
  margin: 0;
  font-size: .9rem;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ============================================================
   SERVICE & STEP DETAIL PAGES
   ============================================================ */

.service-detail__grid,
.step-detail__grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 880px;
  margin-inline: auto;
}
.step-detail__grid {
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.step-detail__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 9vw, 6rem);
  line-height: 1;
  color: var(--gold);
  position: sticky;
  top: 100px;
}
.section--cream .step-detail__num { color: var(--gold-deep); }

.service-detail__copy h3,
.step-detail__grid h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  margin: 1.6rem 0 .7rem;
  color: var(--ink);
}
.service--featured h3,
.service-detail--featured h3 { color: var(--cream) !important; }

.service-detail__copy ul,
.step-detail__grid ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.service-detail__copy li,
.step-detail__grid li {
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}
.service-detail__copy li::before,
.step-detail__grid li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.section--cream .service-detail__copy li,
.section--cream .step-detail__grid li { color: var(--ink-soft); }

.service-detail--featured {
  background: var(--ink);
  color: var(--cream);
}
.service-detail--featured .lede { color: rgba(250,248,243,.78); }
.service-detail--featured li { color: rgba(250,248,243,.72); }
.service-detail--featured li::before { color: var(--gold); }

.service-detail__meta {
  margin-top: 2rem !important;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: .88rem !important;
  color: var(--ink-mute);
  line-height: 1.8;
}
.service-detail__meta strong { color: var(--gold-deep); }

@media (max-width: 640px) {
  .about__intro,
  .step-detail__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .step-detail__num { position: static; font-size: 3rem; }
  .values { padding: 1.4rem 1.5rem; }
}

/* ============================================================
   VIDEO PLAYER (about page)
   ============================================================ */

.video-frame {
  margin: 0;
  position: relative;
  background: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(10,10,10,.5);
  isolation: isolate;
}
.video-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--ink);
}
.video-frame figcaption {
  padding: 1rem 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--ink-mute);
  background: var(--paper);
  text-align: center;
  border-top: 1px solid var(--line);
}

/* ============================================================
   APPROACH BANNER (atmospheric strip)
   ============================================================ */

.approach-banner {
  position: relative;
  overflow: hidden;
  height: clamp(220px, 30vw, 360px);
  background: var(--ink);
}
.approach-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.5) contrast(1.05) brightness(.85);
}
.approach-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.25), rgba(10,10,10,.55));
  pointer-events: none;
}

/* ============================================================
   SERVICE DETAIL — with image variant
   ============================================================ */

.service-detail__grid--with-img {
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1180px;
  align-items: start;
}
.service-detail__grid--reverse { direction: rtl; }
.service-detail__grid--reverse > * { direction: ltr; }

.service-detail__img {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  box-shadow: 0 30px 60px -30px rgba(10,10,10,.35);
}
.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(.92);
}

@media (max-width: 900px) {
  .service-detail__grid--with-img { grid-template-columns: 1fr; }
  .service-detail__grid--reverse { direction: ltr; }
  .service-detail__img { position: static; aspect-ratio: 16/10; max-width: 600px; margin: 1.5rem auto 0; }
}

/* ============================================================
   BLOG INDEX
   ============================================================ */

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin-inline: auto;
}
.post-card { background: var(--paper); border: 1px solid var(--line); transition: border-color var(--t), transform var(--t); overflow: hidden; }
.post-card a, .post-card > div { display: grid; grid-template-columns: 280px 1fr; gap: 0; color: inherit; align-items: stretch; }
.post-card__thumb { margin: 0; height: 100%; overflow: hidden; background: var(--ink); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); filter: contrast(1.03) saturate(.92); }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__body { padding: 1.8rem 2rem; display: flex; flex-direction: column; justify-content: center; }
.post-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.post-card--placeholder { opacity: .6; cursor: default; }
.post-card--placeholder:hover { border-color: var(--line); transform: none; }
.post-card--placeholder .post-card__thumb img { filter: grayscale(1) contrast(1) brightness(.95); }

@media (max-width: 720px) {
  .post-card a, .post-card > div { grid-template-columns: 1fr; }
  .post-card__thumb { aspect-ratio: 16/9; }
  .post-card__body { padding: 1.4rem 1.4rem 1.6rem; }
}
.post-card__meta {
  font-size: .72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 1rem;
}
.post-card__meta span { color: var(--gold-deep); font-weight: 500; }
.post-card__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.25;
  margin: 0 0 .8rem;
  color: var(--ink);
}
.post-card__excerpt {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}
.post-card__cta {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

@media (max-width: 640px) {
  .post-card a, .post-card > div { padding: 1.5rem 1.4rem; }
}

/* ============================================================
   ARTICLE (blog post detail)
   ============================================================ */

.article { padding: 0 0 clamp(3rem, 7vw, 6rem); }
.article__hero {
  margin: 0 0 clamp(2rem, 5vw, 4rem);
  height: clamp(280px, 38vw, 460px);
  overflow: hidden;
  background: var(--ink);
}
.article__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(.92);
}
.article__inner { max-width: 720px; padding-top: clamp(1.5rem, 4vw, 3rem); }
.article__head { margin-bottom: 2.5rem; padding-bottom: 1.8rem; border-bottom: 1px solid var(--line); }
.article__meta {
  font-size: .82rem;
  color: var(--ink-mute);
  margin: 0 0 1.5rem;
}
.article__meta a { color: var(--gold-deep); border-bottom: 1px solid transparent; }
.article__meta a:hover { border-color: var(--gold-deep); }
.article__head .display { margin-top: 0; }
.article__head .lede { margin-bottom: 0; }

.article section {
  margin: 2.5rem 0;
  scroll-margin-top: 100px;
}
.article h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.2;
  margin: 2.5rem 0 1rem;
}
.article h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 1.8rem 0 .7rem;
  color: var(--ink-soft);
}
.article p, .article li {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.article p { margin: 0 0 1.1rem; }
.article ul { padding-left: 1.4rem; margin: 0 0 1.4rem; }
.article li { margin-bottom: .35rem; }
.article strong { color: var(--ink); }
.article em { font-style: italic; }

.article__cta {
  margin: 3rem 0 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.article__cta p { margin: 0 0 1.2rem; }
.article__disclaimer {
  font-size: .82rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-top: 2rem;
}

/* ============================================================
   LEGAL PAGES (privacy.html, terms.html)
   Reading-optimised, single-column, serif headings.
   ============================================================ */

.legal {
  background: var(--paper);
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
}
.legal__inner {
  max-width: 760px;
}
.legal__head {
  padding-bottom: 2.2rem;
  margin-bottom: 2.6rem;
  border-bottom: 1px solid var(--line);
}
.legal__head .display { margin-bottom: 1rem; }
.legal__meta {
  margin: 0;
  font-size: .82rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.legal__toc {
  background: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 1.6rem 1.8rem;
  margin: 0 0 3rem;
}
.legal__toc strong {
  display: block;
  font-size: .68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}
.legal__toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.legal__toc li {
  padding: .25rem 0;
  break-inside: avoid;
}
.legal__toc a {
  font-size: .92rem;
  color: var(--ink-soft);
  border-bottom: 1px dotted transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.legal__toc a:hover { color: var(--ink); border-color: var(--gold); }

.legal section {
  margin: 0 0 2.8rem;
  scroll-margin-top: 100px;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 1.95rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -.005em;
}
.legal h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  margin: 1.6rem 0 .6rem;
  color: var(--ink-soft);
}
.legal p, .legal li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal p { margin: 0 0 1rem; }
.legal ul {
  padding-left: 1.4rem;
  margin: 0 0 1rem;
}
.legal li { margin-bottom: .35rem; }
.legal a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  transition: color var(--t-fast);
}
.legal a:hover { color: var(--gold-deep); }
.legal code {
  background: var(--cream-soft);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: .9em;
  color: var(--ink);
}

.legal__card {
  background: var(--cream);
  padding: 1.2rem 1.4rem;
  border-left: 2px solid var(--gold);
  font-size: .95rem;
  line-height: 1.6;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: .6rem 0 1.4rem;
  font-size: .9rem;
}
.legal__table th,
.legal__table td {
  padding: .65rem .8rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal__table th {
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--cream);
}
.legal__table td code { font-size: .82em; }

.legal__bottom {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--ink-mute);
}
.legal__bottom p { margin: .5rem 0; }

/* ============================================================
   COOKIE BANNER
   Minimal, slides up from bottom-left, dismissible.
   ============================================================ */

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  right: clamp(12px, 2vw, 24px);
  max-width: 460px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px -10px rgba(10,10,10,.45);
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition: transform 380ms cubic-bezier(.2,.7,.2,1), opacity 280ms ease;
  isolation: isolate;
}
.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius) var(--radius) 0 0;
}
.cookie-banner--in {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner {
  padding: 1.1rem 1.3rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cookie-banner__copy { flex: 1; min-width: 0; }
.cookie-banner__copy strong {
  display: block;
  font-size: .68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .35rem;
}
.cookie-banner__copy p {
  margin: 0;
  font-size: .82rem;
  line-height: 1.5;
  color: rgba(250,248,243,.84);
}
.cookie-banner__copy a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,97,.4);
  transition: border-color var(--t-fast);
}
.cookie-banner__copy a:hover { border-color: var(--gold); }
.cookie-banner__cta {
  flex-shrink: 0;
  font: 500 .72rem var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: 0;
  padding: .65rem 1.05rem;
  border-radius: var(--radius);
  cursor: pointer;
  min-height: 40px;
  transition: background var(--t-fast);
}
.cookie-banner__cta:hover { background: var(--cream); }

@media (max-width: 520px) {
  .cookie-banner__inner { flex-direction: column; gap: .8rem; padding: 1rem 1.1rem; }
  .cookie-banner__cta { width: 100%; min-height: 44px; }
}

/* Responsive legal pages */
@media (max-width: 640px) {
  .legal__toc ol { columns: 1; }
  .legal__table { font-size: .82rem; display: block; overflow-x: auto; }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1),
              transform 700ms cubic-bezier(.2,.7,.2,1);
}
.reveal--in {
  opacity: 1;
  transform: none;
}

/* Header scroll state */
.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(10,10,10,.15);
}

/* Header above mobile menu overlay */
body.menu-open .site-header {
  background: var(--cream);
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
