/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette from the MET courtyard photo:
     warm stone marble · botanical sage · dusty blue-grey · camel linen */
  --sage:        #7A8C6E;   /* botanical green — primary accent */
  --sage-deep:   #4E5F45;   /* deep forest — CTAs, headings */
  --sage-light:  #C4D0BB;   /* soft green tint — borders */
  --sage-pale:   #EFF3EC;   /* near-white green — alt sections */
  --stone:       #E8E0D4;   /* warm marble beige */
  --stone-deep:  #B09880;   /* warm camel / tan */
  --cream:       #F7F4EF;   /* warm off-white — base bg */
  --dusty-blue:  #8A9BAB;   /* her top — secondary accent */
  --charcoal:    #2C2A28;   /* warm near-black */
  --mid:         #6B6560;   /* warm mid-tone body text */
  --light:       #A09A94;   /* light warm grey */
  --white:       #FFFEFB;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Lato', system-ui, sans-serif;

  --max-w: 1140px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }

h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

em { font-style: italic; color: var(--sage-deep); }

p { color: var(--mid); font-weight: 300; font-size: 1rem; }

blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--sage-deep);
  border-left: 2px solid var(--sage);
  padding-left: 20px;
  margin-top: 28px;
}

/* ── LAYOUT HELPERS ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-intro {
  max-width: 640px;
  font-size: 1.05rem;
  margin-top: 16px;
  margin-bottom: 48px;
  color: var(--mid);
}

.section-alt { background: var(--sage-pale); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--sage-deep);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--charcoal); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--charcoal);
  transition: background 0.25s, color 0.25s;
}
.btn-secondary:hover { background: var(--charcoal); color: var(--white); }

.btn-outline {
  display: inline-block;
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--charcoal); border-color: var(--charcoal); }

.btn-large { padding: 18px 48px; font-size: 0.85rem; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
#navbar.scrolled { border-color: var(--stone); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--sage-deep) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--charcoal) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top center;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--sage-light);
  z-index: -1;
}

/* subtle botanical leaf watermark behind image */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50% 0 50% 0;
  background: var(--sage-pale);
  z-index: -1;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.hero-name {
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.0;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 12px;
}
.hero-sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 36px;
}

/* ── FOR YOU BLOCK ── */
.for-you-block {
  border-left: 2px solid var(--sage-light);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--sage-pale);
  border-radius: 0 6px 6px 0;
}
.for-you-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 12px;
}
.for-you-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.for-you-list li {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.for-you-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.8rem;
}
.for-you-close {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--sage-deep);
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ABOUT ── */
#about .about-text h2 { margin-bottom: 24px; }
#about .about-text p { margin-bottom: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--sage-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.4;
}

/* ── FLOWEREVER ── */
.venture-header { margin-bottom: 48px; }
.venture-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 8px;
}
.venture-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
}

.venture-text p { margin-bottom: 16px; }
.venture-text .btn-outline { margin-top: 16px; }

.venture-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.venture-badge {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--sage-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.venture-badge.secondary {
  background: var(--sage);
  width: 140px;
  height: 140px;
  align-self: flex-end;
  margin-right: 24px;
}

.badge-num {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}
.badge-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 4px;
  opacity: 0.9;
}

/* ── RECOGNITION ── */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.recognition-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 36px 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.recognition-card:hover { border-color: var(--sage); transform: translateY(-3px); }

.highlight-card {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: var(--white);
}
.highlight-card h3, .highlight-card p { color: var(--white); }
.highlight-card .rec-detail { opacity: 0.75; }

.rec-icon {
  font-size: 1.4rem;
  color: var(--sage);
  margin-bottom: 16px;
  display: block;
}
.highlight-card .rec-icon { color: rgba(255,255,255,0.5); }

.recognition-card h3 { margin-bottom: 6px; font-size: 1.2rem; }
.rec-detail {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

/* ── PLATFORMS ── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 40px 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.platform-card:hover { border-color: var(--sage); transform: translateY(-3px); }

.platform-icon { color: var(--sage-deep); }
.platform-card h3 { font-size: 1.4rem; }
.platform-card p { font-size: 0.85rem; color: var(--mid); }
.platform-cta {
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.platform-card:hover .platform-cta { border-color: var(--sage-deep); }

/* ── PODCAST ── */
#podcast { background: var(--charcoal); }
#podcast h2, #podcast p, #podcast em { color: var(--white); }
#podcast em { color: var(--sage-light); }
#podcast .section-label { color: var(--sage-light); }
#podcast strong { color: var(--white); font-weight: 400; }

.podcast-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.podcast-art {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, var(--sage-deep) 0%, #2E3A28 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 12px;
}

.podcast-art-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.2;
}

