/* menna — public site styles
 * Burgundy + cream editorial palette matching itsmenna.com.
 * See ASSETS_TO_REPLACE.md for fonts/colors/images that need client values.
 */

:root {
  /* Menna brand palette — exact from Menna-style-guide-r1.pdf */
  --pomegranate:       #471224;    /* Primary burgundy */
  --desert-rose:       #ffd9d9;    /* Primary soft pink */
  --soho-clay:         #0d281c;    /* Secondary deep green */
  --olive-grove:       #dbd5c9;    /* Secondary warm tan */
  --metropolitan-noir: #17110c;    /* Neutral near-black */
  --loft-light:        #f8f7f3;    /* Neutral cream */

  /* Semantic aliases — keeps CSS readable */
  --burgundy:        var(--pomegranate);
  --burgundy-deep:   #2f0b17;
  --burgundy-soft:   #5e1f30;
  --cream:           var(--loft-light);
  --cream-soft:      #eeece6;
  --cream-dim:       var(--olive-grove);
  --cream-faint:     rgba(248, 247, 243, 0.55);
  --cream-stroke:    rgba(248, 247, 243, 0.32);
  --cream-frame:     rgba(248, 247, 243, 0.18);
  --accent-pink:     var(--desert-rose);

  /* Typography: The Seasons (Adobe Fonts) for display/italic, Nunito Sans body, Noto Naskh Arabic bilingual.
     DM Serif Display is the fallback in case Typekit fails. */
  --font-display:    "the-seasons", "DM Serif Display", "Tobias", Georgia, serif;
  --font-italic:     "the-seasons", "DM Serif Display", "Tobias", Georgia, serif;
  --font-body:       "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-arabic:     "Noto Naskh Arabic", "the-seasons", serif;

  --max-width:       1320px;
  --space-xs:        8px;
  --space-sm:        16px;
  --space-md:        32px;
  --space-lg:        56px;
  --space-xl:        96px;
  --space-2xl:       128px;

  --radius-pill:     999px;
  --radius-card:     6px;

  --transition:      0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--burgundy);
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* Preview-mode warning banner — only visible when site is built with --include-pending */
.preview-banner {
  background: #b08c00;
  color: #1a1408;
  padding: 8px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.4px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.preview-banner strong { font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.italic-script { font-family: var(--font-italic); font-style: italic; font-weight: 500; }

/* ─── HEADER ───────────────────────────────────────── */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-md);
  padding: 28px 56px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--burgundy);
}
.site-header .primary-nav { justify-self: start; }
.site-header .header-actions { justify-self: end; }

.primary-nav {
  display: flex;
  gap: 44px;
  align-items: center;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--cream);
  transition: opacity var(--transition);
}
.nav-link:hover { opacity: 0.7; }

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  text-decoration: none;
}
.logo-svg {
  height: 50px;
  width: auto;
  display: block;
}
.footer-logo .logo-svg { height: 38px; }

.header-actions .pill {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 7px 18px;
}
.header-actions .pill .arrow {
  font-family: var(--font-body);
  font-size: 11px;
}
.header-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}
.join-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-family: var(--font-display);
  color: var(--cream);
  padding: 8px 4px;
  transition: opacity var(--transition);
}
.join-link:hover { opacity: 0.7; }
.ig-icon { color: var(--cream); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 10px;
  margin-left: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border-radius: 6px;
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(248, 247, 243, 0.08); }
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* ─── PILLS ────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  min-height: 34px;
  box-sizing: border-box;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
}
.pill .arrow {
  font-size: 11px;
  transform: translateY(-1px);
  transition: transform var(--transition);
}
.pill:hover .arrow { transform: translate(2px, -3px); }
.pill:hover { transform: translateY(-1px); }
.pill:focus-visible,
.nav-link:focus-visible,
.join-link:focus-visible,
.menu-toggle:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--desert-rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.pill-outline {
  border-color: var(--cream);
  color: var(--cream);
  background: transparent;
}
.pill-outline:hover { background: var(--cream-frame); }

.pill-filled {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}
.pill-filled:hover { background: var(--cream-soft); }

.pill-sm { padding: 7px 16px; font-size: 12px; }
.pill-block { display: flex; justify-content: center; width: 100%; }

/* ─── HERO (HOMEPAGE) ──────────────────────────────── */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 56px 88px;
  text-align: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin-bottom: 20px;
}
.hero-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25em;
  margin-bottom: -0.22em;
}
.hero-line .italic-script {
  font-size: 1em;
  letter-spacing: -0.01em;
}

/* Hero inline cutouts — PNGs ship with their own oval/quatrefoil alpha mask,
   so the frame must NOT clip, NOT force aspect ratio, NOT cover-fit. Just inline. */
.hero-image-frame {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  position: relative;
  margin: 0 0.2em;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent;
}
.hero-portrait-frame,
.hero-skyline-frame {
  width: auto;
  height: clamp(100px, 10vw, 170px);
  aspect-ratio: 1 / 1;
}

.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  background: var(--cream-frame);
  border: 1px dashed var(--cream-stroke);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.placeholder-image::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, var(--cream-frame) 8px, var(--cream-frame) 9px);
  opacity: 0.3;
}
.placeholder-label {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cream-faint);
  position: relative; z-index: 1;
}
.placeholder-portrait { aspect-ratio: 3/4; }
.placeholder-skyline  { aspect-ratio: 16/9; }
.placeholder-event    { aspect-ratio: 1/1; min-height: 240px; }
.placeholder-event-large { min-height: 480px; aspect-ratio: 4/3; }

.hero-pillars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--cream);
  opacity: 1;
  /* Break out of .hero's max-width + padding so the 3 words reach the viewport edges */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 36px;
  margin-bottom: 40px;
  width: 100vw;
  padding: 0 clamp(80px, 14vw, 260px);
  box-sizing: border-box;
}
.pillar-spacer { display: none; }

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.hero-ctas .pill {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 7px 18px;
}
.hero-ctas .pill .arrow {
  font-family: var(--font-body);
  font-size: 11px;
}

.hero-mission {
  max-width: 720px;
  margin: 40px auto;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--cream);
  opacity: 0.9;
  line-height: 1.6;
}

/* ─── PAGE HERO (interior pages) ───────────────────── */
.page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 56px 32px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 640px;
  margin: 0 auto;
  color: var(--cream);
  opacity: 0.85;
}

/* ─── SECTIONS ─────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto var(--space-md);
  padding: 0 56px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 400;
  color: var(--cream);
}
.section-link {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream);
  border-bottom: 1px solid var(--cream-stroke);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.section-link:hover { opacity: 0.7; }

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: var(--space-md);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto var(--space-md);
  text-align: center;
  color: var(--cream);
  opacity: 0.85;
  font-size: 17px;
}

/* ─── EVENT GRID + CARDS ───────────────────────────── */
/* Homepage events section — full-bleed cream background, burgundy text (matches itsmenna.com). */
.events-preview {
  background: var(--desert-rose);
  color: var(--burgundy);
  padding: 32px 56px 20px;
}
.events-preview-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
/* Archive page keeps burgundy bg (not full-bleed cream) */
.events-archive {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 56px var(--space-xl);
}
.events-archive-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 var(--space-md);
}

/* Scope the cream inversion to the homepage preview only */
.events-preview .events-section-title,
.events-preview .events-section-desc { color: var(--burgundy); }

/* Section header row — title left, "Explore all" button right */
.events-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.events-preview .events-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0;
}
.events-explore-link {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--burgundy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.events-explore-link:hover { opacity: 1; }
.events-explore-link .arrow { font-size: 9px; }
.events-preview .events-section-desc {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.8;
}
.events-preview .events-explore-all {
  text-align: center;
  margin-top: var(--space-md);
}

/* Event card on cream bg (homepage) — matches live itsmenna.com card */
.events-preview .event-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: none;
}
/* Link wrapper grows to absorb stretched row height so body+actions don't leave a gap */
.events-preview .event-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.events-preview .event-body {
  background: var(--cream);
  flex: 1;
}
.events-preview .event-actions {
  border-bottom: 1px solid var(--burgundy);
  border-left: 1px solid var(--burgundy);
  border-right: 1px solid var(--burgundy);
}
.events-preview .event-image {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: transparent;
}
/* Rectangular white date block in top-left — not pill, not rounded */
.events-preview .event-date-pill {
  background: var(--cream);
  color: var(--burgundy);
  border-radius: 0;
  padding: 7px 11px;
  min-width: 50px;
  top: 10px; left: 10px;
  font-family: var(--font-display);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.events-preview .date-month {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: none;
  opacity: 1;
}
.events-preview .date-day {
  font-size: 20px;
  font-weight: 500;
  margin-top: 2px;
}
.events-preview .date-divider {
  display: block;
  width: 19px;
  height: 1px;
  background: var(--burgundy);
  margin: 3px auto;
  opacity: 0.6;
}
.events-preview .date-weekday {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  opacity: 1;
  margin-top: 0;
}

/* Category: plain uppercase burgundy text, no border, no pill */
.events-preview .event-categories {
  gap: 4px;
  margin-bottom: 4px;
}
.events-preview .event-category {
  border: none;
  padding: 0;
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--burgundy);
  background: transparent;
}

