/* ==========================================================================
   EASY MOVING — styles.css
   Concept: “Editorial warmth for everyone.”
   Fraunces (display) + Inter (UI/body) · Ink + Warm Cream + one magenta accent
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600&family=Inter:wght@400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */

:root {
  /* — Colour ------------------------------------------------------------- */
  --ink:            #17161A;
  --ink-soft:       #2A282E;
  --cream:          #F7F1E7;
  --cream-deep:     #EFE6D8;
  --white:          #FFFFFF;
  --stone:          #E4DAD0;
  --stone-strong:   #D3C6B8;
  --muted:          #5F5A54;

  --accent:         #D6006D;   /* primary CTA */
  --accent-strong:  #A60055;   /* hover / small text-safe */
  --magenta:        #EB088A;   /* decorative fills only */
  --green:          #2F7D32;   /* success tags / “5j+” */
  --green-soft:     #EAF3EA;
  --blue:           #005A8C;   /* info + utility links */

  --line:           var(--stone);
  --line-soft:      rgba(23, 22, 26, 0.08);

  /* — Typography --------------------------------------------------------- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Modular scale, rem-based (1rem = 16px) */
  --fs-xs:    0.75rem;    /* 12 */
  --fs-sm:    0.875rem;   /* 14 */
  --fs-base:  1rem;       /* 16 */
  --fs-md:    1.0625rem;  /* 17 */
  --fs-lg:    1.125rem;   /* 18 */
  --fs-xl:    1.375rem;   /* 22 */
  --fs-2xl:   1.5rem;     /* 24 */
  --fs-3xl:   2rem;       /* 32 */
  --fs-4xl:   2.5rem;     /* 40 */
  --fs-5xl:   3.25rem;    /* 52 */
  --fs-6xl:   4rem;       /* 64 */
  --fs-7xl:   5rem;       /* 80 */

  --lh-tight: 0.95;
  --lh-snug:  1.15;
  --lh-body:  1.7;

  /* — Spacing: 8pt scale -------------------------------------------------- */
  --s-1:  0.5rem;   /*  8 */
  --s-2:  1rem;     /* 16 */
  --s-3:  1.5rem;   /* 24 */
  --s-4:  2rem;     /* 32 */
  --s-5:  2.5rem;   /* 40 */
  --s-6:  3rem;     /* 48 */
  --s-7:  3.5rem;   /* 56 */
  --s-8:  4rem;     /* 64 */
  --s-9:  4.5rem;   /* 72 */
  --s-10: 5.5rem;   /* 88 */
  --s-11: 6.5rem;   /* 104 */
  --s-12: 8rem;     /* 128 */

  --section-y: var(--s-5);      /* mobile */
  --gutter:    clamp(1.25rem, 5vw, 2rem);

  /* — Radii --------------------------------------------------------------- */
  --r-xs:  6px;
  --r-sm:  10px;
  --r:     12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-pill: 999px;

  /* — Elevation (layered, never generic) ---------------------------------- */
  --shadow-1: 0 1px 0 var(--stone), 0 10px 26px -20px rgba(23, 22, 26, 0.35);
  --shadow-2: 0 2px 0 var(--stone), 0 28px 52px -32px rgba(23, 22, 26, 0.42);
  --shadow-lift: 0 40px 70px -48px rgba(23, 22, 26, 0.6);
  --shadow-ink: 0 30px 60px -34px rgba(23, 22, 26, 0.55);
  --shadow-accent: 0 26px 48px -26px rgba(214, 0, 109, 0.62);

  /* — Signature device ---------------------------------------------------- */
  /* Chamfered corner: a single, repeatable editorial “cut” used on all media */
  --chamfer: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  --chamfer-lg: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 0 100%);
  --chamfer-sm: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);

  --ease: cubic-bezier(0.22, 0.72, 0.22, 1);
  --dur: 0.42s;

  --header-h: 76px;
  --maxw: 1264px;
}

/* --------------------------------------------------------------------------
   2. BASE / RESET
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Global film grain — a whisper of texture over the whole canvas */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.075;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

img { height: auto; border-style: none; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent-strong);
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--accent); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

