/* ==========================================================================
   JÀMM at Villa CSS × Dakar 2026 — Partner Prospectus
   Custom palette derived from the deck's warm villa-plaster + Olympic
   color-blocking (ochre / teal / violet) art direction.
   ========================================================================== */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 7vw, 7rem);

  /* Spacing (4px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.9rem;
  --radius-xl: 1.4rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1280px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Clash Display', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* -------------------- LIGHT (default) -------------------- */
:root,
[data-theme='light'] {
  --color-bg: #f7f0e3;
  --color-surface: #fbf6ec;
  --color-surface-2: #fffdf8;
  --color-surface-offset: #efe1c9;
  --color-surface-offset-2: #e6d3ac;
  --color-divider: #ddc9a0;
  --color-border: #cdb488;
  --color-text: #221c14;
  --color-text-muted: #6c5f4c;
  --color-text-faint: #a3937a;
  --color-text-inverse: #fbf6ec;

  --color-primary: #d9522a;
  --color-primary-hover: #b8431f;
  --color-primary-active: #963618;
  --color-primary-highlight: #f4d7c6;

  --color-gold: #cf9416;
  --color-gold-highlight: #f6e3ab;
  --color-teal: #1f6fa8;
  --color-teal-highlight: #cde3f2;
  --color-violet: #8452b8;
  --color-violet-highlight: #e6d9f4;
  --color-green: #3f8c4a;
  --color-green-highlight: #d7ead8;

  --shadow-sm: 0 1px 2px oklch(0.25 0.03 40 / 0.08);
  --shadow-md: 0 6px 16px oklch(0.25 0.03 40 / 0.1);
  --shadow-lg: 0 16px 40px oklch(0.25 0.03 40 / 0.16);
}

/* -------------------- DARK -------------------- */
[data-theme='dark'] {
  --color-bg: #17130e;
  --color-surface: #1c1811;
  --color-surface-2: #221d15;
  --color-surface-offset: #251f16;
  --color-surface-offset-2: #2c2418;
  --color-divider: #362c1d;
  --color-border: #423523;
  --color-text: #efe6d5;
  --color-text-muted: #b0a186;
  --color-text-faint: #6f6350;
  --color-text-inverse: #221c14;

  --color-primary: #f0824f;
  --color-primary-hover: #f49f74;
  --color-primary-active: #f8b795;
  --color-primary-highlight: #3a2416;

  --color-gold: #e8bb52;
  --color-gold-highlight: #3a3018;
  --color-teal: #5fb0e8;
  --color-teal-highlight: #17324a;
  --color-violet: #b48ce0;
  --color-violet-highlight: #322a45;
  --color-green: #6cc47c;
  --color-green-highlight: #1e3322;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 6px 16px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #17130e;
    --color-surface: #1c1811;
    --color-surface-2: #221d15;
    --color-surface-offset: #251f16;
    --color-surface-offset-2: #2c2418;
    --color-divider: #362c1d;
    --color-border: #423523;
    --color-text: #efe6d5;
    --color-text-muted: #b0a186;
    --color-text-faint: #6f6350;
    --color-text-inverse: #221c14;
    --color-primary: #f0824f;
    --color-primary-hover: #f49f74;
    --color-primary-active: #f8b795;
    --color-primary-highlight: #3a2416;
    --color-gold: #e8bb52;
    --color-gold-highlight: #3a3018;
    --color-teal: #5fb0e8;
    --color-teal-highlight: #17324a;
    --color-violet: #b48ce0;
    --color-violet-highlight: #322a45;
    --color-green: #6cc47c;
    --color-green-highlight: #1e3322;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
    --shadow-md: 0 6px 16px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.5);
  }
}

/* Fixed dark editorial blocks — deliberate color sections, independent of
   the light/dark toggle (echo the deck's night-event color-blocking). */