/* Title: prominent serif — always reserves 2 lines' height so meta rows align
   horizontally across the row even when some titles are single-line. */
.events-preview .event-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  line-height: 1.1;
  margin: 6px 0 10px;
  color: var(--burgundy);
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.1em * 2);     /* reserve space for exactly 2 lines */
}

/* Icon meta rows: icon + text */
.events-preview .event-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--burgundy);
}
.events-preview .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--burgundy);
  opacity: 0.9;
  min-width: 0;        /* allow child <span> to shrink/ellipsis inside flex */
}
.events-preview .meta-item > span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.events-preview .meta-item.meta-inline {
  gap: 14px;
  flex-wrap: wrap;
}
.events-preview .meta-item-inner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.events-preview .meta-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--burgundy);
  opacity: 0.85;
  position: relative;
  top: 1px;
}
.meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--burgundy);
  opacity: 0.7;
  flex-shrink: 0;
  display: inline-block;
}
.events-preview .meta-item,
.events-archive .meta-item { display: flex; align-items: center; gap: 8px; }
.events-preview .event-when-date,
.events-archive .event-when-date {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--burgundy);
  opacity: 0.75;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.events-preview .meta-item,
.events-preview .meta-item-inner { align-items: center; line-height: 1.4; }

/* Menna picks card actions row: arrow affordance at bottom right */
.events-preview .event-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 12px 10px;
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--burgundy);
  border-left: 1px solid var(--burgundy);
  border-right: 1px solid var(--burgundy);
  background: var(--cream);
}
.events-preview .event-details-hint {
  color: var(--burgundy);
  opacity: 0.85;
  font-size: 13px;
}
.events-preview .event-details-hint .arrow { font-size: 14px; }
.events-preview .event-actions .pill-outline {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  background: transparent;
  padding: 5px 13px;
  font-size: 11px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
}