::selection {
  background: var(--accent);
  color: var(--white);
}

/* Focus — always visible, always the same shape */
:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */

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

.section {
  position: relative;
  padding-block: var(--section-y);
}

.section + .section { border-top: 1px solid var(--line-soft); }

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-2);
  z-index: 999;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--r);
  box-shadow: var(--shadow-2);
  transition: top 0.25s var(--ease);
}
.skip-link:focus {
  top: var(--s-2);
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   4. SCROLL REVEAL (subtle, tasteful)
   -------------------------------------------------------------------------- */

[data-reveal],
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal],
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   5. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 241, 231, 0.82);
  -webkit-backdrop-filter: saturate(1.5) blur(16px);
  backdrop-filter: saturate(1.5) blur(16px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 241, 231, 0.96);
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: var(--header-h);
}

/* — Brand ---------------------------------------------------------------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }

.brand img {
  width: auto;
  height: 44px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* — Primary nav ---------------------------------------------------------- */

.primary-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 190;
  width: min(88vw, 380px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-5);
  padding: calc(var(--header-h) + var(--s-4)) var(--s-4) var(--s-5);
  background: var(--cream);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-ink);
  transform: translateX(102%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
}
.primary-nav.is-open { transform: translateX(0); }

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-list a {
  position: relative;
  display: block;
  padding: 0.7rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--dur) var(--ease);
}
.nav-list a:hover {
  color: var(--accent-strong);
  padding-left: 6px;
}
.nav-list a:hover::after { width: 42px; }

.nav-list a[aria-current="page"] { color: var(--accent-strong); }

/* — Utility cluster ------------------------------------------------------ */

.nav-utility {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}

.nav-search {
  display: none;
  align-items: center;
  gap: 0.5rem;
  height: 44px;
  padding: 0 0.9rem;
  background: transparent;
  border: 1.5px solid var(--stone);
  border-radius: var(--r-pill);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-search:focus-within,
.nav-search:hover {
  border-color: var(--ink);
  background: var(--white);
}
.nav-search input {
  width: 8.5rem;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--ink);
  outline: none;
}
.nav-search input::placeholder { color: var(--muted); }
.nav-search svg { width: 16px; height: 16px; flex: none; color: var(--muted); }

/* — Mobile toggle -------------------------------------------------------- */

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0 0.9rem;
  background: transparent;
  border: 1.5px solid var(--stone);
  border-radius: var(--r);
  color: var(--ink);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-toggle:hover { border-color: var(--ink); }

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  flex: none;
  background: currentColor;
  border-radius: 2px;
  transition: background 0.25s var(--ease);
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top: 6px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { top: 0; transform: rotate(-45deg); }

.nav-toggle-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* — Desktop navigation --------------------------------------------------- */

@media (min-width: 992px) {

  .nav-toggle { display: none; }

  .nav-search { display: inline-flex; }

  .primary-nav {
    position: static;
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: var(--s-4);
    padding: 0;
    background: transparent;
    border-left: 0;
    box-shadow: none;
    transform: none;
    overflow: visible;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: clamp(0.75rem, 1.8vw, 1.6rem);
  }

  .nav-list a {
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-bottom: 0;
  }
  .nav-list a:hover { padding-left: 0; }
  .nav-list a::after { bottom: -2px; }
  .nav-list a:hover::after,
  .nav-list a[aria-current="page"]::after { width: 100%; }
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: transparent;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 48px;
  padding: 0 var(--s-3);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  --btn-bg: var(--accent);
  --btn-fg: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  --btn-bg: var(--accent-strong);
  --btn-fg: var(--white);
  color: var(--white);
}

.btn-secondary {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--ink);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  --btn-bg: var(--ink);
  --btn-fg: var(--cream);
  color: var(--cream);
}

.btn-ghost {
  --btn-bg: rgba(247, 241, 231, 0.06);
  --btn-fg: var(--cream);
  --btn-bd: rgba(247, 241, 231, 0.5);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  --btn-bg: var(--cream);
  --btn-fg: var(--ink);
  --btn-bd: var(--cream);
  color: var(--ink);
}