.ink {
  --color-bg: #1a1611;
  --color-surface: #201b14;
  --color-text: #f3ecdd;
  --color-text-muted: #b7a98d;
  background: var(--color-bg);
  color: var(--color-text);
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow {
  max-width: var(--content-default);
}
.container--prose {
  max-width: var(--content-narrow);
}

section {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: currentColor;
  flex: none;
}
.ink .eyebrow {
  color: var(--section-accent, var(--color-gold));
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
}

.section-title {
  font-size: var(--text-2xl);
  margin-top: var(--space-3);
  max-width: 18ch;
}
.section-kicker-row {
  margin-bottom: var(--space-8);
}
.section-lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  max-width: 52ch;
  margin-top: var(--space-5);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  min-height: 44px;
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    border-color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff9f2;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-outline {
  border: 1px solid oklch(from var(--color-text) l c h / 0.22);
  color: var(--color-text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline-light {
  border: 1px solid oklch(1 0 0 / 0.35);
  color: #fff9f2;
  background: oklch(1 0 0 / 0.06);
}
.btn-outline-light:hover {
  border-color: #fff9f2;
  background: oklch(1 0 0 / 0.12);
}
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  min-height: 36px;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  gap: var(--space-4);
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
  flex: none;
}
.brand__mark {
  width: 34px;
  height: 34px;
  color: var(--color-primary);
  flex: none;
}
.brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__jamm {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
}
.brand__tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.main-nav {
  display: none;
  align-items: center;
  gap: var(--space-6);
}
.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
}
.main-nav a:hover {
  color: var(--color-text);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width var(--transition-interactive);
}
.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}
.theme-toggle:hover {
  background: oklch(from var(--color-text) l c h / 0.08);
  color: var(--color-text);
}

.nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

@media (max-width: 639px) {
  .header-actions .btn {
    display: none;
  }
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--color-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: var(--space-24) var(--space-6) var(--space-8);
  gap: var(--space-6);
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 420ms var(--ease-out);
  pointer-events: none;
}
.mobile-nav.is-open {
  clip-path: circle(150% at calc(100% - 40px) 40px);
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
}
.mobile-nav .btn {
  align-self: flex-start;
  margin-top: var(--space-4);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff9f2;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.15 0.02 40 / 0.35) 0%,
    oklch(0.15 0.02 40 / 0.35) 35%,
    oklch(0.1 0.02 40 / 0.86) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--space-16) var(--space-12);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f6d9c4;
  margin-bottom: var(--space-5);
}
.hero__title {
  font-size: var(--text-hero);
  line-height: 0.98;
  max-width: 15ch;
}
.hero__title em {
  font-style: normal;
  color: var(--color-primary);
}
.hero__sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 400;
  max-width: 46ch;
  margin-top: var(--space-5);
  color: oklch(1 0 0 / 0.86);
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-top: var(--space-8);
  font-size: var(--text-sm);
}
.hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__meta span:first-child {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(1 0 0 / 0.55);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-10);
}
.hero__brand {
  position: absolute;
  z-index: 2;
  right: var(--space-6);
  bottom: var(--space-6);
  height: 22px;
  width: auto;
  opacity: 0.92;
}
@media (min-width: 700px) {
  .hero__brand {
    right: var(--space-10);
    bottom: var(--space-8);
    height: 26px;
  }
}

/* ==========================================================================
   Reveal-on-scroll (opacity + clip-path only, no CLS)
   ========================================================================== */

.reveal {
  opacity: 1;
}
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    animation: reveal-fade 0.9s var(--ease-out) both;
    animation-timeline: view();
    animation-range: entry 0% entry 45%;
  }
  .reveal--up {
    clip-path: inset(20% 0 0 0);
    animation-name: reveal-fade, reveal-clip;
  }
}
@keyframes reveal-fade {
  to {
    opacity: 1;
  }
}
@keyframes reveal-clip {
  to {
    clip-path: inset(0 0 0 0);
  }
}

/* ==========================================================================
   Marquee (partners strip in header context, trust ticker)
   ========================================================================== */

