/* ── Design Tokens ─────────────────────────────────── */
:root {
  --ink: #1A1008;
  --brown: #3D2010;
  --warm: #6B3E1E;
  --gold: #B8922A;
  --gold-light: #D4AF5A;
  --gold-pale: #EDD98A;
  --cream: #F7F0E3;
  --cream-off: #EFE5CC;
  --muted: #8A6A45;
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* GLOBAL HEADING TYPOGRAPHY */
h1, h2, h3,
.hero-name,
.hero-desktop-name,
.about-hero-title,
.world-title,
.bph-title,
.bio-title,
.broissant-statement-title,
.bs-title,
.bps-title,
.map-teaser-title,
.partners-title,
.broissant-page-hero .bph-title,
.section-title,
.broissant-hero h2,
.b-title,
.project-title,
.ach-title,
.roadmap-phase-title,
.concept-title,
.vision-title {
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 200 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Section headings specifically */
.partners-title,
.map-teaser-title,
.world-title,
.about-hero-title {
  letter-spacing: 0.12em !important;
}

/* Keep italic style only where intentional */
.bs-sub,
.bio-intro-text,
.world-intro-text {
  font-style: italic;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--brown);
  background: #F7F0E3;
  background-image:
    radial-gradient(ellipse at 15% 10%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(139,94,60,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.05) 0%, transparent 55%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility ───────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.section-title .char {
  display: inline-block;
  opacity: 0;
}

/* ── Section Dividers ──────────────────────────────── */
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(184, 146, 42, 0.15);
  transform-origin: left center;
  transform: scaleX(0);
}
.section-divider--dark { background: rgba(212, 175, 90, 0.15); }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--brown); }
.btn--ghost { background: transparent; color: var(--brown); border: 1px solid rgba(61, 32, 16, 0.2); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--cream); border: 1px solid rgba(239, 229, 204, 0.2); }
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn--gold { background: var(--gold); color: var(--ink); position: relative; z-index: 1; }
.btn--gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-light);
  z-index: -1;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s ease;
}
.btn--gold:hover::before { clip-path: inset(0 0 0 0); }

/* ── Navigation — Double Nav ──────────────────────── */
.nav-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 2rem;
  background: rgba(247,240,227,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(61,32,16,0.08);
  transition: padding 0.3s ease;
}
.nav-top-left, .nav-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 80px;
}
.nav-top-right { justify-content: flex-end; }
.nav-logo {
  font-family: var(--font-body);
  font-size: 1.57rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brown);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--brown);
  padding: 0;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav-search:hover { opacity: 1; }
.nav-croissant {
  color: var(--brown);
  opacity: 0.7;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.nav-croissant:hover { opacity: 1; }
.nav-croissant-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* Bottom Nav */
.nav-bottom {
  display: none;
}
.nav-bottom-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}
.nav-bottom-links a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s, opacity 0.2s;
}
.nav-bottom-links a:hover { color: var(--brown); }

/* Body padding for fixed top nav */
body { padding-top: 52px; }

/* ── Hero (Two-column editorial) ───────────────────── */
.hero {
  padding-top: 72px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 45% 55%;
}
.hero__image {
  height: 85vh;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}
.hero__pills {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 20px;
}
.hero__pill {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateY(10px);
}
.hero__pill-dot {
  font-size: 0.6rem;
  color: var(--muted);
  opacity: 0;
}
.hero__name {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--brown);
  margin-bottom: 24px;
  opacity: 0;
}
.hero__rule {
  width: 0;
  height: 1px;
  background: rgba(184, 146, 42, 0.3);
  margin-bottom: 24px;
}
.hero__bio {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(16px);
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__ctas .btn {
  opacity: 0;
  transform: translateY(16px);
}

/* ── Partnerships ──────────────────────────────────── */
.partnerships {
  padding: 3rem 5rem 5rem;
  background: var(--cream);
}
.partnerships .section-eyebrow {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--brown);
  width: 100%;
  margin-bottom: 3rem;
}
.partnerships__grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 0;
}
.partnerships__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(184, 146, 42, 0.08);
  transition: border-color 0.3s ease;
}
.partnerships__logo-item:hover {
  border-color: rgba(184, 146, 42, 0.2);
}
.partnerships__logo-item img {
  max-height: 36px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.8s ease, opacity 0.8s ease;
}
.partnerships__logo-item:hover img {
  filter: grayscale(0%);
  opacity: 0.7;
}
.partnerships__logo-item img[src*="womanizer"] {
  max-height: 26px !important;
}
.partnerships__fallback {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s ease;
}
.partnerships__fallback:hover { color: var(--gold); }