.podcast-art-host {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.podcast-text { padding-left: 20px; }
.podcast-text h2 { margin-bottom: 20px; }
.podcast-text p { margin-bottom: 16px; }
.podcast-text .btn-primary {
  margin-top: 8px;
  background: var(--sage);
}
.podcast-text .btn-primary:hover { background: var(--white); color: var(--charcoal); }

/* ── NEWSLETTER ── */
.newsletter-inner { text-align: center; }
.newsletter-inner h2 { margin-bottom: 0; }
.newsletter-inner .section-intro { margin: 16px auto 36px; }

.newsletter-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.topic-tag {
  display: inline-block;
  border: 1px solid var(--sage-light);
  color: var(--sage-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  transition: background 0.2s, border-color 0.2s;
}
.topic-tag:hover { background: var(--sage-pale); border-color: var(--sage); }

/* ── WORK WITH ME ── */
.work-inner { text-align: center; }
.work-inner h2 { margin-bottom: 0; }
.work-inner .section-intro { margin: 16px auto 32px; }

/* ── BRAND REACH STATS ── */
.brand-reach-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sage-light);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.reach-stat {
  background: var(--white);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reach-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--sage-deep);
  line-height: 1;
}
.reach-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}

.work-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
  margin-bottom: 64px;
}

.work-card {
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  padding: 36px 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.work-card:hover { border-color: var(--sage); transform: translateY(-2px); }
.work-card h3 { margin-bottom: 12px; font-size: 1.2rem; }

.contact-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.contact-cta > p { font-family: var(--serif); font-size: 1.4rem; color: var(--charcoal); font-style: italic; }
.contact-note { font-size: 0.8rem; color: var(--light); max-width: 440px; text-align: center; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 24px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-tagline, .footer-location {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sage-light); }

.footer-right { text-align: right; }
.footer-email {
  font-size: 0.85rem;
  color: var(--sage-light);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 24px auto 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── INLINE LINKS ── */
.inline-link {
  color: var(--sage-deep);
  border-bottom: 1px solid var(--sage-light);
  font-weight: 400;
  transition: color 0.2s, border-color 0.2s;
}
.inline-link:hover { color: var(--charcoal); border-color: var(--charcoal); }

.inline-link-light {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  font-weight: 400;
  transition: color 0.2s, border-color 0.2s;
}
.inline-link-light:hover { color: var(--white); border-color: var(--white); }

/* ── ABOUT PHOTO ── */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-photo-wrap {
  position: relative;
  overflow: hidden;
}

.about-photo-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-photo-caption {
  font-size: 0.72rem;
  font-style: italic;
  color: var(--light);
  text-align: right;
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ── PHILOSOPHY NOTE ── */
.philosophy-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--sage-pale);
  border-left: 2px solid var(--sage);
}
.philosophy-icon {
  color: var(--sage);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}
.philosophy-note p {
  font-size: 0.9rem;
  color: var(--mid);
  margin: 0;
  line-height: 1.7;
}
.philosophy-note strong { color: var(--sage-deep); font-weight: 700; }

/* ── BUILD CARD PHOTO ── */
.build-card-photo-wrap {
  grid-column: 1 / -1;
  overflow: hidden;
  max-height: 280px;
}
.build-card-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: left top;
  display: block;
  filter: brightness(0.88);
  transition: transform 0.6s ease;
}
.build-card--featured:hover .build-card-photo { transform: scale(1.02); }

/* ── RECOGNITION PHOTOS ── */
.rec-photo-wrap {
  overflow: hidden;
  margin: -36px -32px 20px;
}
.rec-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Portrait photos — taller crop */
.rec-photo--portrait {
  aspect-ratio: 3 / 4;
  object-position: left top;
}
/* SinoVision TV screenshot — keep landscape */
.rec-photo--contain {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center center;
}
/* Bold Journey website screenshot — landscape */
.rec-photo--bold-journey {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.rec-venue-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: -36px -32px 20px;
  overflow: hidden;
}
.rec-venue-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* ── EPISODES ── */
.episodes-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 56px;
  margin-top: 20px;
  margin-bottom: 0;
}