/* Tickets/RSVP as text link — underline under label only, not arrow */
.event-ticket-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--burgundy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity var(--transition);
}
.event-ticket-link .ticket-label {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.event-ticket-link:hover { opacity: 0.7; }
.event-ticket-link .arrow { font-size: 10px; text-decoration: none; }
.events-preview .event-actions .pill-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.events-preview .event-addcal {
  background: transparent;
  border: none;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 12px;
  padding: 5px 2px;
  cursor: pointer;
  transition: opacity var(--transition);
}
.events-preview .event-addcal:hover { opacity: 0.65; }
.events-preview .event-addcal .plus,
.addcal-option .plus {
  display: inline-block;
  margin-left: 6px;
  font-size: 16px;
  line-height: 1;
}

/* Add-Calendar dropdown menu — shared across events-preview and archive */
.event-addcal-wrapper {
  position: relative;
  display: inline-block;
}
.event-addcal-menu {
  position: absolute;
  bottom: calc(100% + 6px);           /* open UPWARD so it overlays the card, not the page below */
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream-dim);
  padding: 14px 18px;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
  min-width: 170px;
}
.event-addcal-menu.open {
  display: flex;
  animation: addcalFade 0.14s ease-out;
}
@keyframes addcalFade {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.addcal-option {
  background: transparent;
  border: 1px solid var(--burgundy);
  border-radius: var(--radius-pill);
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 15px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-align: center;
}
.addcal-option:hover {
  background: var(--burgundy);
  color: var(--cream);
}

/* Keep the menu inside the carousel strip (don't let Swiper clip it) */
.events-swiper { overflow: visible; }
.events-swiper .swiper-slide { overflow: visible; }

/* Archive variant — burgundy bg, so style the trigger text cream */
.events-archive .event-addcal {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 14px;
  padding: 8px 2px;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.events-archive .event-addcal:hover { opacity: 1; }

/* Kill the lift/scale hover inside the cream card strip */
.events-preview .event-card:hover { transform: none; border: none; }
.events-preview .event-card:hover .event-image img { transform: none; }
.events-preview .event-card {
  background: var(--cream);
  border: none;
  color: var(--burgundy);
}
.events-preview .event-card .event-title,
.events-preview .event-card .event-venue,
.events-preview .event-card .event-when,
.events-preview .event-card .event-cost { color: var(--burgundy); }
.events-preview .event-card .event-category {
  color: var(--burgundy);
  border-color: transparent;
  padding-left: 0;
  font-weight: 600;
  letter-spacing: 1.6px;
}
.events-preview .event-image { border-radius: 0; }
.events-preview .swiper-button-prev,
.events-preview .swiper-button-next {
  background: var(--cream);
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.events-preview .swiper-button-prev:hover,
.events-preview .swiper-button-next:hover {
  background: var(--burgundy);
  color: var(--cream);
}
.events-preview .swiper-pagination-bullet { background: var(--burgundy); }
.events-preview .pill-on-cream {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.events-preview .pill-on-cream:hover { background: var(--burgundy); color: var(--cream); }
.events-preview .event-actions .pill-outline {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.events-preview .event-actions .pill-outline:hover { background: var(--burgundy); color: var(--cream); }

/* Archive page keeps the grid layout — 1-up on mobile, auto-fill on desktop */
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.event-grid-archive { gap: 16px; align-items: stretch; }
.events-archive .event-card { height: 100%; }

/* ─── HOMEPAGE EVENTS CAROUSEL (Swiper) ────────────── */
.events-swiper {
  width: 100%;
  padding-bottom: 56px; /* room for pagination dots */
  position: relative;
  overflow: hidden;
}
.events-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.events-swiper .swiper-slide .event-card {
  width: 100%;
  max-height: none;      /* let rich content breathe — no clipping */
  overflow: visible;
}
.events-swiper .swiper-slide .event-card .event-image { overflow: hidden; }
.events-swiper .event-image {
  aspect-ratio: 16 / 9;
  min-height: 0;
}
.events-swiper .event-body {
  padding: 8px 10px 6px;
}
.events-swiper .event-title {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--burgundy);
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.events-swiper .event-category {
  font-size: 9px;
  letter-spacing: 1.3px;
  padding: 3px 8px;
}
.events-swiper .event-venue,
.events-swiper .event-when,
.events-swiper .event-cost { font-size: 12px; }
.events-swiper .event-date-pill {
  top: 8px; left: 8px;
  padding: 5px 8px;
  min-width: 40px;
}
.events-swiper .date-month { font-size: 9px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.events-swiper .date-day { font-size: 18px; font-weight: 700; margin-top: 1px; line-height: 1; }
.events-swiper .date-weekday { font-size: 8px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; opacity: 0.85; }
.events-swiper .date-arrow { font-size: 10px; font-weight: 500; margin-top: 1px; opacity: 0.55; line-height: 1; }
.events-swiper .date-pill-range .date-month + .date-month { font-size: 8px; margin-top: 1px; }
.events-swiper .event-actions { padding: 6px 12px 10px; }
.events-swiper .event-actions .pill-sm { font-size: 11px; padding: 6px 12px; }
.events-swiper .event-desc { display: none; }     /* hide blurb in carousel — keep cards tight */
.events-swiper .event-actions { padding: 8px 18px 14px; }

/* Nav arrows hidden — rely on pagination dots + swipe gesture */
.events-swiper .swiper-button-prev,
.events-swiper .swiper-button-next { display: none; }

/* Brand-tinted pagination dots */
.events-swiper { padding-bottom: 48px; }
.events-swiper .swiper-pagination {
  bottom: 0;
  text-align: center;
}
.events-swiper .swiper-pagination-bullet {
  background: var(--burgundy);
  opacity: 0.3;
  width: 5px;
  height: 5px;
  margin: 0 3px !important;
  transition: opacity var(--transition), transform var(--transition);
}
.events-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

.event-card {
  background: var(--cream-frame);
  border: 1px solid var(--cream-stroke);
  border-radius: 0;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}
.event-card:hover { transform: translateY(-3px); border-color: var(--cream-faint); }
.event-card-link { display: block; color: inherit; flex: 1; }

.event-image {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--burgundy-deep);
  overflow: hidden;
}
.event-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.event-card:hover .event-image img { transform: scale(1.04); }

.event-date-pill {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--cream);
  color: var(--burgundy);
  border-radius: var(--radius-card);
  padding: 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  min-width: 78px;
}
.date-month { font-size: 14px; text-transform: uppercase; letter-spacing: 1.4px; font-weight: 600; }
.date-day { font-size: 36px; font-weight: 600; margin-top: 6px; }
.date-weekday { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; margin-top: 6px; }
.date-arrow { font-size: 16px; font-weight: 500; margin-top: 4px; opacity: 0.55; line-height: 1; }
.date-pill-range .date-month + .date-month { margin-top: 4px; font-size: 12px; }

.event-body { padding: 20px 22px; }
.event-categories { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.event-category {
  font-family: var(--font-body);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 10px;
  border: 1px solid var(--cream-stroke);
  border-radius: var(--radius-pill);
  color: var(--cream);
  font-weight: 500;
}

/* Categories + country flags on the same row: categories left, flags right */
.event-tag-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.event-tag-row .event-categories { margin-bottom: 0; }
.event-tag-row .event-countries { margin-bottom: 0; margin-left: auto; }

/* SWANA country chips — flags only, no pill backgrounds */
.event-countries { display: flex; flex-wrap: nowrap; gap: 4px; line-height: 1; flex-shrink: 0; }
.event-country {
  font-size: 22px;
  padding: 0;
  background: transparent;
  border: none;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
}
.event-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--cream);
}
.event-meta { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--cream); opacity: 0.85; }
.event-when { display: flex; gap: 12px; flex-wrap: wrap; }
.event-time { opacity: 0.75; }
.event-cost { font-weight: 500; }
.event-cost.free { color: var(--cream); font-style: italic; }

.event-actions { padding: 0 22px 22px; }

/* ─── FILTER BAR (events archive) ─────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-md);
  align-items: center;
}

.filter-search {
  margin-left: auto;
}
.filter-search input {
  min-height: 36px;
  min-width: 220px;
  padding: 8px 14px;
  border: 1px solid var(--cream-stroke);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  transition: border-color var(--transition), background var(--transition);
}
.filter-search input::placeholder {
  color: var(--cream);
  opacity: 0.6;
}
.filter-search input:hover {
  border-color: var(--cream);
  background: rgba(248, 247, 243, 0.06);
}
.filter-search input:focus {
  outline: none;
  border-color: var(--cream);
  background: rgba(248, 247, 243, 0.06);
}

.filter-clear-all {
  display: inline-block;
  margin: 4px 0 var(--space-md);
  padding: 0;
  border: none;
  background: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.75;
  cursor: pointer;
  transition: opacity var(--transition);
}
.filter-clear-all:hover {
  opacity: 1;
}

/* Dropdown trigger + panel */
.filter-dropdown { position: relative; }
.filter-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  min-height: 36px;
  border: 1px solid var(--cream-stroke);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.filter-dropdown-trigger:hover,
.filter-dropdown.open .filter-dropdown-trigger {
  border-color: var(--cream);
  background: rgba(248, 247, 243, 0.06);
}
.filter-dropdown-label {
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.filter-dropdown-value {
  font-weight: 600;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filter-dropdown-chevron {
  font-size: 10px;
  opacity: 0.7;
  transition: transform var(--transition);
}
.filter-dropdown.open .filter-dropdown-chevron { transform: rotate(180deg); }

.filter-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  max-width: 420px;
  max-height: 360px;
  overflow-y: auto;
  padding: 14px;
  background: var(--cream);
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 40;
}
.filter-dropdown.open .filter-dropdown-panel { display: flex; }
.filter-dropdown-panel .filter-pill {
  font-size: 12px;
  padding: 5px 12px;
  min-height: 28px;
  color: var(--burgundy);
  border-color: var(--burgundy);
  opacity: 0.8;
}
.filter-dropdown-panel .filter-pill:hover { opacity: 1; border-color: var(--burgundy); }
.filter-dropdown-panel .filter-pill.active {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  opacity: 1;
}

/* Date panel — inline flatpickr calendar */
.filter-dropdown-panel-dates {
  flex-direction: column;
  align-items: stretch;
  min-width: 300px;
  gap: 12px;
  padding: 12px;
}
.filter-date-calendar .flatpickr-calendar.inline {
  box-shadow: none;
  border: none;
  background: transparent;
  width: 100%;
  max-width: 320px;
}
.flatpickr-calendar {
  background: var(--cream);
  color: var(--burgundy);
  font-family: var(--font-body);
}
.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
.flatpickr-weekday,
.flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year { color: var(--burgundy) !important; background: transparent; }
.flatpickr-current-month { font-size: 14px; font-weight: 600; }
.flatpickr-prev-month, .flatpickr-next-month { fill: var(--burgundy) !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: var(--burgundy) !important; }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: var(--desert-rose) !important; }
.flatpickr-weekday { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }
.flatpickr-day {
  color: var(--burgundy);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 13px;
}
.flatpickr-day.today { border-color: var(--burgundy); }
.flatpickr-day:hover { background: rgba(71, 18, 36, 0.08); border-color: transparent; }
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}
.flatpickr-day.inRange {
  background: rgba(71, 18, 36, 0.15);
  color: var(--burgundy);
  border-color: transparent;
  box-shadow: none;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay { color: rgba(71, 18, 36, 0.3); }
.filter-group {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--cream);
  opacity: 0.6;
  margin-right: 8px;
  white-space: nowrap;
}
.filter-pill {
  padding: 6px 14px;
  border: 1px solid var(--cream-stroke);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--cream);
  font-family: var(--font-display);
  transition: all var(--transition);
}
.filter-pill:hover { border-color: var(--cream-faint); }
.filter-pill.active {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

/* Date range inputs */
.filter-group-dates { align-items: center; }
.filter-date-input {
  display: inline-flex;
  align-items: center;
}
.filter-date-input input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--cream-stroke);
  border-radius: var(--radius-pill);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 5px 12px;
  min-height: 30px;
  color-scheme: dark;
  transition: border-color var(--transition);
}
.filter-date-input input[type="date"]:hover { border-color: var(--cream-faint); }
.filter-date-input input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.9);
  cursor: pointer;
  opacity: 0.7;
}
.filter-date-sep {
  color: var(--cream);
  opacity: 0.5;
  font-size: 12px;
  font-family: var(--font-body);
  text-transform: lowercase;
}
.filter-date-clear {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity var(--transition);
}
.filter-date-clear:hover { opacity: 1; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Archive card: smaller, no outline, cream copy bg. Shorter image = less vertical space. */
.events-archive .event-card,
.events-preview .event-card {
  background: var(--cream);
  border: none;
}
.events-archive .event-image,
.events-preview .event-image { background: transparent; aspect-ratio: 3/2; border-radius: 0; }
/* Body fills the remaining space so there's no visible gap when cards stretch to match row height. */
.events-archive .event-body,
.events-preview .event-body {
  padding: 10px 12px 0;
  border: none;
  margin: 0;
  flex: 1;
}
.events-archive .event-actions,
.events-preview .event-actions {
  padding: 4px 12px 10px;
  border: none;
  margin: 0;
}
.events-archive .event-actions-archive,
.events-preview .event-actions-archive {
  display: flex;
  justify-content: flex-end;
}
.event-details-hint {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--transition), transform var(--transition);
}
.events-archive .event-card:hover .event-details-hint,
.events-preview .event-card:hover .event-details-hint { opacity: 1; transform: translateX(2px); }
.event-details-hint .details-label { text-decoration: underline; text-underline-offset: 3px; }
.event-details-hint .arrow { font-size: 13px; }