/* ── Partners Ticker ─────────────────────────────── */
.partners-ticker-mobile {
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 2.5rem;
}
.partners-ticker-track {
  display: flex;
  gap: 4rem;
  animation: partnersTicker 22s linear infinite;
  will-change: transform;
  width: max-content;
  align-items: center;
}
.partners-ticker-track img {
  height: 36px;
  width: auto;
  filter: grayscale(0%);
  opacity: 0.75;
  flex-shrink: 0;
}
.partners-ticker-track img[alt="H-E-B"] { height: 52px; }
.partners-ticker-track img[alt="Sony Pictures"] { height: 52px; }
.partners-ticker-track img[alt="Womanizer"] { height: 22px; }
.partners-ticker-track img[alt="SXSW"] { height: 24px; }
.ticker-text-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.7;
  white-space: nowrap;
  flex-shrink: 0;
}
@keyframes partnersTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ── Broissant Statement Section ──────────────────── */
.broissant-statement-section {
  background: var(--ink);
  padding: 6rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.broissant-statement-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,146,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.broissant-statement-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: rgba(184,146,42,0.3);
}
.broissant-statement {
  position: relative;
  z-index: 1;
}
.bs-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 200;
  letter-spacing: 0.2em;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.bs-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.bs-char.visible {
  opacity: 1;
  transform: translateY(0);
}
.bs-tagline {
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,217,138,0.5);
  font-weight: 300;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s;
}
.bs-tagline.visible {
  opacity: 1;
  transform: translateY(0);
}
.bs-sub {
  font-size: clamp(1rem, 2vw, 1.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.8s, transform 0.5s ease 0.8s;
}
.bs-sub.visible {
  opacity: 0.85;
  transform: translateY(0);
}

/* ── Broissant Photo Section ─────────────────────── */
.broissant-photo-section {
  width: 100%;
  padding: 0;
  margin-top: 0;
  background: none;
}
.bps-image {
  width: 100%;
  height: 85vh;
  overflow: hidden;
  position: relative;
}
.bps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.bps-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,16,8,0.4) 0%, transparent 20%, transparent 65%, rgba(26,16,8,0.6) 100%),
    linear-gradient(to right, rgba(26,16,8,0.3) 0%, transparent 15%, transparent 85%, rgba(26,16,8,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.bps-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,8,0.92) 0%, rgba(26,16,8,0.4) 50%, transparent 100%);
  z-index: 1;
}
.bps-content {
  position: absolute;
  bottom: 3rem;
  top: auto;
  transform: none;
  left: 3.5rem;
  right: 3.5rem;
  display: flex;
  justify-content: center;
  z-index: 2;
}
.bps-text-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.bps-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 200;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}
.bps-title br {
  display: none;
}
.bps-ctas {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.bps-btn {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.75rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.bps-btn-outline {
  color: var(--cream);
  border: 1px solid rgba(245,230,192,0.5);
  background: transparent;
}
.bps-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}
.bps-btn-filled {
  color: var(--brown);
  background: var(--gold);
  border: 1px solid var(--gold);
}
.bps-btn-filled:hover {
  background: var(--gold-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.project-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-decoration: none;
  background: var(--ink);
}
.project-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-bakery .project-card-bg {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,146,42,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #3D2010 0%, #1A1008 100%);
}
.project-merch .project-card-bg {
  background:
    radial-gradient(ellipse at 70% 80%, rgba(184,146,42,0.1) 0%, transparent 60%),
    linear-gradient(160deg, #2C1A0E 0%, #1A1008 100%);
}
.project-card:hover .project-card-bg {
  transform: scale(1.05);
}
.project-card-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
  width: 100%;
  background: linear-gradient(to top, rgba(26,16,8,0.98) 40%, rgba(26,16,8,0.3) 100%);
}
.project-tag {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(138, 106, 69, 0.6);
  margin-bottom: 0.75rem;
  display: block;
}
.project-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 200;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.project-invest-tag {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.project-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(237,217,138,0.35);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.project-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,146,42,0.2);
  padding: 0.6rem 1.25rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.project-card:hover .project-cta {
  background: rgba(184,146,42,0.12);
  border-color: var(--gold);
  color: var(--gold-pale);
}
.project-number {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  font-size: 5rem;
  font-weight: 200;
  color: rgba(184,146,42,0.04);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  font-family: var(--font-body);
}

/* ── World Map ─────────────────────────────────────── */
.world {
  background: var(--brown);
  color: var(--cream);
  padding: 120px 0 0;
}
.world__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 200;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.world__title .char { display: inline-block; opacity: 0; }
.world__map-wrap {
  position: relative;
  width: 100%; height: 500px;
  margin-top: 48px;
  overflow: hidden;
  cursor: grab;
  background: #1C0F06;
}
.world__map-wrap:active { cursor: grabbing; }
.world__map-wrap svg { display: block; }
.map-pin { cursor: pointer; transition: transform 0.2s; }
.map-pin:hover { transform: scale(1.3); }
.map-pin circle { fill: var(--gold); }
.map-pin text { fill: var(--cream); font-family: var(--font-body); font-size: 9px; font-weight: 500; }
.world__panel {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background: var(--ink);
}
.world__panel.open { max-height: 600px; padding: 32px 0; }
.world__panel-inner { padding: 0 24px; }
.world__panel-title { font-family: var(--font-body); font-size: 1.5rem; font-weight: 300; margin-bottom: 20px; color: var(--gold); }
.world__panel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.world__video-card { background: rgba(239, 229, 204, 0.06); border: 1px solid rgba(239, 229, 204, 0.08); overflow: hidden; }
.world__video-thumb { width: 100%; height: 140px; background: var(--brown); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.75rem; }
.world__video-info { padding: 14px 16px; }
.world__video-info h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 400; margin-bottom: 4px; }
.world__video-info p { font-size: 0.75rem; color: var(--muted); }
.world__zoom-controls { position: absolute; top: 16px; right: 16px; display: flex; flex-direction: column; gap: 4px; }
.world__zoom-btn { width: 36px; height: 36px; background: rgba(26, 16, 8, 0.7); color: var(--cream); border: 1px solid rgba(239, 229, 204, 0.1); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background 0.3s; }
.world__zoom-btn:hover { background: rgba(26, 16, 8, 0.9); }

.map-section,
#map-outer,
#map-canvas,
#mapTeaser,
.map-teaser-map {
  background: #2C1A0E !important;
}
.world-hero,
.world-section {
  background: var(--cream) !important;
  color: var(--brown) !important;
}
.world-title {
  color: var(--brown) !important;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  background: var(--cream);
  padding: 48px 0;
  border-top: 1px solid rgba(184, 146, 42, 0.1);
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer__logo {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
}
.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--brown); }
.footer__copy {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════
   BROISSANT PAGE (bp- prefix)
   ══════════════════════════════════════════════════════ */

/* Hero */
.broissant-page-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.bph-img {
  position: absolute;
  inset: 0;
}
.bph-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.bph-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,8,0.9) 0%, rgba(26,16,8,0.3) 50%, rgba(26,16,8,0.15) 100%);
}
.bph-content {
  position: absolute;
  bottom: 4rem;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 2rem;
}
.bph-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,217,138,0.65);
  margin-bottom: 1rem;
  font-weight: 400;
}
.bph-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 200;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.bph-sub {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: rgba(237,217,138,0.5);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

/* Concept */
.bp-concept {
  padding: 100px 0;
  background: var(--cream);
}
.bp-concept__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.bp-concept__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.bp-concept__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 480px;
}
.bp-concept__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bp-concept__stat {
  border: 1px solid rgba(184, 146, 42, 0.12);
  padding: 28px 24px;
  text-align: center;
}
.bp-concept__stat-value {
  display: block;
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 200;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 8px;
}
.bp-concept__stat-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Vision — now light background */
.bp-vision {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    var(--cream-off);
  color: var(--brown);
  padding: 100px 0;
}
.bp-vision__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
  color: var(--brown);
}
.bp-vision__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.bp-vision__pillar {
  border: 1px solid rgba(184, 146, 42, 0.12);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease;
  background: var(--cream);
}
.bp-vision__pillar:hover {
  border-color: rgba(184, 146, 42, 0.3);
}
.bp-vision__icon {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}
.bp-vision__pillar-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--brown);
}
.bp-vision__pillar-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* Roadmap */
.bp-roadmap {
  padding: 100px 0;
  background: var(--cream);
}
.bp-roadmap__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.bp-roadmap__timeline {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 40px;
}
.bp-roadmap__line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--cream-off);
}
.bp-roadmap__line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  transition: height 0.1s linear;
}
.bp-roadmap__phase {
  position: relative;
  margin-bottom: 48px;
  padding-left: 32px;
  opacity: 0;
  transform: translateY(30px);
}
.bp-roadmap__phase:last-child { margin-bottom: 0; }
.bp-roadmap__dot {
  position: absolute;
  left: -26px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--cream-off);
  border-radius: 50%;
  border: 2px solid var(--cream);
  transition: background 0.4s ease;
  z-index: 1;
}
.bp-roadmap__phase.is-active .bp-roadmap__dot {
  background: var(--gold);
}
.bp-roadmap__phase-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.bp-roadmap__tag {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.bp-roadmap__status {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
}
.bp-roadmap__status--active {
  background: rgba(184, 146, 42, 0.1);
  color: var(--gold);
}
.bp-roadmap__status--upcoming {
  background: rgba(138, 106, 69, 0.08);
  color: var(--muted);
}
.bp-roadmap__phase-title {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 10px;
}
.bp-roadmap__phase-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.bp-roadmap__cta {
  font-size: 0.7rem;
  padding: 10px 20px;
}

/* Get Involved — stays dark */
.bp-involve {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
}
.bp-involve__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: var(--cream);
}
.bp-involve__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream-off);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.bp-involve__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.bp-involve__form .modal__field input,
.bp-involve__form .modal__field select,
.bp-involve__form .modal__field textarea {
  background: rgba(239, 229, 204, 0.04);
  border-color: rgba(239, 229, 204, 0.12);
  color: var(--cream);
}
.bp-involve__form .modal__field input:focus,
.bp-involve__form .modal__field select:focus,
.bp-involve__form .modal__field textarea:focus {
  border-color: var(--gold);
}
.bp-involve__form .modal__field label {
  color: var(--cream-off);
}
.bp-involve__form .modal__field input::placeholder {
  color: var(--muted);
}
.bp-involve__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bp-involve__submit {
  align-self: flex-start;
  margin-top: 4px;
}
.bp-involve__success {
  display: none;
  max-width: 640px;
  padding: 40px 0;
}
.bp-involve__success.visible {
  display: block;
}
.bp-involve__success-title {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 200;
  color: var(--gold);
  margin-bottom: 8px;
}
.bp-involve__success-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream-off);
}