.ticker {
  overflow: hidden;
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  padding-block: var(--space-4);
  background: var(--color-surface-offset);
}
.ticker__track {
  display: flex;
  gap: var(--space-16);
  width: max-content;
  animation: ticker-scroll 34s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text-faint);
  white-space: nowrap;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   Generic section spacing rhythm
   ========================================================================== */

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.section--tight {
  padding-block: clamp(var(--space-10), 6vw, var(--space-20));
}

/* ==========================================================================
   Mission / intro
   ========================================================================== */

.mission {
  display: grid;
  gap: var(--space-12);
  align-items: start;
}
@media (min-width: 900px) {
  .mission {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
.mission__stats {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-10);
  grid-template-columns: repeat(2, 1fr);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
.stat span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.mission__audience {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.pill {
  border: 1px solid oklch(from var(--color-text) l c h / 0.16);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.pill--primary { border-color: oklch(from var(--color-primary) l c h / 0.4); color: var(--color-primary); }
.pill--gold { border-color: oklch(from var(--color-gold) l c h / 0.4); color: var(--color-gold); }
.pill--teal { border-color: oklch(from var(--color-teal) l c h / 0.4); color: var(--color-teal); }
.pill--green { border-color: oklch(from var(--color-green) l c h / 0.4); color: var(--color-green); }
.pill--violet { border-color: oklch(from var(--color-violet) l c h / 0.4); color: var(--color-violet); }

/* ==========================================================================
   Location
   ========================================================================== */

.location-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, minmax(140px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-10);
}
.location-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.location-gallery figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.location-gallery figure:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}
.location-gallery figure:nth-child(2) {
  grid-column: span 3;
}
.location-gallery figure:nth-child(3) {
  grid-column: span 2;
}
.location-gallery figure:nth-child(4) {
  grid-column: span 3;
}
.location-gallery figure:nth-child(5) {
  grid-column: span 1;
}

.zones {
  margin-top: var(--space-16);
  display: grid;
  gap: 1px;
  background: var(--color-divider);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.zone {
  background: var(--color-surface);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  align-items: start;
  border-left: 3px solid var(--color-divider);
}
.zone__index {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
}
.zone--gold { border-left-color: var(--color-gold); }
.zone--gold .zone__index { color: var(--color-gold); }
.zone--teal { border-left-color: var(--color-teal); }
.zone--teal .zone__index { color: var(--color-teal); }
.zone--primary { border-left-color: var(--color-primary); }
.zone--primary .zone__index { color: var(--color-primary); }
.zone--green { border-left-color: var(--color-green); }
.zone--green .zone__index { color: var(--color-green); }
.zone--violet { border-left-color: var(--color-violet); }
.zone--violet .zone__index { color: var(--color-violet); }
.zone h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
}
.zone p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}
@media (min-width: 700px) {
  .zones {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Experience pillars
   ========================================================================== */

.pillars {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-12);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pillar {
  padding: var(--space-6) var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface-offset);
}
.pillar b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.pillar p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.pillar--accent-1 {
  border-bottom: 3px solid var(--color-green);
}
.pillar--accent-2 {
  border-bottom: 3px solid var(--color-violet);
}
.pillar--accent-3 {
  border-bottom: 3px solid var(--color-teal);
}
.pillar--accent-4 {
  border-bottom: 3px solid var(--color-gold);
}

.experience-media {
  margin-top: var(--space-12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.experience-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   Program (days)
   ========================================================================== */

.program-day {
  display: grid;
  gap: var(--space-8);
  padding-block: var(--space-12);
  border-top: 1px solid oklch(from var(--color-text-inverse) l c h / 0.1);
}
.program-day:first-of-type {
  border-top: none;
}
@media (min-width: 860px) {
  .program-day {
    grid-template-columns: 220px 1fr;
  }
}
.program-day__date {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.program-day__date span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--program-accent, var(--color-gold));
  margin-bottom: var(--space-2);
}
.program-day__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--program-accent, var(--color-gold));
}
.program-day__themes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.program-day__themes span {
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.78);
}
.program-day__includes {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.62);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-5);
}