/* Archive date pill — match menna picks sizing */
.events-archive .event-date-pill,
.events-preview .event-date-pill {
  background: var(--cream);
  color: var(--burgundy);
  border-radius: 0;
  padding: 7px 11px;
  min-width: 48px;
  top: 8px; left: 8px;
  font-family: var(--font-display);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.events-archive .date-month,
.events-preview .date-month { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.events-archive .date-day,
.events-preview .date-day { font-size: 24px; font-weight: 700; margin-top: 2px; line-height: 1; }
.events-archive .date-weekday,
.events-preview .date-weekday { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; opacity: 0.85; }
.events-archive .date-arrow,
.events-preview .date-arrow { font-size: 12px; font-weight: 500; margin-top: 2px; opacity: 0.55; line-height: 1; }
.events-archive .date-pill-range .date-month + .date-month,
.events-preview .date-pill-range .date-month + .date-month { font-size: 9px; margin-top: 2px; }

/* Archive title — upright, smaller, burgundy on cream. Reserves 2 lines so cards match. */
.events-archive .event-title,
.events-preview .event-title {
  color: var(--burgundy);
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  margin: 2px 0 6px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.2em * 2);
}
/* Categories — plain uppercase text, no pill border (matches menna picks) */
.events-archive .event-category,
.events-preview .event-category {
  color: var(--burgundy);
  opacity: 1;
  border: none;
  background: transparent;
  padding: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
/* Meta rows — no bullet point */
.events-archive .event-meta,
.events-preview .event-meta { color: var(--burgundy); opacity: 0.95; font-size: 11px; list-style: none; padding: 0; margin: 0; }
.events-archive .event-meta .meta-item,
.events-preview .event-meta .meta-item { font-size: 11px; list-style: none; }
.events-archive .event-meta .meta-item::marker,
.events-preview .event-meta .meta-item::marker { content: ''; }
.events-archive .meta-icon,
.events-preview .meta-icon { stroke: var(--burgundy); opacity: 0.8; width: 11px; height: 11px; }
.events-archive .event-country,
.events-preview .event-country { font-size: 16px; }
.events-archive .event-category,
.events-preview .event-category { font-size: 9px; letter-spacing: 1.2px; }
.events-archive .event-details-hint,
.events-preview .event-details-hint { font-size: 10px; }

/* Modern form styling — minimal underline inputs instead of boxes */
.page-submit .contact-form input[type="text"],
.page-submit .contact-form input[type="email"],
.page-submit .contact-form input[type="url"],
.page-submit .contact-form textarea,
.page-submit .contact-form select,
.page-contact .contact-form input[type="text"],
.page-contact .contact-form input[type="email"],
.page-contact .contact-form input[type="url"],
.page-contact .contact-form textarea,
.page-contact .contact-form select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(248, 247, 243, 0.35);
  border-radius: 0;
  padding: 2px 2px 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  width: 100%;
  transition: border-color var(--transition);
}
.page-submit .contact-form textarea,
.page-contact .contact-form textarea { resize: vertical; min-height: 80px; }
.page-submit .contact-form input:focus,
.page-submit .contact-form textarea:focus,
.page-submit .contact-form select:focus,
.page-contact .contact-form input:focus,
.page-contact .contact-form textarea:focus,
.page-contact .contact-form select:focus {
  outline: none;
  border-bottom-color: var(--desert-rose);
}
.page-submit .field-label,
.page-contact .field-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  display: block;
  margin-bottom: 2px;
}
.page-submit .form-row,
.page-contact .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 18px; }
.page-submit .field,
.page-contact .field { margin-bottom: 18px; }

/* Inline calendar on submit page — compact (flatpickr injects as sibling, not inside anchor) */
.page-submit .flatpickr-calendar.inline {
  width: 260px !important;
  max-width: 260px;
  box-shadow: none;
  font-size: 12px;
  margin-top: 10px;
}
.page-submit .flatpickr-days,
.page-submit .dayContainer {
  width: 260px !important;
  min-width: 260px !important;
  max-width: 260px !important;
}
.page-submit .flatpickr-day {
  font-size: 12px;
  height: 28px;
  line-height: 28px;
  max-width: 37px;
}
.page-submit .flatpickr-weekday { font-size: 9px; }
.page-submit .flatpickr-current-month { font-size: 13px; padding-top: 2px; }
.submit-date-summary {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--cream);
  opacity: 0.75;
  font-style: italic;
}

/* Submit page hero — matches homepage hero title size + inline cutout */
.submit-hero { text-align: center; }
.submit-hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--cream);
  opacity: 0.75;
  margin: -16px auto 0;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.submit-hero-subtitle [lang="ar"] {
  font-family: var(--font-arabic);
  font-size: 1.15em;
  margin-right: 4px;
}
@media (max-width: 720px) {
  .submit-hero-subtitle { margin-top: 12px; }
}
.page-hero h1.submit-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}
.submit-hero-cutout {
  display: inline-flex;
  align-items: center;
  height: clamp(100px, 10vw, 170px);
  aspect-ratio: 1 / 1;
}
.submit-hero-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Collab page: everything centered, consistent section titles */
.page-collab section { text-align: center; }
.page-collab .collab-list,
.page-collab .fit-list,
.page-collab .access-grid,
.page-collab .newsletter-testimonials { margin-left: auto; margin-right: auto; }

.collab-hero { text-align: center; }
.collab-hero-cutout {
  display: block;
  margin: 0 auto 8px;
  width: clamp(140px, 16vw, 220px);
  aspect-ratio: 1 / 1;
}
.collab-hero-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Tighten the m|enna gap in the hero title */
.page-collab .submit-hero-title > span:first-child { display: inline-flex; align-items: baseline; gap: 0; }
.page-collab .submit-hero-title > span:first-child .italic-script { margin-right: -0.05em; }

/* Section titles across the page — match menna picks sizing (burgundy text via default since page bg is burgundy too, but section is on burgundy → use cream) */
.page-hero h2.collab-section-title,
.collab-section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 auto var(--space-md);
  text-align: center;
}

/* Recent collabs heading — distinct, smaller */
.page-collab .collab-recent .collab-section-title {
  font-family: var(--font-body);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0.7;
}

/* Access & attention cutout above its title */
.collab-access-cutout {
  display: block;
  margin: 0 auto 6px;
  width: clamp(70px, 8vw, 110px);
  aspect-ratio: 1 / 1;
}
.collab-access-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Testimonials grid on collab — reuse newsletter-testimonial styling, 2 columns on desktop */
.collab-testimonials-grid {
  max-width: 1080px;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
  margin-top: 0;
}
.collab-testimonials-grid .newsletter-testimonial { max-width: none; }
@media (max-width: 720px) {
  .collab-testimonials-grid { grid-template-columns: 1fr; }
}

/* Access & attention — cream background, 4 items on one row, compact */
.page-collab .collab-access {
  background: var(--cream);
  color: var(--burgundy);
  padding: var(--space-md) var(--space-md);
  max-width: none;
  margin: 0;
  width: 100%;
}
.page-collab .collab-access > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.page-collab .collab-access .collab-section-title { color: var(--burgundy); }

.access-list {
  list-style: none;
  padding: 0;
  margin: var(--space-xl) auto 0;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
}
.access-item p { text-align: center; }
.access-stats li { justify-content: center; }
.access-kicker {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--burgundy);
  text-transform: uppercase;
  margin: 0 0 2px;
  opacity: 0.75;
}
.access-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--burgundy);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.access-item p {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--burgundy);
  opacity: 0.85;
  margin: 0;
}
.access-stats {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.access-stats li {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--burgundy);
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 5px;
}
.access-stats strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--burgundy);
  margin-right: 2px;
  line-height: 1;
}
.access-stat-meta {
  opacity: 0.55;
  font-size: 9px;
  margin-left: 3px;
}

/* Section headlines ("The first platform of its kind.", "4,300 subscribers.", etc.) in chocolate */
.page-collab .collab-access .access-title {
  color: #6b3d2a;
}

@media (max-width: 900px) {
  .access-list { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
}
@media (max-width: 540px) {
  .access-list { grid-template-columns: 1fr; gap: 40px; }
}

/* What partners say — burgundy background, cream text + rose quatrefoil avatars */
.page-collab .collab-testimonials {
  background: var(--burgundy);
  padding: var(--space-lg) var(--space-md);
  max-width: none;
  margin: 0;
  width: 100%;
}
.page-collab .collab-testimonials > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.page-collab .collab-testimonials .collab-section-title { color: var(--cream); }
.page-collab .collab-testimonials .testimonial-avatar { color: var(--desert-rose); }
.page-collab .collab-testimonials .testimonial-name { color: var(--cream); }
.page-collab .collab-testimonials .newsletter-testimonial p { color: var(--cream); opacity: 0.95; }

.collab-partners-cutout {
  display: block;
  margin: 0 auto 10px;
  width: clamp(90px, 9vw, 120px);
  aspect-ratio: 1 / 1;
  color: var(--cream);
}
.collab-partners-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ─── Partners testimonials v2 — featured + secondary row, burgundy bg ─── */
.page-collab .collab-testimonials-v2 {
  padding: var(--space-xl) var(--space-md);
}
.page-collab .collab-testimonials-v2 .testimonials-v2-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 var(--space-lg);
}

/* Featured testimonial — centered stack: cutout above quote */
.testimonial-featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  margin: 0 auto var(--space-xl);
  max-width: 760px;
}
.testimonial-featured-cutout {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
}
.testimonial-featured-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.testimonial-featured-body {
  position: relative;
  padding-top: 40px;
}
.testimonial-quote-mark {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--cream);
  opacity: 0.9;
}
.testimonial-quote-mark-end {
  position: static;
  display: block;
  transform: none;
  margin: 12px auto 0;
  text-align: center;
}
.testimonial-featured-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--cream);
  margin: 0 auto 24px;
  padding: 0;
  max-width: 720px;
}
.testimonial-featured-attr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.testimonial-featured-name {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.testimonial-featured-brand {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
  opacity: 0.75;
}

/* Secondary row of 3 testimonials */
.testimonials-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 56px);
}
.testimonial-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.testimonial-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
  opacity: 0.6;
  margin-bottom: 4px;
}
.testimonial-heart {
  display: inline-block;
  width: 14px;
  height: 14px;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 6px;
}
.testimonial-heart svg { display: block; width: 100%; height: 100%; }
.testimonial-small-quote {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.92;
  margin: 0 0 8px;
}
.testimonial-small-name {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
}
.testimonial-small-brand {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
  opacity: 0.65;
}