/* Phone input group */
.phone-input-group {
  display: flex;
  gap: 0;
}
.phone-code-select {
  flex-shrink: 0;
  width: 140px;
}
.phone-code-select .custom-select-trigger {
  border-right: none;
  height: 100%;
}
.phone-number-input {
  flex: 1;
  border-left: 1px solid rgba(237,217,138,0.1) !important;
}
.phone-code-options {
  width: 220px;
  max-height: 240px;
  overflow-y: auto;
}
.phone-code-options::-webkit-scrollbar {
  width: 4px;
}
.phone-code-options::-webkit-scrollbar-track {
  background: #2C1A0E;
}
.phone-code-options::-webkit-scrollbar-thumb {
  background: rgba(184,146,42,0.3);
}
.form-required {
  color: var(--gold);
  margin-left: 2px;
}

/* Custom select */
.custom-select-wrapper {
  position: relative;
}
.custom-select {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(237,217,138,0.2);
  color: rgba(237,217,138,0.5);
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}
.custom-select.open .custom-select-trigger {
  border-color: rgba(237,217,138,0.5);
  color: var(--gold-pale);
}
.custom-select-arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
  color: var(--gold);
  opacity: 0.6;
}
.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}
.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #2C1A0E;
  border: 1px solid rgba(237,217,138,0.2);
  border-top: none;
  z-index: 100;
  display: none;
}
.custom-select.open .custom-select-options {
  display: block;
}
.custom-select-option {
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: rgba(237,217,138,0.6);
  font-family: 'DM Sans', sans-serif;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(237,217,138,0.06);
  cursor: pointer;
}
.custom-select-option:last-child { border-bottom: none; }
.custom-select-option:hover {
  background: rgba(184,146,42,0.1);
  color: var(--gold-pale);
}
.custom-select-option.selected {
  color: var(--gold);
}
.custom-select-value {
  color: inherit;
}

