/* ─────────────────────────────────────────────────────────────
   Africa Queens & Kings — v2 design system
   Cream + Pan-African green + gold + ink · Mulish · soft humanist
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette */
  --cream:    #FAF9F6;
  --cream-2:  #F1ECDE;
  --cream-3:  #E6DFCB;
  --ink:      #0B1215;
  --ink-2:    #2A2D2F;
  --ink-soft: #5A5D60;
  --rule:     rgba(11,18,21,0.12);
  --rule-2:   rgba(11,18,21,0.22);

  --green:      #00A651;
  --green-deep: #007A3D;
  --green-soft: #C9E9D5;

  --gold:      #FFD200;
  --gold-deep: #C9A300;
  --gold-soft: #FFF1A8;

  /* Type */
  --sans: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --pad-x: clamp(20px, 5vw, 96px);
  --section-y: clamp(80px, 11vw, 160px);
  --radius: 4px;

  /* Tweak-controlled accents */
  --accent: var(--green);
  --accent-deep: var(--green-deep);
  --accent-soft: var(--green-soft);
}

[data-accent="green"] { --accent: var(--green); --accent-deep: var(--green-deep); --accent-soft: var(--green-soft); }
[data-accent="gold"]  { --accent: var(--gold-deep); --accent-deep: #8C7300; --accent-soft: var(--gold-soft); }
[data-accent="ink"]   { --accent: var(--ink); --accent-deep: #000; --accent-soft: var(--cream-3); }

[data-density="airy"]        { --section-y: clamp(120px, 14vw, 220px); }
[data-density="comfortable"] { --section-y: clamp(80px, 11vw, 160px); }
[data-density="tight"]       { --section-y: clamp(56px, 8vw, 110px); }

[data-patterns="off"] .pattern { display: none; }
[data-patterns="off"] .deco-band { display: none; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; font-weight: 500; color: var(--accent); }
strong { font-weight: 600; }
::selection { background: var(--accent); color: var(--cream); }

/* ── Typography utilities ────────────────────────────────── */
.display {
  font-weight: 200;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin: 0;
  text-wrap: pretty;
}
.display-2 {
  font-weight: 250;
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0;
}
.title-l {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.014em;
  margin: 0;
}
.title-m {
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  margin: 0;
}
.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow .eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 22%, transparent);
}
.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.55;
  font-weight: 400;
}
.mono-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--accent); color: var(--cream); }
.btn-accent { background: var(--accent); color: var(--cream); }
.btn-accent:hover { background: var(--accent-deep); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-deep); color: var(--ink); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light { border-color: var(--cream); color: var(--cream); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn-block { width: 100%; justify-content: center; padding: 18px; }

.btn .arrow {
  width: 14px; height: 14px;
  display: inline-block;
  transition: transform .25s;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 16px var(--pad-x);
  background: color-mix(in oklch, var(--cream) 86%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, padding .25s, background .25s;
}
.nav.scrolled {
  border-bottom-color: var(--rule);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.brand-mark {
  display: inline-flex;
  width: 50px; height: 36px;
  border-radius: 50%;
  /*background: var(--accent);*/
  align-items: center; justify-content: center;
  color: var(--cream);
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid var(--cream);
  opacity: 0.6;
}
.brand-mark svg { position: relative; z-index: 1; }
.brand-words {
  display: flex; flex-direction: column;
  line-height: 1;
}
.brand-line-1 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-line-2 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}

.nav-links {
  display: flex; gap: 28px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--ink-2);
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active::after { background: var(--accent); }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

.nav-burger {
  display: none;
  background: none; border: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer; padding: 0;
  align-items: center;
}
.nav-burger span {
  display: block; height: 1.5px; width: 22px; background: var(--ink);
  transition: transform .25s, opacity .2s;
}

@media (max-width: 960px) {
  /* Solid bar — eliminates the frosted "white overlay" look on mobile */
  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 100;
    transition: background .3s ease, border-color .25s, padding .25s;
  }
  /* Bar transitions to dark ink when menu is open */
  .nav.open {
    background: var(--ink);
    border-bottom-color: transparent;
  }
  /* Brand and burger stay above the overlay within nav's stacking context */
  .nav-brand { position: relative; z-index: 2; transition: color .3s; }
  .nav.open .nav-brand { color: var(--cream); }
  .nav.open .brand-line-2 { color: color-mix(in oklch, var(--cream) 55%, transparent); }
  .nav-burger { display: flex; position: relative; z-index: 2; justify-self: end; }
  .nav.open .nav-burger span { background: var(--cream); }

  /* Full-screen dark overlay — slides down from the top */
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    /* padding-top clears the nav bar height */
    padding: 80px var(--pad-x) 60px;
    overflow-y: auto;
    align-items: flex-start;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  }
  .nav-links a {
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 200;
    letter-spacing: -0.01em;
    padding: 18px 0;
    border-bottom: 1px solid color-mix(in oklch, var(--cream) 14%, transparent);
    width: 100%;
    color: color-mix(in oklch, var(--cream) 65%, transparent);
    transition: color .2s;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover { color: var(--cream); }
  .nav-links a.active { color: var(--accent); }
  .nav-links a::after { display: none; }
  .nav.open .nav-links { transform: translateY(0); }
  .nav-cta { display: none; }
  .nav.open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* ── Section frame ───────────────────────────────────────── */
.section { padding: var(--section-y) var(--pad-x); position: relative; }
.section.tight { padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px); }
.section.dark { background: var(--ink); color: var(--cream); }
.section.dark .eyebrow { color: color-mix(in oklch, var(--cream) 65%, transparent); }
.section.dark .lede { color: color-mix(in oklch, var(--cream) 78%, transparent); }
.section.dark em { color: var(--gold); }
.section.cream-2 { background: var(--cream-2); }

.section-head { margin-bottom: 64px; max-width: 1100px; }
.section-head .eyebrow { margin-bottom: 28px; }

/* ── Patterns (African geometric, abstract) ──────────────── */
.pattern {
  background-repeat: repeat;
  background-position: center;
}
/* Triangle row band */
.pattern-triangles {
  --c1: var(--ink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 24'><path d='M0 24 L15 0 L30 24 Z M30 0 L45 24 L60 0 Z' fill='%23000'/></svg>");
  background-color: transparent;
  background-size: 60px 24px;
}
.pattern-diamonds {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M16 4 L28 16 L16 28 L4 16 Z M16 10 L22 16 L16 22 L10 16 Z' fill='%23000'/></svg>");
  background-size: 32px 32px;
}
.pattern-stripes {
  background-image: linear-gradient(90deg, currentColor 1px, transparent 1px, transparent 6px);
  background-size: 6px 100%;
}
.pattern-zigzag {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12'><path d='M0 12 L6 0 L12 12 L18 0 L24 12' fill='none' stroke='%23000' stroke-width='1.5'/></svg>");
  background-size: 24px 12px;
}
.pattern-dots {
  background-image: radial-gradient(currentColor 1.2px, transparent 1.4px);
  background-size: 14px 14px;
}

/* Decorative band between sections */
.deco-band {
  height: 28px;
  display: flex; align-items: center; gap: 18px;
  padding: 0 var(--pad-x);
  background: var(--cream-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  color: var(--accent);
}
.deco-band .pattern {
  height: 14px; flex: 1; min-width: 0;
}
.deco-band .deco-bullet {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}
.deco-band .deco-diamond {
  width: 12px; height: 12px;
  background: currentColor;
  flex: 0 0 auto;
  transform: rotate(45deg);
}

/* ── Marquee ─────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  background: var(--ink);
  color: var(--cream);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.012em;
}
.marquee[hidden] { display: none; }
.marquee-track {
  display: inline-flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 44s linear infinite;
  padding-left: 36px;
  align-items: center;
}
.marquee-track .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex: 0 0 auto;
}
.marquee-track em {
  font-style: italic;
  color: var(--green);
  font-weight: 400;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Hero (used by multiple pages) ───────────────────────── */
.hero {
  padding: 64px var(--pad-x) 0;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 90px);
  padding-bottom: 80px;
}
.hero-text > .eyebrow { margin-bottom: 36px; }
.hero h1.display { margin-bottom: 36px; }
.hero .hl {
  color: var(--accent);
  font-weight: 300;
  position: relative;
  white-space: nowrap;
}
.hero p.lede { margin: 0 0 44px; max-width: 50ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
  max-width: 560px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-meta > .meta:first-of-type,
.hero-meta > .meta:last-of-type { display: flex; flex-direction: column; gap: 8px; }
.meta-num {
  font-weight: 200;
  font-size: 38px; line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.meta-lbl { font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.meta-divider { width: 1px; background: var(--rule); align-self: stretch; }

/* simple page hero (no image) */
.page-hero {
  padding: clamp(80px, 11vw, 160px) var(--pad-x) clamp(60px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { margin-bottom: 28px; }
.page-hero h1 { max-width: 18ch; margin-bottom: 32px; }
.page-hero .lede { max-width: 56ch; }
.page-hero-pattern {
  position: absolute;
  inset: auto 0 -1px 0;
  height: 16px;
  color: var(--accent);
  opacity: 0.5;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 16px; padding-bottom: 60px; }
}

/* ── Mirror illustration (shared) ─────────────────────────── */
.mirror-art {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3/4;
  margin: 0 auto;
}
.mirror-art svg { width: 100%; height: 100%; display: block; }
.mirror-art .stamp {
  position: absolute;
  top: -10px; right: -10px;
  width: 110px; height: 110px;
  color: var(--gold-deep);
  animation: spin 50s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mirror-art .badge {
  position: absolute;
  left: -20px; bottom: 36px;
  background: var(--cream);
  border: 1px solid var(--ink);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 4px;
  max-width: 220px;
  box-shadow: 6px 6px 0 var(--gold);
}
.mirror-art .badge .b-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.mirror-art .badge .b-sub {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ── Hero modalities grid (Home) ─────────────────────────── */
.intro-statement {
  max-width: 1000px;
  margin: 0 auto;
}
.intro-statement p {
  font-weight: 200;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}
.intro-statement p em { color: var(--accent); }
.intro-statement .sub {
  margin-top: 36px;
  font-weight: 400;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ── Modalities (4 disciplines) ──────────────────────────── */
.modalities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.modalities .mcard {
  padding: 40px 28px 40px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: transparent;
  transition: background .25s;
}
.modalities .mcard:last-child { border-right: none; }
.modalities .mcard { padding-left: 28px; }
.modalities .mcard:first-child { padding-left: 0; }
.modalities .mcard:hover { background: color-mix(in oklch, var(--accent) 8%, transparent); }
.mcard-num {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 20px;
}
.mcard-sym {
  width: 52px; height: 52px;
  color: var(--ink);
  margin-bottom: 28px;
}
.mcard h3 {
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.mcard p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) {
  .modalities { grid-template-columns: 1fr 1fr; }
  .modalities .mcard:nth-child(2) { border-right: none; }
  .modalities .mcard:nth-child(odd) { padding-left: 0; }
  .modalities .mcard:nth-child(even) { padding-right: 0; }
}
@media (max-width: 560px) {
  .modalities { grid-template-columns: 1fr; }
  .modalities .mcard { border-right: none !important; padding: 32px 0 !important; }
}

/* ── Mirror Theory teaser ────────────────────────────────── */
.mirror-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.mirror-teaser .copy h2 { margin-bottom: 28px; }
.mirror-teaser .copy p { margin: 0 0 24px; max-width: 50ch; color: var(--ink-2); }
.mirror-teaser .copy .btn { margin-top: 12px; }
@media (max-width: 900px) {
  .mirror-teaser { grid-template-columns: 1fr; }
}

/* ── Services preview list (Home) ─────────────────────────── */
.svc-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
  gap: 0;
}
.svc-preview .srow {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: padding .25s, color .25s;
  cursor: pointer;
}
.svc-preview .srow:nth-child(odd) { border-right: 1px solid var(--rule); padding-right: 32px; }
.svc-preview .srow:nth-child(even) { padding-left: 32px; }
.svc-preview .srow:hover { color: var(--accent-deep); padding-left: 14px; }
.svc-preview .srow:nth-child(even):hover { padding-left: 46px; }
.svc-preview .s-num {
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--accent);
  padding-top: 8px;
}
.svc-preview .s-name {
  font-weight: 300;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.012em;
}
.svc-preview .s-name span {
  display: block; font-size: 13px; color: var(--ink-soft); margin-top: 8px; font-weight: 400;
}
.svc-preview .s-arrow {
  width: 16px; height: 16px;
  color: var(--accent);
  align-self: center;
  transition: transform .25s;
}
.svc-preview .srow:hover .s-arrow { transform: translateX(4px); }
@media (max-width: 760px) {
  .svc-preview { grid-template-columns: 1fr; }
  .svc-preview .srow:nth-child(odd) { border-right: none; padding-right: 0; }
  .svc-preview .srow:nth-child(even) { padding-left: 0; }
  .svc-preview .srow:nth-child(even):hover { padding-left: 14px; }
}

/* ── Events calendar list ────────────────────────────────── */
.events { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.event {
  display: grid;
  grid-template-columns: 110px 1.4fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: background .2s, padding .25s;
}
.event:hover { background: color-mix(in oklch, var(--accent) 6%, transparent); padding-left: 14px; padding-right: 14px; }
.event .ev-date {
  font-weight: 200;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex; flex-direction: column;
  gap: 4px;
}
.event .ev-date .day { color: var(--accent); }
.event .ev-date .mo {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.event .ev-name {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.008em;
}
.event .ev-name span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.event .ev-meta { display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; color: var(--ink-soft); }
.event .ev-meta strong { color: var(--ink); font-weight: 500; }
.event .ev-cta {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.event .ev-cta::after {
  content: '→';
  transition: transform .25s;
}
.event:hover .ev-cta::after { transform: translateX(4px); }
@media (max-width: 760px) {
  .event { grid-template-columns: 70px 1fr; gap: 16px; padding: 22px 0; }
  .event .ev-date { font-size: 30px; }
  .event .ev-meta, .event .ev-cta { grid-column: 1 / -1; padding-left: 86px; margin-top: -8px; }
  .event .ev-cta { padding-top: 4px; }
}

/* ── Instagram strip ─────────────────────────────────────── */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-2);
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: transform .35s;
}
.ig-tile:hover { transform: scale(1.02); }
.ig-tile svg { width: 100%; height: 100%; display: block; }
.ig-tile .ig-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(11,18,21,0.6);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  opacity: 0;
  transition: opacity .25s;
}
.ig-tile:hover .ig-tag { opacity: 1; }
@media (max-width: 900px) { .ig-strip { grid-template-columns: repeat(3, 1fr); } }

/* ── Newsletter CTA strip ────────────────────────────────── */
.cta-strip {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 110px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cta-strip-pattern {
  position: absolute;
  inset: 0;
  color: var(--green);
  opacity: 0.06;
  pointer-events: none;
}
.cta-strip-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: 1280px;
  margin: 0 auto;
}
.cta-strip h2 { color: var(--cream); }
.cta-strip h2 em { color: var(--gold); }
.cta-strip-form {
  display: flex; gap: 10px;
  border-bottom: 1px solid color-mix(in oklch, var(--cream) 30%, transparent);
  padding-bottom: 14px;
}
.cta-strip-form input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--cream); font-family: inherit; font-size: 17px;
  padding: 12px 0;
}
.cta-strip-form input::placeholder { color: color-mix(in oklch, var(--cream) 50%, transparent); }
.cta-strip-form button {
  background: var(--gold); color: var(--ink);
  border: none; padding: 12px 22px;
  font-family: inherit; font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s;
}
.cta-strip-form button:hover { background: var(--cream); }
.cta-strip-note { margin-top: 16px; font-size: 13px; color: color-mix(in oklch, var(--cream) 60%, transparent); }
@media (max-width: 760px) { .cta-strip-inner { grid-template-columns: 1fr; } }

/* ── Footer ──────────────────────────────────────────────── */
.site-foot {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 80px var(--pad-x) 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 64px;
}
.foot-brand { display: flex; flex-direction: column; gap: 18px; }
.foot-tag { font-size: 16px; line-height: 1.5; color: var(--ink-2); max-width: 36ch; margin: 0; font-weight: 300; }
.foot-nav { display: flex; flex-direction: column; gap: 10px; }
.foot-nav h5,
.foot-newsletter h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.foot-nav a { font-size: 15px; color: var(--ink-2); transition: color .2s; }
.foot-nav a:hover { color: var(--accent); }
.foot-newsletter p { font-size: 14px; color: var(--ink-soft); margin: 0 0 14px; max-width: 30ch; line-height: 1.5; }
.nl-form {
  display: flex;
  border-bottom: 1px solid var(--ink);
}
.nl-form input {
  flex: 1; background: none; border: none; padding: 12px 0;
  font-family: inherit; font-size: 15px; color: var(--ink); outline: none;
}
.nl-form button {
  background: none; border: none;
  font-family: inherit; font-size: 13px; font-weight: 600;
  color: var(--ink); cursor: pointer;
  padding: 12px 4px 12px 12px;
  letter-spacing: 0.06em;
}
.foot-base {
  display: flex; justify-content: space-between; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 12px; letter-spacing: 0.04em; color: var(--ink-soft);
  flex-wrap: wrap;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; text-align: center; }
  .foot-brand,
  .foot-nav,
  .foot-newsletter { align-items: center; }
  .foot-tag,
  .foot-newsletter p { max-width: 100%; }
  .foot-base { justify-content: center; text-align: center; }
}

/* ── Page transitions ────────────────────────────────────── */
.page-enter {
  animation: pageIn .55s cubic-bezier(.22,.61,.36,1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .page-enter { animation: none !important; opacity: 1 !important; transform: none !important; }
  .marquee-track, .mirror-art .stamp { animation: none !important; }
}