@media (max-width: 820px) {
  .testimonial-featured { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-featured-cutout { max-width: 260px; margin: 0 auto; }
  .testimonials-secondary { grid-template-columns: 1fr; gap: 32px; }
}

/* Larger testimonial width on desktop in this section */
.page-collab .collab-testimonials-grid {
  max-width: 1180px;
  gap: 48px 80px;
  margin-top: var(--space-lg);
}
.page-collab .collab-testimonials .collab-section-title { margin-bottom: var(--space-lg); }

/* The right partners — rose background */
.page-collab .collab-fit {
  background: var(--desert-rose);
  padding: var(--space-xl) var(--space-md) var(--space-lg);
  max-width: none;
  margin: 0;
  width: 100%;
}
.page-collab .collab-fit > * { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.page-collab .collab-fit .collab-section-title { color: var(--burgundy); }

/* Recent collabs — carousel with smaller cards */
.collab-recent-swiper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px 72px;
  overflow: hidden;
  position: relative;
}
.collab-recent-swiper .swiper-pagination {
  bottom: 24px;
}
.collab-recent-swiper .swiper-wrapper { align-items: stretch; }
.collab-recent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  height: auto;
}
.collab-recent-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 217, 217, 0.22) 0%, rgba(248, 247, 243, 0.08) 100%),
    var(--cream-frame);
  border: 1px solid var(--cream-stroke);
  position: relative;
  overflow: hidden;
}
.collab-recent-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255, 217, 217, 0.3) 0%, transparent 55%),
                    radial-gradient(circle at 70% 70%, rgba(248, 247, 243, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.collab-recent-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.collab-recent-visual:has(img)::after { display: none; }
.collab-recent-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.collab-recent-card .collab-type {
  font-family: var(--font-body);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  opacity: 0.65;
}
.collab-recent-card .collab-name {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.2;
}
.collab-recent-swiper .swiper-button-prev,
.collab-recent-swiper .swiper-button-next {
  color: var(--cream);
  width: 28px;
  height: 28px;
}
.collab-recent-swiper .swiper-button-prev::after,
.collab-recent-swiper .swiper-button-next::after { font-size: 16px; }
.collab-recent-swiper .swiper-pagination-bullet { background: var(--cream); opacity: 0.4; }
.collab-recent-swiper .swiper-pagination-bullet-active { opacity: 1; }

/* The right partners — cards with cutouts */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  max-width: 1080px;
  margin: 0 auto var(--space-md);
  text-align: center;
}
.fit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}
.fit-cutout {
  width: clamp(90px, 9vw, 130px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fit-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fit-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .fit-card h3 { font-size: 14px; }
}
.fit-card p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--burgundy);
  opacity: 0.85;
  max-width: 260px;
}
.page-collab .collab-fit .pill-outline {
  border-color: var(--burgundy);
  color: var(--burgundy);
}
.page-collab .collab-fit .pill-outline:hover { background: rgba(71, 18, 36, 0.08); }

/* Ready when you are — smaller CTA title */
.collab-cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  text-align: center;
  margin: 0 auto var(--space-md);
}

/* Category + country chip pickers on submit form */
.field-checkbox-group { border: none; padding: 0; margin: 0 0 18px; }
.field-checkbox-group legend { padding: 0; margin-bottom: 10px; }
.submit-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.submit-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border: 1px solid rgba(248, 247, 243, 0.35);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
  cursor: pointer;
  user-select: none;
  transition: border-color var(--transition), background var(--transition);
}
.submit-chip input { display: none; }
.submit-chip:hover { border-color: var(--cream); }
.submit-chip:has(input:checked) {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

.event-addcal-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  background: transparent;
  border: 1px solid rgba(248, 247, 243, 0.45);
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.event-addcal-detail:hover { border-color: var(--cream); background: rgba(248, 247, 243, 0.08); }

/* Horizontal card preview — spans 2 grid columns, image left, info right */
.event-card-horizontal-preview {
  grid-column: 1 / -1;
}
.event-card-horizontal-preview .event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 0;
}
.event-card-horizontal-preview .event-card-link {
  display: contents;
}
.event-card-horizontal-preview .event-image {
  aspect-ratio: 4/3;
  height: 100%;
}
.event-card-horizontal-preview .event-body {
  padding: 18px 22px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-card-horizontal-preview .event-actions {
  padding: 0 22px 18px;
  display: flex;
  justify-content: flex-end;
}
.event-card-horizontal-preview .event-title {
  font-size: 22px;
  font-weight: 700;
}
.event-card-horizontal-preview .event-meta { font-size: 12px; }
.event-card-horizontal-preview .event-meta .meta-item { font-size: 12px; }
.events-archive .event-desc { display: none; }
.events-archive .event-details-hint { color: var(--burgundy); opacity: 0.85; }
.event-count {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: var(--space-md);
  font-style: italic;
  font-family: var(--font-display);
}

.empty-state { text-align: center; padding: var(--space-2xl) 20px; }
.empty-state .serif { font-size: 32px; margin-bottom: var(--space-sm); display: block; }

/* ─── EVENT DETAIL PAGE ────────────────────────────── */
.event-detail {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--space-md) 56px var(--space-xl);
}
.event-back-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: var(--space-md);
}
.event-back-link:hover { opacity: 1; }

.event-detail-hero {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.event-detail-hero .event-back-link {
  display: block;
  text-align: left;
}
.event-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  margin: 0 0 10px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.event-kicker-flag { font-size: 14px; letter-spacing: 0; }
.event-detail-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 12px;
}
.event-detail-subtitle {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--cream);
  opacity: 0.82;
  margin: 0;
}
.event-detail-subtitle .italic-script { color: var(--desert-rose); }

.event-detail-media {
  max-width: 920px;
  margin: 0 auto var(--space-lg);
}
.event-detail-media img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-card);
  display: block;
}

.event-detail-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.event-detail-main { display: flex; flex-direction: column; gap: var(--space-md); }
.event-detail-description {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.92;
  margin: 0;
}
.event-detail-description p { margin: 0 0 12px; }
.event-detail-description p:last-child { margin-bottom: 0; }

.event-detail-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  border-left: 1px solid var(--cream-stroke);
  padding-left: var(--space-md);
  height: fit-content;
}
.meta-row { display: flex; flex-direction: column; gap: 4px; }
.meta-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--cream);
  opacity: 0.6;
}
.meta-value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}

.event-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 4px;
}

@media (max-width: 780px) {
  .event-detail-body {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }
  .event-detail-main { order: 2; }
  .event-detail-meta {
    order: 1;
    border-left: none;
    border-bottom: 1px solid var(--cream-stroke);
    padding-left: 0;
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .event-detail { padding-left: var(--space-md); padding-right: var(--space-md); }
}
.event-detail-note {
  background: var(--cream-frame);
  border-left: 3px solid var(--cream-faint);
  padding: 16px 20px;
  font-size: 14px;
  font-style: italic;
  margin-bottom: var(--space-md);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.note-label { font-weight: 600; font-style: normal; opacity: 0.8; margin-right: 6px; }
.event-detail-source {
  display: flex; gap: 16px; align-items: center;
  font-size: 13px; opacity: 0.6;
  border-top: 1px solid var(--cream-stroke);
  padding-top: var(--space-sm);
}

/* ─── NEWSLETTER + PEOPLE + MISSION ───────────────── */
.newsletter-section,
.people-section,
.mission-section,
.about-values {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.people-section { display: block; padding-top: var(--space-lg); }
.mission-section {
  padding-bottom: var(--space-2xl);
  background-size: cover;
  background-position: center 75%;
  background-repeat: no-repeat;
  min-height: 520px;
  position: relative;
  grid-template-columns: 1fr !important;
  text-align: center;
}
/* Dark scrim so centered text stays readable over the image */
.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 17, 12, 0.45);
  pointer-events: none;
}
.mission-section > * { position: relative; z-index: 1; }
.mission-section .mission-content {
  justify-self: center;
  max-width: 640px;
  margin: 0 auto;
}
.mission-section .pill { padding: 9px 34px; margin-top: 24px; }
.mission-section .mission-content p { margin-left: auto; margin-right: auto; }

.newsletter-content h2,
.mission-content h2,
.about-values-text h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.newsletter-content p,
.mission-content p {
  margin-bottom: var(--space-sm);
  opacity: 0.9;
  font-size: 16px;
  max-width: 460px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: var(--space-md);
  max-width: 460px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--cream-stroke);
  background: var(--cream-frame);
  color: var(--cream);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-family: var(--font-body);
  min-width: 200px;
}
.newsletter-form input::placeholder { color: var(--cream-faint); }
.newsletter-form input:focus { outline: 2px solid var(--cream-faint); outline-offset: 2px; }

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.person-card {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

/* ─── MENNA-SHAPE CUTOUTS (transparent PNGs) ──────── */
/* For quatrefoil-cut PNGs from Assets/ (unnamed*.png etc.)
   — the shape is baked into the alpha channel, so we strip any
   container background / border-radius / aspect-ratio that would
   compete with the natural silhouette. */
.about-hero-image-shape,
.collab-hero-image-shape,
.person-shape {
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible;
}
.about-hero-image-shape img,
.collab-hero-image-shape img,
.person-shape img {
  width: 100%;
  height: auto;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  max-width: none;
  background: transparent;
}
.about-hero-image-shape img { max-width: 220px; }
.page-about .about-hero {
  grid-template-columns: 220px minmax(0, 620px);
  justify-content: center;
  align-items: start;
  gap: var(--space-lg);
  text-align: left;
}
.page-about .about-hero-image { max-width: 220px; }
.page-about .about-hero-image img { max-width: 220px; }
.page-about .about-hero-text { max-width: 620px; }
.page-about .about-hero-text p { max-width: none; text-align: left; }
.page-about .about-hero-text .about-hero-kicker,
.page-about .about-hero-text .about-hero-title { text-align: left; }
@media (max-width: 720px) {
  .page-about .about-hero {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: var(--space-md);
  }
  .page-about .about-hero-image { margin: 0 auto; }
  .page-about .about-hero-text { margin: 0 auto; }
  .page-about .about-hero-text .about-hero-kicker,
  .page-about .about-hero-text .about-hero-title { text-align: center; }
}
.page-about .about-hero-image img { max-width: 220px; }
.collab-hero-image-shape { max-width: 520px; margin: 0 auto var(--space-md); }
.collab-hero-image-shape img { max-width: 520px; }

.people-grid-shapes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  max-width: 1100px;
  margin: var(--space-md) auto 0;
  padding: 0 24px;
}
.person-shape {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: auto;
}
.person-shape img {
  max-width: 260px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
  transition: transform var(--transition);
}
.person-shape:hover img { transform: translateY(-4px) rotate(-1deg); }