/* ── Modal ─────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(26, 16, 8, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; backdrop-filter: blur(4px); }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: var(--cream); width: 90%; max-width: 520px; padding: 40px 36px; position: relative; transform: translateY(20px); transition: transform 0.3s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal__close { position: absolute; top: 16px; right: 16px; font-size: 1.4rem; color: var(--muted); transition: color 0.3s; }
.modal__close:hover { color: var(--ink); }
.modal__title { font-family: var(--font-body); font-size: 1.8rem; font-weight: 300; margin-bottom: 6px; }
.modal__sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 28px; }
.modal__form { display: flex; flex-direction: column; gap: 16px; }
.modal__field label { display: block; font-size: 0.6rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.modal__field input,
.modal__field select,
.modal__field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid rgba(184, 146, 42, 0.12); border-radius: 0;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
  color: var(--brown); background: var(--cream);
  transition: border-color 0.3s;
}
.modal__field input:focus,
.modal__field select:focus,
.modal__field textarea:focus { outline: none; border-color: var(--gold); }
.modal__field textarea { resize: vertical; min-height: 80px; }
.modal__submit { align-self: flex-start; margin-top: 4px; }

/* ══════════════════════════════════════════════════════
   MEDIA KIT PAGE
   ══════════════════════════════════════════════════════ */

/* Header */
.mk-header {
  padding: 80px 0 80px;
  background: var(--cream);
}
.mk-header__title {
  font-family: var(--font-body);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.mk-header__subtitle {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 8px;
}
.mk-header__date {
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Reach */
.mk-reach {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    var(--cream-off);
}
.mk-reach__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.mk-reach__card { padding: 28px 20px; text-align: center; }
.mk-reach__platform { font-size: 0.6rem; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.mk-reach__count { font-family: var(--font-body); font-size: 2rem; font-weight: 200; color: var(--brown); line-height: 1; margin-bottom: 6px; }
.mk-reach__handle { font-size: 0.72rem; color: var(--muted); }
.mk-reach__statement { position: relative; padding: 40px 0; }
.mk-reach__statement-line { position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: rgba(184, 146, 42, 0.15); transform-origin: left; transform: scaleX(0); }
.mk-reach__statement-number { font-family: var(--font-body); font-size: clamp(5rem, 12vw, 10rem); font-weight: 200; color: var(--brown); line-height: 1; letter-spacing: -0.03em; }
.mk-reach__statement-label { font-size: 0.82rem; font-weight: 300; color: var(--muted); letter-spacing: 0.04em; margin-top: 8px; }

/* Audience */
.mk-audience { padding: 80px 0; background: var(--cream); }
.mk-audience__block { margin-bottom: 48px; }
.mk-audience__block:last-child { margin-bottom: 0; }
.mk-audience__label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 16px;
}

/* Gender bar */
.mk-audience__bar-wrap { display: flex; height: 40px; overflow: hidden; }
.mk-audience__bar {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: width 1s ease;
}
.mk-audience__bar--women { background: var(--gold); color: var(--ink); }
.mk-audience__bar--men { background: var(--brown); color: var(--cream); }

/* Age bars */
.mk-audience__ages { display: flex; flex-direction: column; gap: 12px; }
.mk-audience__age-row { display: grid; grid-template-columns: 60px 1fr 40px; gap: 12px; align-items: center; }
.mk-audience__age-label { font-size: 0.78rem; font-weight: 300; color: var(--muted); }
.mk-audience__age-bar-wrap { height: 20px; background: var(--cream-off); overflow: hidden; }
.mk-audience__age-bar { height: 100%; background: var(--gold); width: 0; transition: width 1s ease; }
.mk-audience__age-pct { font-size: 0.78rem; color: var(--brown); font-weight: 400; text-align: right; }

/* Country bars */
.mk-audience__countries { display: flex; flex-direction: column; gap: 12px; }
.mk-audience__country-row { display: grid; grid-template-columns: 80px 1fr; gap: 12px; align-items: center; }
.mk-audience__country-name { font-size: 0.82rem; color: var(--brown); font-weight: 400; }
.mk-audience__country-bar-wrap { height: 16px; background: var(--cream-off); overflow: hidden; }
.mk-audience__country-bar { height: 100%; background: var(--warm); width: 0; transition: width 1s ease; }

/* Content */
.mk-content {
  padding: 80px 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    var(--cream-off);
}
.mk-content__desc { font-size: 0.88rem; font-weight: 300; color: var(--muted); line-height: 1.8; max-width: 640px; margin-bottom: 28px; }
.mk-content__pillars { display: flex; flex-wrap: wrap; gap: 10px; }
.mk-content__tag {
  border: 1px solid rgba(184, 146, 42, 0.12);
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--brown);
  transition: border-color 0.3s, background 0.3s;
}
.mk-content__tag:hover { border-color: var(--gold); background: var(--cream); }

/* MK Partnerships */
.mk-partnerships__line {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 0;
}

/* Recognition / Milestones */
.recognition {
  background: var(--ink);
  padding: 80px 0;
}
.recognition__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.recognition__card {
  border: 1px solid rgba(239, 229, 204, 0.08);
  padding: 40px 28px;
}
.recognition__card-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}
.recognition__card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* Contact */
.mk-contact {
  background: var(--ink);
  color: var(--cream);
  padding: 100px 0;
}
.mk-contact__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream-off);
  margin-bottom: 40px;
}
.mk-contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
}
.mk-contact__form .modal__field input,
.mk-contact__form .modal__field select,
.mk-contact__form .modal__field textarea {
  background: rgba(239, 229, 204, 0.04);
  border-color: rgba(239, 229, 204, 0.12);
  color: var(--cream);
}
.mk-contact__form .modal__field input:focus,
.mk-contact__form .modal__field select:focus,
.mk-contact__form .modal__field textarea:focus {
  border-color: var(--gold);
}
.mk-contact__form .modal__field label {
  color: var(--cream-off);
}
.mk-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mk-contact__email {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 24px;
}
.mk-contact__email a {
  color: var(--gold);
  transition: color 0.3s;
}
.mk-contact__email a:hover { color: var(--gold-light); }