/* ==========================================================================
   Spotlight (Theatre of Truth)
   ========================================================================== */

.spotlight {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 900px) {
  .spotlight {
    grid-template-columns: 1fr 1fr;
  }
}
.spotlight__figures {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, 1fr);
  max-width: 420px;
}
.spotlight__figures img {
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.spotlight-list {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-5);
}
.spotlight-list h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
}
.spotlight-list p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

/* ==========================================================================
   Why partner — access grid
   ========================================================================== */

.access-grid {
  margin-top: var(--space-12);
  display: grid;
  gap: var(--space-8);
}
@media (min-width: 860px) {
  .access-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.access-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.access-card__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
.access-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
}
.access-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Partnership tiers
   ========================================================================== */

.tier-list {
  margin-top: var(--space-10);
  border-top: 1px solid var(--color-divider);
}
.tier {
  display: grid;
  gap: var(--space-4);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
  align-items: baseline;
}
@media (min-width: 760px) {
  .tier {
    grid-template-columns: 60px 1.2fr 1.6fr;
  }
}
.tier__num {
  font-family: var(--font-display);
  color: var(--color-text-faint);
  font-size: var(--text-lg);
}
.tier h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
}
.tier p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Investment / costs
   ========================================================================== */

.pricing {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-12);
}
@media (min-width: 760px) {
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}
.price-card {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.price-card--feature {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card__badge {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}
.price-card h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.price-card__amount {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-primary);
}
.price-card__amount span {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 400;
}
.price-card ul {
  display: grid;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}
.price-card ul li {
  display: flex;
  gap: var(--space-2);
  align-items: flex-start;
}
.price-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  flex: none;
}
.price-note {
  margin-top: var(--space-8);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface-offset);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: center;
  justify-content: space-between;
}
.price-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 46ch;
}

/* ==========================================================================
   Partners
   ========================================================================== */

.partner-group {
  margin-top: var(--space-10);
}
.partner-group h4 {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-6);
}
.partner-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-10);
  align-items: center;
  justify-content: center;
  background: #fdf9f0;
  border: 1px solid rgba(20, 15, 5, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-8);
  box-shadow: var(--shadow-sm);
}
.partner-row img {
  height: 32px;
  width: auto;
  opacity: 1;
}
.partner-row .word {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: #4a4136;
}
a.word {
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a.word:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.section-lede a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-primary);
  text-underline-offset: 2px;
}
.section-lede a:hover {
  color: var(--color-primary);
}

/* ==========================================================================
   Contact / footer CTA
   ========================================================================== */

.contact {
  display: grid;
  gap: var(--space-10);
}
@media (min-width: 900px) {
  .contact {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.contact-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-divider);
}
.contact-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 500;
}
.contact-card__row > span:last-child,
.contact-card__row > a {
  font-weight: 700;
}
.contact-card__row:last-child {
  border-bottom: none;
}
.contact-card__row a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.contact-card__row a:hover {
  text-decoration: underline;
}

.site-footer {
  padding-block: var(--space-12);
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.5);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: center;
}
.site-footer__logos {
  display: flex;
  gap: var(--space-6);
  align-items: center;
}
.site-footer__logos img {
  height: 20px;
  width: auto;
  opacity: 0.7;
}

/* ==========================================================================
   Section-specific background helpers
   ========================================================================== */

.bg-image-section {
  position: relative;
  color: #fff9f2;
}
.bg-image-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bg-image-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-image-section__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, oklch(0.12 0.02 40 / 0.55), oklch(0.1 0.02 40 / 0.92));
}
.bg-image-section__content {
  position: relative;
  z-index: 1;
}

@media (max-width: 700px) {
  .location-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .location-gallery figure:nth-child(1),
  .location-gallery figure:nth-child(2),
  .location-gallery figure:nth-child(3),
  .location-gallery figure:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .location-gallery figure:nth-child(5) {
    display: none;
  }
  .experience-media {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight__figures {
    max-width: 320px;
  }
}