/* ─── NEWSLETTER — POLAROID + CARD + SHAPES ───────── */
.newsletter-section {
  display: block;
  position: relative;
  padding: var(--space-xl) 56px var(--space-2xl);
  text-align: center;
  background: var(--cream);
  color: var(--burgundy);
}

/* Dedicated /newsletter/ page — centered intro + horizontal testimonials */
.page-newsletter .newsletter-section {
  display: block;
  grid-template-columns: none;
  text-align: center;
}
.page-newsletter .newsletter-intro {
  max-width: 620px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}
.page-newsletter .newsletter-about {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.page-newsletter .newsletter-desc { max-width: 560px; margin: 0 auto; text-align: center; }
.page-newsletter .newsletter-about { margin-bottom: var(--space-lg); }
.page-newsletter .newsletter-form { margin: 0 auto; }
.page-newsletter .newsletter-fineprint { text-align: center; }

/* Testimonials row — horizontal, below the intro */
.page-newsletter .newsletter-testimonials {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: var(--space-xl) auto 0;
  padding: 0;
  border-top: none;
  text-align: left;
}
.page-newsletter .newsletter-testimonial-hero {
  margin: 0;
}
.page-newsletter .newsletter-testimonial-hero p {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  margin: 0 0 12px;
}
.page-newsletter .newsletter-testimonials-label { display: none; }
.page-newsletter .newsletter-testimonial-small { margin: 0; }
@media (max-width: 900px) {
  .page-newsletter .newsletter-testimonials {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .page-newsletter .newsletter-testimonial-hero { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .page-newsletter .newsletter-testimonials { grid-template-columns: 1fr; }
  .page-newsletter .newsletter-testimonial-hero { grid-column: auto; }
}

/* Dedicated /newsletter/ page — archive section below */
.newsletter-archive {
  max-width: 880px;
  margin: 0 auto;
  padding: var(--space-xl) 56px var(--space-2xl);
  text-align: center;
}
.newsletter-archive-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 8px;
}
.newsletter-archive-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.75;
  margin: 0 auto var(--space-lg);
  max-width: 520px;
}
.newsletter-archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.newsletter-archive-item {
  padding: 20px 0;
  border-top: 1px solid rgba(248, 247, 243, 0.15);
}
.newsletter-archive-item:last-child { border-bottom: 1px solid rgba(248, 247, 243, 0.15); }
.newsletter-archive-link {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 18px;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.15s ease;
}
.newsletter-archive-link:hover { opacity: 0.7; }
.newsletter-archive-thumb {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(248, 247, 243, 0.06);
  flex-shrink: 0;
}
.newsletter-archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.newsletter-archive-meta { min-width: 0; }
.newsletter-archive-date {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  margin: 0 0 4px;
}
.newsletter-archive-title-text {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  color: var(--cream);
  margin: 0;
  line-height: 1.3;
  font-weight: 500;
}
.newsletter-archive-arrow {
  font-size: 18px;
  color: var(--cream);
  opacity: 0.5;
  padding-left: 6px;
}
.newsletter-archive-placeholder {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}
.newsletter-archive-coming {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--cream);
  margin: 0 0 10px;
}
.newsletter-archive-coming-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.75;
  margin: 0 auto;
  max-width: 480px;
  line-height: 1.55;
}
.newsletter-archive-coming-sub a {
  color: var(--cream);
  border-bottom: 1px solid rgba(248, 247, 243, 0.35);
}
.newsletter-section .newsletter-eyebrow,
.newsletter-section .newsletter-title,
.newsletter-section .newsletter-desc,
.newsletter-section .newsletter-fineprint,
.newsletter-section .testimonial-name,
.newsletter-section .newsletter-testimonial p {
  color: var(--burgundy);
}
.newsletter-section .newsletter-form {
  border-bottom-color: rgba(71, 18, 36, 0.35);
}
.newsletter-section .newsletter-form input {
  color: var(--burgundy);
}
.newsletter-section .newsletter-form input::placeholder {
  color: rgba(71, 18, 36, 0.5);
}
.newsletter-section .newsletter-submit {
  background: var(--burgundy);
  color: var(--cream);
}
.newsletter-section .newsletter-submit:hover {
  background: var(--burgundy-deep);
}

/* Hero testimonial — oversized quote with signature-style attribution */
.newsletter-section .newsletter-testimonial-hero {
  margin-bottom: 0;
}
.newsletter-section .newsletter-testimonial-hero p {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  color: var(--burgundy);
  opacity: 1;
  margin: 0 0 14px;
}
.newsletter-section .newsletter-testimonial-hero .testimonial-signature {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--burgundy);
  opacity: 0.7;
  letter-spacing: 0.01em;
}

/* "— In their words" label between hero and the 3 smaller ones */
.newsletter-section .newsletter-testimonials-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  opacity: 0.6;
  margin: 36px 0 8px;
}

/* Smaller testimonials below — quote + signature, compact */
.newsletter-section .newsletter-testimonial-small {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.newsletter-section .newsletter-testimonial-small p {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--burgundy);
  opacity: 0.9;
  margin: 0 0 4px;
}
.newsletter-section .newsletter-testimonial-small .testimonial-small-signature {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  color: var(--burgundy);
  opacity: 0.65;
  letter-spacing: 0.01em;
}

.newsletter-section {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px);
  gap: var(--space-xl);
  align-items: start;
  padding: var(--space-xl) 56px;
  text-align: left;
}
.newsletter-section .newsletter-testimonials { margin-top: 74px; }
.newsletter-intro {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.newsletter-about {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.newsletter-portrait {
  margin: 0;
  flex-shrink: 0;
}
.newsletter-portrait img {
  width: 120px;
  height: auto;
  display: block;
}
.newsletter-editor-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  margin: 0 0 20px;
}
.newsletter-editor-label .italic-script {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: normal;
  text-transform: none;
  opacity: 1;
}
.newsletter-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  margin-bottom: 16px;
}
.newsletter-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 36px;
}
.newsletter-title-logo {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 335 / 38;
}
.newsletter-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.9;
  max-width: 440px;
  margin: 0;
}