.episodes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.episodes-header .section-label { margin-bottom: 0; }

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.episode-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.episode-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.episode-thumb {
  position: relative;
  overflow: hidden;
}
.episode-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.episode-card:hover .episode-thumb img { transform: scale(1.04); }

.episode-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.25s;
}
.episode-card:hover .episode-play { opacity: 1; }
.episode-play-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.episode-play-icon svg { margin-left: 3px; }

.episode-short-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--sage-deep);
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.episode-info {
  padding: 16px 18px 20px;
}
.episode-date {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: block;
  margin-bottom: 6px;
}
.episode-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  padding: 32px 0;
  letter-spacing: 0.1em;
}

/* ── THE BUILD ── */
.build-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 48px;
}

.build-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 36px 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.build-card:hover { border-color: var(--sage); transform: translateY(-3px); }

.build-card--featured {
  grid-column: 1 / -1; /* spans full width */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}
.build-card--featured h3,
.build-card--featured p,
.build-card--featured strong { color: var(--white); }
.build-card--featured .build-card-label { color: var(--sage-light); }
.build-card--featured:hover { border-color: var(--sage-deep); transform: none; }

.build-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}

.build-card h3 { margin-bottom: 14px; font-size: 1.4rem; }
.build-card p { font-size: 0.95rem; line-height: 1.7; }

.build-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.build-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--sage-light);
  color: var(--sage-light);
}
.build-card:not(.build-card--featured) .build-tag {
  border-color: var(--sage-light);
  color: var(--sage-deep);
}

/* ── BRAND WORK ── */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.brand-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.25s, transform 0.25s;
}
.brand-card:hover { border-color: var(--sage); transform: translateY(-3px); }

.brand-card--featured {
  grid-column: span 2;
  background: var(--stone);
  border-color: var(--stone-deep);
}

.brand-card--cta {
  background: var(--sage-pale);
  border: 1px dashed var(--sage-light);
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.brand-card--cta:hover { border-color: var(--sage); transform: translateY(-3px); }
.brand-card--cta h3 { font-size: 1.4rem; line-height: 1.2; }

.brand-card-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
}

.brand-card h3 { font-size: 1.25rem; margin: 0; }
.brand-card p { font-size: 0.9rem; flex: 1; }

.brand-type-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-deep);
  border-bottom: 1px solid var(--stone-deep);
  padding-bottom: 2px;
}

.brand-card-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: auto;
}

.rec-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-deep);
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  margin-top: 16px;
  transition: color 0.2s, border-color 0.2s;
}
.rec-link:hover { color: var(--charcoal); border-color: var(--charcoal); }

.highlight-card .rec-link {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
  margin-top: 12px;
}
.highlight-card .rec-link:hover { color: var(--white); border-color: var(--white); }

/* ── PODCAST GUEST CTA ── */
.podcast-top { margin-bottom: 60px; }

.podcast-guest-cta {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 56px;
}

.guest-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 48px;
}

.guest-cta-text h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.guest-cta-text p { color: rgba(255,255,255,0.65); max-width: 520px; }

.guest-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
}

.btn-outline-light {
  display: inline-block;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.guest-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  max-width: 220px;
}

/* ── DUAL CTA ── */
.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--stone);
}

.dual-cta-card {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
}
.dual-cta-card:first-child { border-right: 1px solid var(--stone); }

.dual-cta-card--accent {
  background: var(--sage-deep);
}
.dual-cta-card--accent h3,
.dual-cta-card--accent p { color: var(--white); }

.dual-cta-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid var(--sage-light);
  padding: 5px 14px;
  align-self: flex-start;
}

.dual-cta-tag--light {
  color: var(--sage-light);
  border-color: rgba(255,255,255,0.25);
}

.dual-cta-card h3 { font-size: 1.6rem; line-height: 1.2; }

.cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.cta-list li {
  font-size: 0.9rem;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
}
.cta-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.8rem;
}

.cta-list--light li { color: rgba(255,255,255,0.7); }
.cta-list--light li::before { color: var(--sage-light); }

.dual-cta-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.cta-note {
  font-size: 0.78rem;
  color: var(--light);
  line-height: 1.5;
}
.cta-note--light { color: rgba(255,255,255,0.4); }