/* ── Map Teaser ───────────────────────────────────── */
.map-teaser {
  padding: 5rem 5rem;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    var(--cream-off);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.map-teaser-content .section-eyebrow {
  color: var(--muted);
}
.map-teaser-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
  color: var(--brown);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.map-teaser-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.map-teaser-btn {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 146, 42, 0.3);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
  background: none;
}
.map-teaser-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.map-teaser-map {
  position: relative;
  height: 280px;
  overflow: hidden;
  border: 1px solid rgba(184, 146, 42, 0.08);
}
#mapTeaserSvg {
  width: 100%;
  height: 100%;
}
.tpin-group { cursor: pointer; }
.tpin-circle { fill: var(--gold); }
.tpin-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
}
.tpin-group .tpin-ring {
  animation: tpulse 2s ease-out infinite;
}
.tpin-group:nth-child(2) .tpin-ring { animation-delay: 0.4s; }
.tpin-group:nth-child(3) .tpin-ring { animation-delay: 0.8s; }
.tpin-group:nth-child(4) .tpin-ring { animation-delay: 1.2s; }
.tpin-group:nth-child(5) .tpin-ring { animation-delay: 1.6s; }
.tpin-group:nth-child(6) .tpin-ring { animation-delay: 2s; }
.tpin-group:nth-child(7) .tpin-ring { animation-delay: 2.4s; }
@keyframes tpulse {
  0% { r: 5; opacity: 0.8; }
  100% { r: 14; opacity: 0; }
}