/* Compact testimonials column on the left */
.newsletter-testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  margin-top: 32px;
}
.newsletter-testimonial {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  text-align: left;
}
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.testimonial-avatar {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  color: var(--desert-rose);
  flex-shrink: 0;
  line-height: 1;
}
.testimonial-avatar .menna-shape-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.testimonial-name {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.newsletter-testimonial p {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.9;
  margin: 0;
}
@media (max-width: 840px) {
  .newsletter-section { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-intro, .newsletter-testimonials { max-width: none; }
}
@media (max-width: 480px) {
  .newsletter-about { flex-direction: column; align-items: flex-start; gap: 14px; }
  .newsletter-portrait img { width: 100px; }
}
.newsletter-form {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  max-width: 520px;
  width: 100%;
  border-radius: 0;
  overflow: visible;
  border: none;
  border-bottom: 1px solid rgba(248, 247, 243, 0.35);
  background: transparent;
  padding-bottom: 4px;
}
.newsletter-section .newsletter-form input {
  flex: 1;
  padding: 10px 2px;
  border: none;
  background: transparent;
  color: var(--burgundy);
  font-size: 16px;
  font-family: var(--font-body);
  min-width: 140px;
}
.newsletter-section .newsletter-form input::placeholder { color: rgba(71, 18, 36, 0.5); }
.newsletter-section .newsletter-form input:focus { outline: none; }
.newsletter-submit {
  background: var(--cream);
  color: var(--burgundy);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 26px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.newsletter-submit:hover { background: var(--cream-soft); transform: translateY(-1px); }

.newsletter-embed + .newsletter-fineprint {
  margin-top: 6px;
  text-align: center;
  align-self: stretch;
  width: 100%;
}
.newsletter-fineprint {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--cream);
  opacity: 0.55;
  letter-spacing: 0.01em;
}
.newsletter-archives {
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 17px;
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.newsletter-archives:hover { opacity: 0.65; }
.newsletter-archives .arrow { margin-left: 4px; }

/* Large solid-burgundy quatrefoils with cream labels overlaid */
.menna-shapes {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin: var(--space-lg) auto;
  flex-wrap: wrap;
}
.menna-shape {
  position: relative;
  width: clamp(140px, 18vw, 200px);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);   /* SVG uses currentColor → solid burgundy */
}
.menna-shape-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.menna-shape-label {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.15;
  color: var(--cream);
  padding: 4px 8px;
}

/* ─── ABOUT PAGE ───────────────────────────────────── */
.about-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) 56px var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-lg);
  align-items: start;
}
.about-hero-image .placeholder-image { aspect-ratio: 3/4; max-width: 380px; }
.about-hero-text h1,
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  color: var(--cream);
}
.about-hero-text p { font-size: 14px; line-height: 1.6; margin-bottom: 12px; opacity: 0.9; max-width: 620px; }
.about-closer {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px !important;
  line-height: 1.6;
  opacity: 0.95;
  display: block;
  margin: var(--space-md) 0 var(--space-sm);
  text-align: center;
  max-width: none !important;
}
.about-signoff {
  font-family: var(--font-display) !important;
  font-style: normal;
  font-size: clamp(14px, 1.3vw, 17px) !important;
  line-height: 1.2;
  color: var(--cream);
  opacity: 0.95 !important;
  text-align: center;
  margin: 0 auto !important;
  max-width: none !important;
}

/* About values — cream full-bleed section with cutout above kicker */
.page-about .about-values {
  max-width: none;
  margin: 0;
  width: 100%;
  display: block;
  background: var(--cream);
  color: var(--burgundy);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}
.about-values-cutout {
  display: block;
  margin: 0 auto var(--space-sm);
  width: clamp(140px, 14vw, 200px);
  aspect-ratio: 1 / 1;
}
.about-values-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about-values-kicker {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--burgundy);
  margin: 0 auto var(--space-md);
  opacity: 0.85;
}

/* "Welcome to menna" kicker above Samar's headline in about hero */
.about-hero-kicker {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  color: var(--burgundy);
  opacity: 0.75;
  margin: 0 0 8px;
}

/* Small cutout between "We aim to be" and values list */
.values-intro-cutout {
  display: block;
  margin: 0 auto var(--space-md);
  width: clamp(70px, 6vw, 96px);
  aspect-ratio: 1 / 1;
}
.values-intro-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.page-about .about-values .collab-section-title,
.page-about .values-intro {
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 auto var(--space-md);
  text-align: center;
  opacity: 1;
}
.page-about .values-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.page-about .values-list li {
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--burgundy);
  flex: 0 1 160px;
  text-align: center;
  line-height: 1.25;
}
.values-cutout {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--burgundy);
  opacity: 1;
}
.values-cutout .menna-shape-svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.about-team {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) 56px;
  text-align: center;
}

/* Team section on about — cream bg variant + italic quotes */
.page-about .about-team-cream {
  background: var(--cream);
  color: var(--burgundy);
  max-width: none;
  width: 100%;
  padding: var(--space-xl) var(--space-md);
}
.page-about .about-team-cream h2,
.page-about .about-team-cream h3 { color: var(--burgundy); }
.page-about .about-team-cream .team-role { color: var(--burgundy); opacity: 0.65; }
.page-about .about-team-cream .team-quote {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  color: var(--burgundy);
  opacity: 0.9;
}

/* Collab access card titles — bold */
.page-collab .collab-access .access-card h3 { font-weight: 700; }
.about-team h2,
.page-about .mission-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}
.team-photo { width: 220px; height: 220px; margin: 0 auto var(--space-sm); border-radius: 50%; overflow: hidden; }
.team-photo .placeholder-image { border-radius: 50%; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

/* About hero portrait + about-decorative + newsletter/mission images */
.about-hero-image img,
.about-values-image img,
.newsletter-image img,
.mission-image img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
}
.about-hero-image img { aspect-ratio: 3/4; max-width: 380px; }
.newsletter-image img,
.mission-image img { aspect-ratio: 4/5; max-width: 480px; }
.about-values-image img { aspect-ratio: 1/1; max-width: 380px; }

/* Contact envelope graphic */
.contact-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Collab hero graphic */
.collab-hero-image {
  margin: 0 auto var(--space-md);
  max-width: 560px;
}
.collab-hero-image img {
  width: 100%;
  border-radius: var(--radius-card);
}
.team-member h3 { font-size: 19px; margin-bottom: 4px; }
.team-role { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; margin-bottom: 14px; }
.team-quote { font-family: var(--font-body); font-style: normal; font-size: 13px; line-height: 1.55; max-width: 300px; margin: 0 auto; opacity: 0.9; }

/* ─── COLLAB PAGE ──────────────────────────────────── */
.collab-recent, .collab-testimonials, .collab-access, .collab-fit, .collab-cta {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-lg) 56px;
}
.collab-list { list-style: none; max-width: 720px; margin: 0 auto; }
.collab-list li {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--cream-stroke);
  align-items: baseline;
}
.collab-type { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.6; }
.collab-name { font-family: var(--font-display); font-size: 22px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.testimonial {
  padding: var(--space-md);
  border: 1px solid var(--cream-stroke);
  border-radius: var(--radius-card);
  background: var(--cream-frame);
}
.testimonial p { font-family: var(--font-display); font-size: 19px; line-height: 1.5; margin-bottom: var(--space-sm); font-style: italic; }
.testimonial footer { font-size: 13px; opacity: 0.7; }

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.access-card {
  padding: var(--space-md);
  border: 1px solid var(--cream-stroke);
  border-radius: var(--radius-card);
  background: var(--cream-frame);
}
.access-card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; font-weight: 400; }
.access-card p { font-size: 14px; line-height: 1.55; opacity: 0.85; }

.fit-list {
  list-style: none;
  margin-bottom: var(--space-md);
}
.fit-list li {
  font-family: var(--font-display);
  font-size: 24px;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--cream-stroke);
}

.collab-cta { text-align: center; padding-top: var(--space-md); padding-bottom: var(--space-xl); }
.collab-cta h2 { font-size: clamp(22px, 2vw, 28px); margin-bottom: var(--space-md); }

/* ─── CONTACT PAGE ─────────────────────────────────── */
.contact-hero { padding-top: var(--space-md); }
.contact-hero-image {
  width: 120px; height: 120px;
  margin: 0 auto var(--space-md);
}

/* New: direct-contact block (email + IG) */
.contact-direct-section {
  max-width: 560px;
  margin: 0 auto;
  padding: var(--space-md) 56px var(--space-xl);
  text-align: center;
}
.contact-direct .contact-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin: 0 0 14px;
  font-size: clamp(18px, 1.8vw, 22px);
  font-family: var(--font-display);
}
.contact-line-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
  min-width: 72px;
  text-align: right;
}
.contact-direct .contact-line a {
  color: var(--cream);
  border-bottom: 1px solid rgba(248, 247, 243, 0.35);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.contact-direct .contact-line a:hover { border-bottom-color: var(--cream); }

/* Full-width envelope image below contact links */
.contact-hero-image-fullwidth {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.contact-hero-image-fullwidth img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.contact-form-section {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-md) 56px var(--space-2xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-lg);
}
.contact-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.6; }
.field input, .field select, .field textarea {
  padding: 12px 16px;
  border: 1px solid var(--cream-stroke);
  background: var(--cream-frame);
  color: var(--cream);
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font-body);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--cream-faint);
  outline-offset: 2px;
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cream) 50%), linear-gradient(135deg, var(--cream) 50%, transparent 50%); background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px); background-size: 6px 6px; background-repeat: no-repeat; }