.btn-sm {
  min-height: 40px;
  padding: 0 var(--s-2);
  font-size: 0.8rem;
  border-radius: var(--r-sm);
}

/* --------------------------------------------------------------------------
   7. TYPOGRAPHIC DEVICES
   -------------------------------------------------------------------------- */

.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 var(--s-2);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.overline::before {
  content: "";
  width: 28px;
  height: 2px;
  flex: none;
  background: currentColor;
}

.overline-light { color: var(--cream); }
.overline-light::before { background: var(--cream); opacity: 0.7; }

.section-title {
  margin: 0 0 var(--s-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent-strong);
}

.lead {
  margin: 0 0 var(--s-3);
  font-size: clamp(1.075rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 58ch;
}

.body {
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--muted);
  max-width: 62ch;
}

.meta {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(600px, 92svh, 860px);
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  filter: grayscale(0.18) contrast(1.06) saturate(1.05);
  transform: scale(1.06);
  animation: heroDrift 22s var(--ease) forwards;
}

@keyframes heroDrift {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      118deg,
      rgba(23, 22, 26, 0.9) 0%,
      rgba(23, 22, 26, 0.68) 40%,
      rgba(23, 22, 26, 0.22) 76%,
      rgba(23, 22, 26, 0.38) 100%
    ),
    linear-gradient(to top, rgba(23, 22, 26, 0.62) 0%, rgba(23, 22, 26, 0) 52%);
}

/* Duotone whisper: magenta blended into the shadows */
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  mix-blend-mode: soft-light;
  opacity: 0.34;
}

/* Signature spine: a magenta rule that anchors the hero copy */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(6rem, 15vh, 10rem) var(--gutter) clamp(4.5rem, 11vh, 7.5rem);
}

.hero-copy {
  position: relative;
  max-width: 44ch;
  padding-left: clamp(1rem, 2.4vw, 1.75rem);
  color: var(--cream);
}
.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(
    to bottom,
    var(--accent) 0%,
    var(--magenta) 55%,
    rgba(235, 8, 138, 0) 100%
  );
}

.hero-title {
  margin: 0 0 var(--s-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: var(--lh-tight);
  letter-spacing: -0.03em;
  color: var(--cream);
  text-wrap: balance;
}

.hero-title em {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  color: var(--magenta);
  /* slight optical tilt — an editorial signature */
  transform: skewX(-2deg);
}

.hero-sub {
  margin: 0 0 var(--s-5);
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.65;
  color: rgba(247, 241, 231, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
}

/* — Stamp badge ---------------------------------------------------------- */

.hero-badge {
  position: absolute;
  top: clamp(6.5rem, 17vh, 11rem);
  right: clamp(1.25rem, 6vw, 5rem);
  display: none;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-accent);
  transform: rotate(-8deg);
  transition: transform var(--dur) var(--ease);
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}
.hero-badge:hover { transform: rotate(-3deg) scale(1.04); }

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.badge-txt {
  display: block;
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (min-width: 860px) {
  .hero-badge { display: grid; }
}

/* --------------------------------------------------------------------------
   9. INTRO / TRUST
   -------------------------------------------------------------------------- */

.section-intro { background: var(--cream); }

.intro-grid {
  display: grid;
  gap: var(--s-6);
  align-items: center;
}

.intro-media {
  position: relative;
  clip-path: var(--chamfer-lg);
  background: var(--stone);
  box-shadow: var(--shadow-2);
  isolation: isolate;
}
.intro-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.02);
  transition: transform 1.1s var(--ease);
}
.intro-media:hover img { transform: scale(1.035); }

/* Duotone scrim on intro media */
.intro-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    200deg,
    rgba(214, 0, 109, 0.22) 0%,
    rgba(23, 22, 26, 0.28) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.intro-copy {
  position: relative;
}

.intro-copy .section-title { max-width: 18ch; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-2);
  margin: var(--s-5) 0 0;
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}

.stat {
  position: relative;
  padding-right: var(--s-2);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.intro-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-5);
}

@media (min-width: 768px) {
  :root { --section-y: var(--s-7); }
}