/* ── About Page ───────────────────────────────────── */
.about-section {
  padding: 120px 0 80px;
  text-align: center;
}
.about-title {
  font-family: var(--font-body);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 200;
  letter-spacing: 0.06em;
  color: var(--brown);
  margin-bottom: 3rem;
  line-height: 1.1;
}
.about-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.about-body p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.about-back {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(138,106,69,0.3);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.about-back:hover {
  color: var(--brown);
  border-color: var(--brown);
}

/* ── Desktop Hero ─────────────────────────────────── */
.hero-desktop {
  display: none;
}

/* ── Desktop Layout ───────────────────────────────── */
@media (min-width: 769px) {
  .hero { display: none; }
  body { padding-top: 0 !important; }

  .nav-top {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    background: rgba(247,240,227,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(247,240,227,0.9);
  }
  .nav-top.scrolled {
    background: rgba(247,240,227,0.97);
  }

  .nav-bottom {
    position: sticky;
    top: 69px;
    left: 0; right: 0;
    z-index: 998;
    margin-top: 0;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    background: rgba(247,240,227,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: none;
    flex-shrink: 0;
  }

  .nav-bottom-links {
    display: flex;
    gap: 3rem;
    list-style: none;
  }
  .nav-bottom-links a {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    font-weight: 400;
    opacity: 0.75;
    transition: opacity 0.2s;
  }
  .nav-bottom-links a:hover { opacity: 1; }

  .nav-logo {
    font-size: 1.57rem;
    letter-spacing: 0.26em;
  }

  .nav-top-left, .nav-top-right {
    width: 80px;
    display: flex;
    align-items: center;
  }
  .nav-top-right { justify-content: flex-end; }

  .burger span { background: var(--brown); }

  /* Hero desktop */
  .hero-desktop {
    display: flex;
    flex-direction: column;
    height: 100vh;
    margin-top: 0;
    position: relative;
    overflow: visible;
  }
  .hero-desktop-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-desktop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
  .hero-desktop-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 5rem;
    background: linear-gradient(to top, rgba(26,16,8,0.55) 0%, transparent 55%);
    text-align: center;
  }
  .hero-desktop-eyebrow {
    font-size: 0.88rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245,230,192,0.85);
    margin-bottom: 1.25rem;
    font-weight: 400;
  }
  .hero-desktop-name {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 200;
    color: var(--cream);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
  }
  .hero-desktop-sub {
    font-size: 1rem;
    letter-spacing: 0.16em;
    color: rgba(245,230,192,0.7);
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .hero-desktop-cta {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,230,192,0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(245,230,192,0.35);
    padding-bottom: 0.35rem;
    transition: color 0.2s, border-color 0.2s;
  }
  .hero-desktop-cta:hover {
    color: var(--gold-pale);
    border-color: var(--gold-pale);
  }

  /* Goyard spacing */
  .partnerships,
  .map-teaser {
    padding: 8rem 8rem;
  }
  .partnerships {
    padding-top: 2rem;
  }

  .partnerships__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 6rem;
  }
  .partners-ticker-mobile {
    display: block;
    margin-top: 2.5rem;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .project-card { min-height: 520px; }
}

/* ── Sticky CTA (mobile) ─────────────────────────── */
.sticky-cta {
  display: none;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .mk-reach__grid { grid-template-columns: repeat(3, 1fr); }
  .partnerships__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  body {
    padding-top: 68px;
    padding-bottom: 0;
    overflow-x: hidden;
  }

  /* NAV */
  nav.nav-top {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
    background: rgba(247,240,227,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(61,32,16,0.08);
    z-index: 1000;
  }
  .nav-top-left,
  .nav-top-right {
    width: 40px;
    display: flex;
    align-items: center;
  }
  .nav-top-right {
    justify-content: flex-end;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.02rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--brown);
    text-decoration: none;
    white-space: nowrap;
  }
  .burger {
    position: static;
    transform: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .burger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--brown);
    transition: all 0.3s ease;
  }
  .nav-croissant {
    color: var(--brown);
    opacity: 0.7;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
  }
  .nav-croissant:hover { opacity: 1; }
  .nav-bottom { display: none; }

  /* HERO */
  .hero-desktop { display: none; }
  .hero {
    display: block;
    height: 85svh;
    position: relative;
    overflow: hidden;
    padding-top: 0;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .hero-photo img,
  .hero-photo picture,
  .hero-photo picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
  }
  .hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(26,16,8,0.1) 0%,
      transparent 30%,
      transparent 50%,
      rgba(26,16,8,0.75) 100%
    );
  }
  .hero-right {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.75rem 2.5rem;
    text-align: left;
    background: none;
    z-index: 2;
  }
  .hero-tag {
    color: rgba(237,217,138,0.7);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    display: flex !important;
    gap: 6px;
    align-items: center;
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .hero-tag::before { display: none; }
  .hero-name {
    font-size: 3rem;
    font-weight: 200;
    color: var(--cream);
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-align: left !important;
  }
  .hero-rule { display: none; }
  .hero-mobile-cta {
    display: inline-block !important;
    text-align: left !important;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(237,217,138,0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(237,217,138,0.3);
    padding-bottom: 0.2rem;
  }
  .section-divider {
    display: none;
  }

  /* BROISSANT PHOTO */
  .bps-content {
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
  }
  .bps-ctas {
    flex-wrap: wrap;
    justify-content: center;
  }
  .bps-title {
    font-size: 1.5rem !important;
    white-space: normal;
  }
  .bps-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.65rem;
  }
  .bps-image {
    height: 70vw;
    min-height: 280px;
  }

  /* BROISSANT STATEMENT */
  .broissant-statement-section {
    padding: 4rem 1.5rem;
  }
  .bs-title {
    font-size: clamp(2rem, 11vw, 3.5rem);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    white-space: nowrap;
  }
  .bs-sub {
    font-size: 1rem !important;
    line-height: 1.8;
    white-space: pre-line;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .project-card {
    min-height: 320px;
  }
  .project-title {
    font-size: 1.8rem;
    white-space: nowrap;
  }
  .project-number {
    font-size: 4rem;
  }

  /* PARTNERSHIPS */
  .partnerships {
    padding: 2rem 1.5rem 4rem;
  }
  .section-eyebrow {
    font-size: 1.4rem;
    font-weight: 200;
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.06em;
  }
  .partners-ticker-track img {
    height: 28px;
  }
  .partners-ticker-track img[alt="H-E-B"] { height: 42px; }
  .partners-ticker-track img[alt="Sony Pictures"] { height: 42px; }
  .partners-ticker-track img[alt="Womanizer"] { height: 18px; }
  .partners-ticker-track img[alt="SXSW"] { height: 20px; }
  .ticker-text-logo { font-size: 0.9rem; }

  /* MAP TEASER */
  .map-teaser {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 2rem;
    text-align: center;
  }
  .map-teaser-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .map-teaser .section-eyebrow::after {
    display: none;
  }
  .map-teaser-title {
    font-size: 1.8rem;
    font-weight: 200;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }
  .map-teaser-desc {
    font-size: 0.78rem;
    text-align: center;
    max-width: 260px;
  }
  .map-teaser-btn {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
  }
  .map-teaser-map {
    height: 180px;
    width: 100%;
  }

  /* FOOTER */
  .footer__inner {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
  .footer__logo {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brown);
  }
  .footer__links {
    gap: 1.5rem;
  }
  .footer__links a {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }
  .footer__copy {
    font-size: 0.58rem;
    opacity: 0.4;
  }

  /* STICKY CTA */
  .sticky-cta {
    display: none !important;
  }

  /* MENU OVERLAY MOBILE — see dedicated block below */

  /* BROISSANT & MEDIAKIT PAGE MOBILE */
  .broissant-page-hero { height: 85vh; margin-top: 0; }
  .bph-title { font-size: 3rem; }

  /* Remove excess space before concept section */
  .concept-section,
  .broissant-concept,
  section:has(.concept-title) {
    padding-top: 2.5rem !important;
  }

  .bp-concept { padding: 2.5rem 0; }
  .bp-concept__inner { grid-template-columns: 1fr; gap: 48px; }
  .bp-vision__grid { grid-template-columns: 1fr; }
  .bp-involve__row { grid-template-columns: 1fr; }
  .bp-roadmap__timeline { padding-left: 32px; }
  .bp-roadmap__phase { padding-left: 24px; }
  .mk-header { padding: 80px 0 60px; }
  .mk-reach__grid { grid-template-columns: repeat(2, 1fr); }
  .mk-contact__row { grid-template-columns: 1fr; }
  .mk-audience__age-row { grid-template-columns: 50px 1fr 36px; }
  .recognition__grid { grid-template-columns: 1fr; }

  /* WORLD MAP */
  .world__map-wrap { height: 350px; }

  /* CENTER ALL HEADINGS & EYEBROWS ON MOBILE */
  h1, h2, h3,
  .bio-title,
  .bio-sub,
  .bio-chapter,
  .world-eyebrow,
  .world-subtitle,
  .bph-eyebrow,
  .about-hero-eyebrow,
  .section-eyebrow,
  .broissant-statement-title,
  .broissant-statement-eyebrow,
  .broissant-statement-sub,
  .concept-title,
  .vision-title,
  .roadmap-title,
  .partners-title,
  .map-teaser-title,
  .map-teaser-desc,
  .world-locations-eyebrow,
  .press-outlet,
  .b-eyebrow,
  .b-title,
  .bs-title,
  .bs-tagline,
  .bs-sub,
  .bps-title,
  .world-title,
  .world-stat-label,
  .about-hero-title,
  .about-hero-sub,
  .hero-desktop-eyebrow,
  .hero-desktop-name,
  .hero-desktop-sub {
    text-align: center !important;
  }

  /* Hero text stays left aligned */
  .hero .hero-tag,
  .hero .hero-name,
  .hero .hero-mobile-cta,
  .hero .hero-right {
    text-align: left !important;
    justify-content: flex-start !important;
  }

  /* Body text stays left aligned */
  .bio-body p,
  .concept-body p,
  .vision-body p {
    text-align: left !important;
  }

  /* Section inner padding reduced */
  .bio-section-inner {
    padding: 0 1.5rem;
  }

  /* Bio ctas centered */
  .bio-ctas {
    justify-content: center;
  }

  /* World stats centered */
  .world-stat {
    text-align: center;
  }

  /* Press items centered */
  .press-item {
    text-align: center;
  }
  .press-link {
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .mk-reach__grid { grid-template-columns: 1fr; }
  .bp-concept__stats { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   BURGER MENU (clean rewrite)
   ══════════════════════════════════════════════════════ */
.burger {
  position: relative;
  z-index: 10000;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.burger span {
  display: block;
  width: 29px;
  height: 1.8px;
  background: var(--brown);
  transition: all 0.3s ease;
  pointer-events: none;
}
@media (min-width: 769px) {
  .nav-croissant-img {
    width: 34px;
    height: 34px;
  }
}
.nav-search svg {
  width: 22px;
  height: 22px;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#menuOverlay {
  position: fixed;
  inset: 0;
  background: #F7F0E3;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#menuOverlay.open {
  visibility: visible;
  opacity: 1;
}
#menuClose {
  position: absolute;
  top: 1.1rem;
  right: 1.5rem;
  z-index: 10001;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 400;
  visibility: hidden;
}
#menuClose:hover { color: var(--brown); }
#menuClose.visible {
  visibility: visible;
}
.menu-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 5rem 2rem 2rem 2.5rem;
  border-right: none;
}
.menu-right { display: none; }
.menu-links {
  list-style: none;
  margin-bottom: 0;
}
.menu-links li {
  border-bottom: 1px solid rgba(61,32,16,0.06);
}
.menu-links li:first-child {
  border-top: 1px solid rgba(61,32,16,0.06);
}
.menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  padding: 1.1rem 0;
  transition: color 0.2s, padding-left 0.15s;
}
.menu-links a::after {
  content: '\2192';
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
  letter-spacing: 0;
}
.menu-links a:hover {
  color: var(--gold);
  padding-left: 0.3rem;
}
.menu-links a:hover::after { opacity: 1; }
.menu-bottom {
  padding: 1.5rem 2.5rem 2.5rem;
  border-top: 1px solid rgba(61,32,16,0.06);
}
.menu-socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.menu-socials a {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.menu-socials a:hover { color: var(--brown); }
.menu-copyright {
  font-size: 0.55rem;
  color: rgba(61,32,16,0.25);
  letter-spacing: 0.1em;
  margin-top: 0;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.about-hero-img {
  position: absolute;
  inset: 0;
}
.about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,16,8,0.85) 0%, rgba(26,16,8,0.2) 60%, transparent 100%);
}
.about-hero-content {
  position: absolute;
  bottom: 4rem;
  left: 0; right: 0;
  text-align: center;
  z-index: 2;
  padding: 0 2rem;
}
.about-hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237,217,138,0.7);
  margin-bottom: 1rem;
}
.about-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 200;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.about-hero-sub {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,217,138,0.55);
}