.contact-direct h3 { font-size: 22px; margin-bottom: var(--space-sm); }
.contact-direct p { margin-bottom: 8px; }
.contact-direct a { border-bottom: 1px solid var(--cream-stroke); padding-bottom: 1px; }

/* Submit form — single column (form only, no aside) */
.page-submit .submit-form-section {
  grid-template-columns: 1fr;
  max-width: 720px;
  background: var(--cream);
  color: var(--burgundy);
  padding: var(--space-lg);
  border-radius: 12px;
  margin: var(--space-md) auto var(--space-2xl);
  box-shadow: 0 4px 16px rgba(71, 18, 36, 0.08);
}

/* Inputs/selects/textareas inside the cream form */
.page-submit .submit-form-section .contact-form input[type="text"],
.page-submit .submit-form-section .contact-form input[type="email"],
.page-submit .submit-form-section .contact-form input[type="url"],
.page-submit .submit-form-section .contact-form textarea,
.page-submit .submit-form-section .contact-form select {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(71, 18, 36, 0.25);
}
.page-submit .submit-form-section .contact-form input:focus,
.page-submit .submit-form-section .contact-form textarea:focus,
.page-submit .submit-form-section .contact-form select:focus {
  border-bottom-color: var(--burgundy);
}
.page-submit .submit-form-section .contact-form input::placeholder,
.page-submit .submit-form-section .contact-form textarea::placeholder {
  color: rgba(71, 18, 36, 0.4);
}
.page-submit .submit-form-section .field-label,
.page-submit .submit-form-section legend {
  color: var(--burgundy);
  opacity: 1;
}

/* Chips on cream — inverted so selected chips stand out on cream */
.page-submit .submit-form-section .submit-chip {
  color: var(--burgundy);
  border-color: rgba(71, 18, 36, 0.25);
}
.page-submit .submit-form-section .submit-chip:hover {
  border-color: var(--burgundy);
}
.page-submit .submit-form-section .submit-chip:has(input:checked) {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

.page-submit .contact-form button[type="submit"] {
  align-self: center;
  justify-content: center;
  min-width: 180px;
  padding-left: 26px;
  padding-right: 26px;
  text-align: center;
  margin-top: 12px;
}

/* Submit page: What happens next — cream section below form */
.submit-next {
  background: var(--cream);
  color: var(--burgundy);
  padding: var(--space-xl) var(--space-md);
}
.submit-next-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.submit-next-cutout {
  display: block;
  margin: 0 auto 10px;
  width: clamp(80px, 9vw, 120px);
  aspect-ratio: 1 / 1;
}
.submit-next-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.submit-next-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  color: var(--burgundy);
  margin-bottom: var(--space-md);
}
.submit-next p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--burgundy);
  margin-bottom: 10px;
}
.submit-next a {
  color: var(--burgundy);
  border-bottom: 1px solid rgba(71, 18, 36, 0.4);
  padding-bottom: 1px;
}

/* ─── LEGAL PAGES ──────────────────────────────────── */
.legal-content { max-width: 720px; margin: 0 auto; padding: var(--space-md) 56px var(--space-xl); }
.legal-content h2 {
  font-size: clamp(22px, 2.2vw, 28px);
  margin-top: var(--space-md);
  margin-bottom: 12px;
}
.legal-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  opacity: 0.92;
}
.legal-content .legal-lede {
  font-size: 18px;
  opacity: 1;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--cream-stroke);
}
.legal-content a {
  border-bottom: 1px solid var(--cream-stroke);
  transition: opacity var(--transition);
}
.legal-content a:hover { opacity: 0.7; }
.legal-content .legal-h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin: var(--space-sm) 0 8px;
  opacity: 0.95;
}
.legal-list { list-style: none; padding: 0; margin-bottom: var(--space-sm); }
.legal-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 16px;
  line-height: 1.55;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 1px;
  background: var(--accent-pink);
}

/* ─── FOOTER ───────────────────────────────────────── */
.site-footer {
  background: var(--burgundy);
  padding: var(--space-md) 56px var(--space-md);
  margin-top: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.site-footer .footer-logo .logo-svg { height: 56px; }
.footer-tagline {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}
.footer-nav a { opacity: 0.95; transition: opacity var(--transition); }
.footer-nav a:hover { opacity: 0.6; }
.footer-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--cream-stroke);
}
.footer-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: var(--space-sm) 0;
}
.footer-social-link {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--cream-stroke);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  color: var(--cream);
}
.footer-social-link:hover { background: var(--cream); color: var(--burgundy-deep); }
.footer-bottom {
  width: 100%;
  max-width: var(--max-width);
  margin: var(--space-md) auto 0;
  padding-top: var(--space-sm);
  font-size: 13px;
  opacity: 0.75;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  border-top: 1px solid var(--cream-stroke);
}
.footer-legal { display: flex; align-items: center; gap: 18px; }
.footer-legal a { transition: opacity var(--transition); }
.footer-legal a:hover { opacity: 0.6; }
.footer-bottom .footer-sep { height: 14px; }

/* Hide mobile-only nav links on desktop */
.nav-link-mobile { display: none; }

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto auto; padding: 18px 24px; }
  .primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-actions .pill-outline { display: none; }
  .logo-wordmark { font-size: 30px; }

  /* Mobile: bump padding slightly so touch targets hit ~40px without looking oversized */
  .pill { padding: 10px 20px; font-size: 14px; min-height: 40px; }
  .pill-sm { padding: 8px 16px; font-size: 12px; min-height: 34px; }

  /* #8: mobile-menu dropdown when toggled open */
  .primary-nav.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100vw;
    background: var(--cream);
    padding: 24px 0 36px;
    gap: 0;
    border-top: 1px solid rgba(73, 17, 35, 0.08);
    z-index: 50;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  }
  .primary-nav.open .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--burgundy);
    padding: 12px 28px;
    border-bottom: 1px solid rgba(73, 17, 35, 0.08);
    width: 100%;
  }
  .primary-nav.open .nav-link:last-child { border-bottom: none; }
  .primary-nav.open .nav-link-mobile { display: flex; }
  .primary-nav.open .nav-cutout {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .primary-nav.open .nav-label { text-align: left; }
}

/* Hide cutouts on desktop nav (only used in mobile drawer) */
.primary-nav:not(.open) .nav-cutout { display: none; }
@media (max-width: 900px) {

  .hero { padding: 40px 24px 80px; }
  .hero-headline,
  .page-hero h1.submit-hero-title { font-size: clamp(30px, 9vw, 52px); }
  .hero-mission { margin-top: 48px; }
  .hero-pillars { gap: 28px; font-size: 18px; }

  .events-preview, .events-archive,
  .newsletter-section, .people-section, .mission-section,
  .about-values, .about-hero, .about-team,
  .collab-recent, .collab-testimonials, .collab-access, .collab-fit, .collab-cta,
  .contact-form-section, .legal-content,
  .section-head, .page-hero, .event-detail, .site-footer {
    padding-left: 24px; padding-right: 24px;
  }

  .newsletter-section, .mission-section, .about-values, .about-hero,
  .event-detail-grid, .contact-form-section, .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .form-row { grid-template-columns: 1fr; }
}

/* #2 + #7: hero pillars centered + no edge-to-edge breakout on small screens */
@media (max-width: 600px) {
  .hero-pillars {
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    font-size: 13px;
    letter-spacing: 0.2em;
  }
  /* Tighter title line stacking on mobile, with extra breathing room between hero-line groups */
  .hero-headline { line-height: 0.92; }
  .hero-line { margin-bottom: -0.32em; gap: 0.18em; }
  .hero-line + .hero-line { margin-top: 0.45em; }
  .hero-portrait-frame,
  .hero-skyline-frame { height: clamp(80px, 22vw, 150px); }
  /* Mobile section headers — cap section titles so they don't look oversized */
  .events-preview .events-section-title,
  .newsletter-title,
  .mission-content h2,
  .about-values-text h2 { font-size: 26px; line-height: 1.1; }

  /* Event cards in swiper — tighten on mobile */
  .events-swiper .event-title { font-size: 16px; line-height: 1.2; }
  .events-swiper .event-date-pill { padding: 6px 10px; min-width: 48px; }
  .events-swiper .date-day { font-size: 22px; font-weight: 700; }
  .events-swiper .date-month { font-size: 10px; }
  .events-swiper .date-weekday { font-size: 9px; }
  .events-swiper .event-country { font-size: 16px; }

  .mission-section {
    min-height: 540px;
    background-size: cover;
    background-position: center bottom;
  }
  .mission-section .mission-content { max-width: none; }
}

/* #3 + #5: very narrow — stack CTAs and newsletter form */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-ctas .pill {
    width: 100%;
    justify-content: center;
  }

  .newsletter-section .newsletter-form input {
    font-size: 14px;
    min-width: 0;
  }
  .newsletter-submit {
    padding: 9px 20px;
    font-size: 13px;
    white-space: nowrap;
  }
}