@media (min-width: 992px) {
  :root { --section-y: var(--s-10); }

  .intro-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .intro-media {
    transform: translateY(-1.25rem);
  }
  .intro-media img { aspect-ratio: 3 / 4; }
}

/* --------------------------------------------------------------------------
   10. FEATURED ANNOUNCEMENTS
   -------------------------------------------------------------------------- */

.section-announce { background: var(--cream-deep); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  max-width: 62ch;
}
.section-head .overline { margin-bottom: 0; }

.section-head-split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.section-head-split .section-title { margin-bottom: 0; }

.announce-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.card-feature {
  background: var(--ink);
  border-color: transparent;
  color: var(--cream);
}
.card-feature .card-title,
.card-feature .card-text { color: var(--cream); }
.card-feature .card-text { color: rgba(247, 241, 231, 0.78); }
.card-feature .meta { color: rgba(247, 241, 231, 0.62); }

.card-media {
  position: relative;
  overflow: hidden;
  background: var(--stone);
  clip-path: var(--chamfer);
}
.card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.card:hover .card-media img { transform: scale(1.05); }

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(23, 22, 26, 0.55) 0%,
    rgba(23, 22, 26, 0.08) 46%,
    rgba(23, 22, 26, 0) 70%
  );
  pointer-events: none;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-4) var(--s-4) var(--s-5);
  flex: 1 1 auto;
}

.card-body .meta { margin: 0; }

.card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.card-text {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--muted);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.7rem;
  background: rgba(23, 22, 26, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.tag-success {
  background: var(--green-soft);
  border-color: rgba(47, 125, 50, 0.24);
  color: var(--green);
}

.card-feature .tag {
  background: rgba(247, 241, 231, 0.08);
  border-color: rgba(247, 241, 231, 0.2);
  color: rgba(247, 241, 231, 0.86);
}
.card-feature .tag-success {
  background: rgba(47, 125, 50, 0.22);
  border-color: rgba(120, 200, 124, 0.4);
  color: #A9DFAC;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  margin-top: auto;
  padding-top: var(--s-3);
}

.card-feature .btn-secondary {
  --btn-fg: var(--cream);
  --btn-bd: rgba(247, 241, 231, 0.55);
}
.card-feature .btn-secondary:hover {
  --btn-bg: var(--cream);
  --btn-fg: var(--ink);
  --btn-bd: var(--cream);
  color: var(--ink);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent-strong);
  white-space: nowrap;
}
.link-arrow::after {
  content: "";
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: width var(--dur) var(--ease);
}
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover::after { width: 30px; }

@media (min-width: 860px) {
  .announce-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    gap: var(--s-5);
  }
  .card-media img { aspect-ratio: 16 / 11; }
  .card-feature .card-media img { aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------------------------
   11. LESSONS / SCHEDULE
   -------------------------------------------------------------------------- */

.section-lessons { background: var(--cream); }

.lesson-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}

.lesson-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: var(--s-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.lesson-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur) var(--ease);
}
.lesson-card:hover {
  transform: translateY(-4px);
  border-color: var(--stone-strong);
  box-shadow: var(--shadow-1);
}
.lesson-card:hover::before { transform: scaleY(1); }

.lesson-eyebrow {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.lesson-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.lesson-text {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--muted);
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}

.quick-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.quick-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.quick-links a:hover { color: var(--accent-strong); }
.quick-links a:hover::before { opacity: 1; transform: scale(1.4); }

@media (min-width: 680px) {
  .lesson-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 992px) {
  .lesson-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-4); }
}

/* --------------------------------------------------------------------------
   12. TIMELINE / PLANNING
   -------------------------------------------------------------------------- */

.section-timeline {
  background: var(--ink);
  color: var(--cream);
}
.section-timeline .section-title,
.section-timeline .timeline-title { color: var(--cream); }
.section-timeline .section-title em { color: var(--magenta); }
.section-timeline .lead { color: rgba(247, 241, 231, 0.78); }
.section-timeline .overline { color: var(--magenta); }
.section-timeline .overline::before { background: var(--magenta); opacity: 1; }

.timeline-layout {
  display: grid;
  gap: var(--s-6);
  align-items: start;
}