/* BIO SECTIONS */
.bio-section {
  padding: 7rem 0;
  background: var(--cream);
}
.bio-section-alt {
  background: var(--cream-off);
}
.bio-section-dark {
  background: var(--ink);
}
.bio-section-dark .bio-chapter { color: rgba(184,146,42,0.3); }
.bio-section-dark .bio-title { color: var(--gold-pale); }
.bio-section-dark .bio-sub { color: rgba(184,146,42,0.5); }
.bio-section-dark .bio-body p { color: rgba(237,217,138,0.45); }

.bio-section-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}
.bio-chapter {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1rem;
  font-weight: 400;
}
.bio-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--brown);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.bio-sub {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.bio-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.bio-body p:last-child { margin-bottom: 0; }

.bio-certificate {
  margin-top: 3rem;
}
.bio-cert-frame {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(26,16,8,0.12), 0 2px 8px rgba(26,16,8,0.08);
  border: 1px solid rgba(184,146,42,0.2);
}
.bio-cert-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.bio-cert-caption {
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-top: 1px solid rgba(184,146,42,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.bio-cert-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.bio-cert-desc {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .bio-cert-frame {
    max-width: 100%;
  }
}

.bio-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.bio-press {
  background: var(--cream-off);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
}
.press-item {
  padding: 2rem;
  border: 1px solid rgba(61,32,16,0.08);
  background: var(--cream);
  transition: border-color 0.2s;
}
.press-item:hover {
  border-color: var(--gold);
}
.press-outlet {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.press-quote {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.press-link {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(61,32,16,0.2);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}
.press-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .bio-section { padding: 4rem 0; }
  .about-hero-title { font-size: 2.8rem; }
  .bio-ctas { flex-direction: column; }
}

/* ══════════════════════════════════════════════════════
   MOBILE MENU OVERLAY (redesign)
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  #menuOverlay {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
  }
  #menuOverlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/hero.PNG') center top / cover no-repeat;
    opacity: 0.07;
    pointer-events: none;
  }
  #menuOverlay.open {
    visibility: visible;
    opacity: 1;
  }
  #menuClose {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    z-index: 10001;
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.5rem 0;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
  }
  .menu-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem 1.5rem 2.5rem;
    border-right: none;
    position: relative;
    z-index: 2;
  }
  .menu-right { display: none; }
  .menu-links {
    list-style: none;
    margin-bottom: 0;
  }
  .menu-links li {
    border-bottom: 1px solid rgba(61,32,16,0.07);
    display: block;
  }
  .menu-links li::before {
    display: none;
  }
  .menu-links a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brown);
    text-decoration: none;
    padding: 0.85rem 0;
    transition: color 0.2s;
  }
  .menu-links a::after {
    content: '→';
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.2s;
  }
  .menu-links a:active { color: var(--gold); }
  .menu-links a:active::after { opacity: 1; }
  .menu-bottom {
    padding: 1rem 2.5rem 2rem;
    border-top: 1px solid rgba(61,32,16,0.08);
    position: relative;
    z-index: 2;
  }
  .menu-socials {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  .menu-socials a {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
  }
  .menu-copyright {
    font-size: 0.58rem;
    color: rgba(61,32,16,0.25);
    letter-spacing: 0.08em;
  }
}

/* ── Coming Soon Page ────────────────────────────── */

.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}
.coming-soon-content {
  max-width: 500px;
}
.coming-soon-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.5rem;
}
.coming-soon-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 200;
  color: var(--cream);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 2rem;
}
.coming-soon-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(237,217,138,0.45);
  line-height: 1.8;
  margin-bottom: 3rem;
  letter-spacing: 0.06em;
}
.coming-soon-back {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237,217,138,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(237,217,138,0.2);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.coming-soon-back:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Broissant Shop Block ────────────────────────── */

.broissant-shop-block {
  padding: 4rem 5rem;
  background: var(--cream-off);
  border-top: 1px solid rgba(61,32,16,0.06);
  border-bottom: 1px solid rgba(61,32,16,0.06);
  text-align: center;
}
.bsb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}
.bsb-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.bsb-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bsb-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.bsb-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.bsb-coming-soon {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,146,42,0.3);
  padding: 0.3rem 0.85rem;
}
.bsb-btn {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(61,32,16,0.25);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}
.bsb-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .broissant-shop-block {
    padding: 3rem 1.5rem;
  }
  .bsb-right {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

/* ── Social Page ─────────────────────────────────── */

.social-hero {
  background: var(--ink);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
}
.social-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184,146,42,0.6);
  margin-bottom: 1.5rem;
}
.social-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 200;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.social-sub {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: rgba(237,217,138,0.45);
  font-weight: 300;
  text-transform: uppercase;
}
.social-stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  border-top: 1px solid rgba(184,146,42,0.15);
  padding: 0 5rem;
}
.social-stat {
  padding: 2rem 0;
  text-align: center;
  border-right: 1px solid rgba(184,146,42,0.1);
}
.social-stat:last-child { border-right: none; }
.social-stat-num {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.social-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237,217,138,0.35);
}
.social-grid-section {
  padding: 5rem;
  background: var(--cream);
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.social-card {
  background: var(--cream-off);
  border: 1px solid rgba(61,32,16,0.08);
  padding: 2.5rem 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.25s, background 0.25s;
}
.social-card:hover {
  border-color: var(--gold);
  background: var(--cream);
}
.social-card-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.social-icon {
  width: 20px;
  height: 20px;
  color: var(--brown);
  opacity: 0.6;
  flex-shrink: 0;
}
.social-platform {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.social-card-mid {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.social-followers {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  color: var(--brown);
  line-height: 1;
}
.social-followers-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.social-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(61,32,16,0.06);
}
.social-handle {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.04em;
}
.social-arrow {
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
}
.social-card:hover .social-arrow {
  opacity: 1;
  transform: translateX(0);
}
.social-card:last-child:nth-child(3n+2) {
  grid-column: span 1;
}

@media (max-width: 768px) {
  .social-hero { padding: 6rem 1.5rem 3rem; }
  .social-stats-bar { padding: 0 1.5rem; }
  .social-stat { padding: 1.5rem 0; }
  .social-grid-section { padding: 3rem 1.5rem; }
  .social-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .social-followers { font-size: 2rem; }
}

/* HERO MOBILE — CENTERED */
@media (max-width: 768px) {
  .hero-right {
    text-align: center !important;
    left: 0 !important;
    right: 0 !important;
    padding: 1.5rem 1.75rem 2.5rem !important;
  }
  .hero-tag {
    text-align: center !important;
    justify-content: center !important;
  }
  .hero-name { text-align: center !important; }
  .hero-mobile-cta { text-align: center !important; display: block !important; }
  .hero h1, .hero h2, .hero h3 { text-align: center !important; }
}

/* Broissant page section overrides */
.bp-concept {
  background: var(--cream) !important;
}
.bp-concept * {
  color: var(--brown) !important;
}
.bp-vision {
  background: var(--cream) !important;
}
.bp-vision * {
  color: var(--brown) !important;
}
.bp-vision__pillar {
  background: var(--cream-off) !important;
  border: 1px solid rgba(61,32,16,0.08) !important;
  color: var(--brown) !important;
}
.bp-vision__pillar * {
  color: var(--brown) !important;
  opacity: 1 !important;
}
.bp-roadmap {
  background: var(--cream-off) !important;
}
.bp-roadmap * {
  color: var(--brown) !important;
}
.bp-involve {
  background: var(--ink) !important;
}
.bp-involve * {
  color: var(--cream) !important;
}
.bp-concept *,
.bp-vision *,
.bp-roadmap *,
.bp-involve * {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}
.bp-roadmap__phase .phase-cta,
.bp-roadmap .btn-phase,
.bp-roadmap button,
.bp-roadmap a.btn {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid rgba(184,146,42,0.4) !important;
}
.bp-roadmap__line {
  background: rgba(61,32,16,0.15) !important;
}
.bp-roadmap__line::after {
  background: var(--gold) !important;
}
.bp-roadmap__phase::before,
.bp-roadmap__dot,
.phase-dot {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  opacity: 1 !important;
}