/* ── PLATFORMS TWO-COL ── */
.platforms-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
}

/* ── PODCAST LISTEN BUTTONS ── */
.podcast-listen-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn-outline-dark {
  display: inline-block;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline-dark:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── WHAT BECOMES POSSIBLE ── */
.section-possible {
  background: var(--charcoal);
  color: var(--white);
}
.section-possible .section-label {
  color: var(--sage-light);
}
.section-possible h2 {
  color: var(--white);
  margin-bottom: 48px;
}
.section-possible h2 em {
  color: var(--sage-light);
}
.possible-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 48px;
}
.possible-card {
  background: var(--charcoal);
  padding: 40px 36px;
  transition: background 0.25s;
}
.possible-card:hover {
  background: #3a3836;
}
.possible-icon {
  display: block;
  color: var(--sage-light);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.possible-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.possible-card p {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 0;
}
.possible-close {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--sage-light);
  text-align: center;
  margin: 0;
}

/* ── CONSULTING ── */
.consulting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.consulting-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 36px 32px;
  transition: border-color 0.25s, transform 0.25s;
}
.consulting-card:hover { border-color: var(--sage); transform: translateY(-2px); }

.consulting-card--featured {
  background: var(--sage-pale);
  border-color: var(--sage-light);
}

.consulting-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
  display: block;
}

.consulting-card h3 { font-size: 1.25rem; margin-bottom: 14px; }
.consulting-card p { font-size: 0.95rem; margin-bottom: 16px; }

.consulting-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.consulting-list li {
  font-size: 0.88rem;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
}
.consulting-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.8rem;
}

.consulting-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.consulting-cta > p {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--charcoal);
  font-style: italic;
}

/* ── COURSES ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s;
}
.course-card:hover { border-color: var(--sage); transform: translateY(-3px); }

.course-number {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--sage-light);
  line-height: 1;
  font-weight: 300;
}

.course-card h3 { font-size: 1.2rem; }
.course-card p { font-size: 0.9rem; flex: 1; }

.course-status {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-deep);
  border: 1px solid var(--stone);
  padding: 5px 12px;
  margin-top: auto;
  align-self: flex-start;
}

.waitlist-cta {
  background: var(--sage-deep);
  padding: 52px 48px;
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.waitlist-inner h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.waitlist-inner p { color: rgba(255,255,255,0.65); max-width: 480px; }
.waitlist-inner .contact-note { color: rgba(255,255,255,0.4); margin-top: 10px; }

.waitlist-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 200px;
}
.waitlist-action .btn-primary {
  background: var(--white);
  color: var(--sage-deep);
  white-space: nowrap;
}
.waitlist-action .btn-primary:hover { background: var(--sage-light); color: var(--charcoal); }

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .two-col, .two-col-reverse, .podcast-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-img { height: 460px; }
  .hero-inner { padding-top: 40px; }
  .hero-image-wrap { order: -1; }
  .recognition-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .build-grid { grid-template-columns: 1fr; }
  .build-card--featured { grid-template-columns: 1fr; gap: 20px; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card--featured { grid-column: span 1; }
  .brand-reach-stats { grid-template-columns: repeat(2, 1fr); }
  .work-cards { grid-template-columns: 1fr; }
  .possible-grid { grid-template-columns: 1fr; }
  .episodes-grid { grid-template-columns: 1fr; }
  .rec-venue-photos { grid-template-columns: 1fr 1fr; }
  .build-card-photo-wrap { max-height: none; }
  .build-card-photo { height: auto; aspect-ratio: 16 / 9; }
  .consulting-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 32px; }
  .waitlist-cta { padding: 36px 28px; }
  .platforms-grid--two { grid-template-columns: 1fr; max-width: 100%; }
  .podcast-listen-btns { flex-direction: column; align-items: flex-start; }
  .guest-cta-inner { grid-template-columns: 1fr; gap: 32px; padding: 32px 28px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--cream);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--stone);
  }
}

@media (max-width: 560px) {
  :root { --section-pad: 70px 20px; }
  .about-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .podcast-art { width: 260px; height: 260px; }
  .recognition-grid { grid-template-columns: 1fr; }
  .dual-cta-card { padding: 28px 20px; }
  .guest-cta-inner { padding: 24px 20px; }
}