.timeline-head { max-width: 46ch; }

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline-item {
  position: relative;
  padding: 0 0 var(--s-6) var(--s-6);
  border-left: 1.5px solid rgba(247, 241, 231, 0.18);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -6.5px;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px rgba(235, 8, 138, 0.35);
}
.timeline-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.timeline-date {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--magenta);
}

.timeline-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.timeline-text {
  margin: 0;
  font-size: var(--fs-base);
  line-height: 1.65;
  color: rgba(247, 241, 231, 0.68);
  max-width: 34ch;
}

@media (min-width: 992px) {
  .timeline-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(3rem, 6vw, 5rem);
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s-5);
    padding-top: var(--s-6);
    border-top: 1.5px solid rgba(247, 241, 231, 0.18);
  }

  .timeline-item {
    padding: 0;
    border-left: 0;
  }

  .timeline-item::before {
    left: 0;
    top: calc(-1 * var(--s-6) - 6px);
    box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px rgba(235, 8, 138, 0.35);
  }

  .timeline-text { max-width: none; }
}

/* --------------------------------------------------------------------------
   13. EVENTS / PERFORMANCES / WORKSHOPS
   -------------------------------------------------------------------------- */

.section-events { background: var(--cream); }

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

.event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
  padding: var(--s-4);
  overflow: hidden;
  border-radius: var(--r-lg);
  clip-path: var(--chamfer);
  background: var(--ink);
  color: var(--cream);
  isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.event-card:focus-within { outline: 2px solid var(--ink); outline-offset: 3px; }

.event-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.1) contrast(1.05);
  transition: transform 1.2s var(--ease);
}
.event-card:hover > img { transform: scale(1.06); }

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(23, 22, 26, 0.92) 0%, rgba(23, 22, 26, 0.42) 48%, rgba(23, 22, 26, 0.06) 100%);
}

.event-card .meta {
  color: var(--magenta);
  margin: 0 0 0.4rem;
}
.event-card .card-title { color: var(--cream); }
.event-card .card-text { color: rgba(247, 241, 231, 0.76); }

.event-card-tall { min-height: 420px; }

@media (min-width: 720px) {
  .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-card { min-height: 340px; }
  .event-card-tall { min-height: 420px; }
}

@media (min-width: 1024px) {
  .event-grid {
    grid-template-columns: 1.45fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(190px, auto));
    gap: var(--s-4);
  }
  .event-card {
    min-height: 0;
    height: 100%;
    grid-row: span 1;
  }
  .event-card-tall {
    grid-row: 1 / -1;
    min-height: 0;
  }
  .event-card-tall .card-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
}

/* --------------------------------------------------------------------------
   14. SUPPORTING BLOCKS (team · pricing · partners · contact · footer)
   -------------------------------------------------------------------------- */

.section-team { background: var(--cream-deep); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3);
}

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

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  clip-path: var(--chamfer-sm);
  background: var(--stone);
  filter: contrast(1.03);
  transition: transform 0.9s var(--ease);
}
.team-card:hover img { transform: translateY(-4px); }

.team-card h3 {
  margin: 0.75rem 0 0;
  font-size: var(--fs-xl);
}

.team-card p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-4); }
}
@media (min-width: 1100px) {
  .team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* — Pricing -------------------------------------------------------------- */

.section-pricing { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-5) var(--s-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.price-card-featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.price-card-featured h3,
.price-card-featured .price-amount { color: var(--cream); }
.price-card-featured p,
.price-card-featured li { color: rgba(247, 241, 231, 0.78); }

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-amount span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 0.5rem;
}

.price-list {
  display: grid;
  gap: 0.55rem;
  margin: var(--s-2) 0 var(--s-3);
}
.price-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--fs-base);
  color: var(--muted);
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.discount-note {
  margin-top: var(--s-4);
  font-size: var(--fs-sm);
  color: var(--muted);
  max-width: 70ch;
}

@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  .price-card-featured { transform: translateY(-12px); }
  .price-card-featured:hover { transform: translateY(-16px); }
}

/* — Partners / certifications -------------------------------------------- */

.section-partners {
  background: var(--cream-deep);
  padding-block: var(--s-7);
}

.partner-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-4) var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line);
}

.partner-strip img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.85);
  opacity: 0.55;
  transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.partner-strip img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-3px);
}

/* — Good to know --------------------------------------------------------- */

.section-assure { background: var(--cream); }

.assure-grid {
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-5);
}

.assure-item {
  padding-top: var(--s-3);
  border-top: 2px solid var(--ink);
}
.assure-item h3 {
  margin: 0 0 0.4rem;
  font-size: var(--fs-xl);
}
.assure-item p {
  margin: 0;
  color: var(--muted);
  font-size: var(--fs-base);
}

@media (min-width: 800px) {
  .assure-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-5); }
}

/* — Contact -------------------------------------------------------------- */

.section-contact {
  background: var(--ink);
  color: var(--cream);
}
.section-contact .section-title { color: var(--cream); }
.section-contact .section-title em { color: var(--magenta); }
.section-contact .lead { color: rgba(247, 241, 231, 0.78); }
.section-contact .overline { color: var(--magenta); }
.section-contact .overline::before { background: var(--magenta); opacity: 1; }

.contact-grid {
  display: grid;
  gap: var(--s-6);
}

.contact-details {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.contact-details a {
  color: var(--cream);
  font-weight: 500;
}
.contact-details a:hover { color: var(--magenta); }
.contact-details dt {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 241, 231, 0.55);
  margin-bottom: 0.25rem;
}
.contact-details dd {
  margin: 0;
  font-size: var(--fs-lg);
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: var(--s-3);
  padding: var(--s-5);
  background: rgba(247, 241, 231, 0.05);
  border: 1px solid rgba(247, 241, 231, 0.16);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 241, 231, 0.7);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  min-height: 48px;
  background: rgba(23, 22, 26, 0.35);
  border: 1.5px solid rgba(247, 241, 231, 0.22);
  border-radius: var(--r);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(247, 241, 231, 0.42); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--magenta);
  background: rgba(23, 22, 26, 0.6);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.map-frame {
  position: relative;
  margin-top: var(--s-4);
  border-radius: var(--r-lg);
  clip-path: var(--chamfer);
  overflow: hidden;
  border: 1px solid rgba(247, 241, 231, 0.16);
}
.map-frame iframe,
.map-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); }
}

/* — Footer --------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(247, 241, 231, 0.72);
  padding-block: var(--s-6) var(--s-5);
  border-top: 1px solid rgba(247, 241, 231, 0.12);
  font-size: var(--fs-sm);
}

.footer-grid {
  display: grid;
  gap: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid rgba(247, 241, 231, 0.12);
}

.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-name small { color: rgba(247, 241, 231, 0.5); }

.footer-col h4 {
  margin: 0 0 var(--s-2);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 241, 231, 0.5);
}

.footer-col ul { display: grid; gap: 0.5rem; }

.footer-col a,
.site-footer a {
  color: rgba(247, 241, 231, 0.82);
}
.footer-col a:hover,
.site-footer a:hover { color: var(--magenta); }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: var(--s-3);
}
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(247, 241, 231, 0.2);
  border-radius: 50%;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.social-row a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-2);
  padding-top: var(--s-4);
  font-size: var(--fs-xs);
  color: rgba(247, 241, 231, 0.5);
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.footer-bottom button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom button:hover { color: var(--magenta); }

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-6); }
}

/* --------------------------------------------------------------------------
   15. COOKIE / OVERLAY UTILITY
   -------------------------------------------------------------------------- */

.cookie-bar {
  position: fixed;
  left: var(--gutter);
  right: var(--gutter);
  bottom: var(--s-2);
  z-index: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  max-width: 900px;
  margin-inline: auto;
  padding: var(--s-3) var(--s-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lift);
}
.cookie-bar p {
  flex: 1 1 260px;
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE GUARDRAILS — nothing important ever disappears
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) {
  .hero-copy { max-width: 46ch; }
  .hero-sub { font-size: 1.25rem; }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #453F3A;
    --line: #B9AB9C;
  }
  .hero-sub { color: #FFFFFF; }
}

@media print {
  .site-header,
  .cookie-bar,
  .hero-badge,
  .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  body::after { display: none; }
}