/* ============================================================
   ELAINE MAO — Song Dynasty 淡彩 Design System
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  --primary:    #7AAE98;
  --accent:     #C89090;
  --bg:         #FAF8F4;
  --bg-alt:     #E0EEE8;
  --text:       #2A2E2A;
  --text-light: #7A8A82;
  --white:      #FEFEFC;
  --dark:       #2A2E2A;
  --nav-bar:    #B8A8C8;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-dm:      'DM Serif Display', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;
  --font-script:  'Cormorant Garamond', Georgia, serif;

  --ease-silk:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-pill: 9999px;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

::selection { background: rgba(200,144,144,0.2); }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
}

.label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── 4. Utility ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

.accent-line {
  width: 48px; height: 2px;
  background: var(--accent);
  margin: 12px 0 24px;
}

/* ── 5. Announcement Banner ───────────────────────────────── */
#announcement-banner {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
  text-align: center;
  flex-wrap: wrap;
}

#announcement-banner.hidden { display: none; }

#announcement-banner .banner-text { flex: 1; min-width: 200px; }

#announcement-banner .banner-cta {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

#announcement-banner .banner-cta:hover { opacity: 0.85; }

#announcement-banner .banner-dismiss {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

#announcement-banner .banner-dismiss:hover { opacity: 1; }

/* ── 6. Navigation ────────────────────────────────────────── */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,244,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(122,174,152,0.12);
  transition: box-shadow 0.4s var(--ease-silk);
}

#main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(42,46,42,0.08);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 60px;
  padding: 0 32px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text);
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-logo:hover { color: var(--accent); }

/* Centre links */
.nav-centre {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  justify-content: center;
}

.nav-centre-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text);
  letter-spacing: 0.04em;
  padding: 4px 12px;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
  display: block;
}

.nav-centre-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-silk);
}

.nav-centre-link:hover { color: var(--accent); }
.nav-centre-link:hover::after { transform: scaleX(1); }

.nav-centre-link.nav-active { color: var(--accent); }
.nav-centre-link.nav-active::after { transform: scaleX(1); }

/* Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.nav-linkedin {
  display: flex;
  align-items: center;
  color: var(--text);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.nav-linkedin:hover { opacity: 1; }
.nav-linkedin svg { width: 20px; height: 20px; }

/* Hamburger */
.hamburger-btn {
  background: var(--accent);
  border: none;
  cursor: pointer;
  width: 52px;
  height: 34px;
  border-radius: 17px 4px 17px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(200,144,144,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hamburger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,144,144,0.5);
}

.hamburger-btn span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-silk);
}

/* ── Nav Backdrop ─────────────────────────────────────────── */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42,46,42,0.3);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-silk), visibility 0.3s var(--ease-silk);
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ── Nav Drawer — right-side sliding panel ────────────────── */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  height: 100vh;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  box-shadow: -8px 0 40px rgba(42,46,42,0.15);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

/* Left accent strip */
.drawer-strip {
  width: 40px;
  min-height: 100%;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-shrink: 0;
}
.drawer-strip-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Right content pane */
.drawer-content {
  flex: 1;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Close button */
.drawer-close {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--text-light);
  cursor: pointer;
  align-self: flex-end;
  padding: 0;
  margin-bottom: 28px;
  line-height: 1;
  transition: color 0.2s;
}
.drawer-close:hover { color: var(--text); }

/* Profile block */
.drawer-profile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4px;
}
.drawer-photo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
}
.drawer-photo-wrap img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.drawer-photo-badge {
  position: absolute;
  top: -6px;
  left: -8px;
  background: var(--bg);
  color: var(--accent);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.06em;
  padding: 2px 6px;
  border-radius: 20px;
  border: 1px solid rgba(122,174,152,0.3);
  white-space: nowrap;
}
.drawer-name {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 8px;
}
.drawer-bio {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Social icon row */
.drawer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.drawer-social-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s;
}
.drawer-social-circle svg { width: 13px; height: 13px; }
.drawer-social-circle:hover { background: var(--accent); }

/* Divider */
.drawer-divider {
  height: 1px;
  background: rgba(122,174,152,0.2);
  margin: 24px 0;
}

/* Nav links */
.drawer-nav-links { display: flex; flex-direction: column; }
.drawer-nav-link {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(122,174,152,0.1);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  display: block;
}
.drawer-nav-link:hover { color: var(--accent); }

/* Bottom tagline */
.drawer-tagline {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-light);
  font-style: italic;
}

/* ── 7. Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-silk), transform 0.9s var(--ease-silk);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.5s; }
.reveal-delay-2 { transition-delay: 1.0s; }

/* ── 8. Buttons ───────────────────────────────────────────── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
  text-decoration: none;
}

.btn-pill:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(122,174,152,0.3);
}

.btn-primary:hover { box-shadow: 0 10px 32px rgba(122,174,152,0.45); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,144,144,0.3);
}

.btn-accent:hover { box-shadow: 0 10px 32px rgba(200,144,144,0.45); }

.btn-oval {
  display: inline-block;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.4s var(--ease-silk);
  cursor: pointer;
  background: transparent;
  text-decoration: none;
}

.btn-oval:hover { background: var(--primary); color: var(--white); }

.btn-full {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-full:hover { opacity: 0.88; }

.text-link {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease-silk);
  text-decoration: none;
}

.text-link:hover { gap: 12px; }

/* ── 9. Footer ────────────────────────────────────────────── */

/* Layer 1 — Promo */
.footer-promo {
  background: linear-gradient(120deg, var(--bg-alt), #F5E8E8, #FAF0D8);
  padding: 80px 32px;
}

.footer-promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.footer-phone-mock {
  width: 110px;
  height: 200px;
  background: var(--primary);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(122,174,152,0.3);
  flex-shrink: 0;
}

.footer-phone-mock::before {
  content: '';
  position: absolute;
  top: 12px;
  width: 40px; height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.play-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--primary);
  margin-left: 3px;
}

.footer-promo-headline { font-family: var(--font-serif); line-height: 1.1; }

.footer-promo-headline .serif-up {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

.footer-promo-headline .serif-it {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-style: italic;
  font-weight: 700;
  display: inline;
}

.footer-promo-headline .serif-bold {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  text-transform: uppercase;
  display: inline;
}

.accent-highlight { color: var(--accent); }

.footer-promo-small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 8px;
  display: block;
}

.footer-promo-right p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Layer 2 — Nav Bar */
.footer-nav-bar {
  background: var(--nav-bar);
  padding: 20px 32px;
}

.footer-nav-bar ul {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  list-style: none;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-nav-bar a {
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  transition: opacity 0.2s;
}

.footer-nav-bar a:hover { opacity: 0.7; }

/* Layer 3 — Info */
.footer-info { background: var(--bg); padding: 72px 32px 0; }

.footer-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-left .footer-name {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 3.25rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.footer-photo-circle {
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg-alt);
}

.footer-photo-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.footer-bio {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 320px;
}

.footer-socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid rgba(42,46,42,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s var(--ease-silk);
  cursor: pointer;
  background: var(--white);
}

.footer-social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-right .footer-get-around {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-right-top { display: flex; gap: 24px; align-items: flex-start; }

.footer-links-grid { flex: 1; }
.footer-links-grid .accent-line { margin-bottom: 20px; }

.footer-links-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; }

.footer-links-cols a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid rgba(42,46,42,0.06);
  transition: color 0.2s;
}

.footer-links-cols a:hover { color: var(--accent); }

.footer-back-top {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.2s;
  flex-shrink: 0;
  align-self: flex-end;
  background: none;
  border: none;
}

.footer-back-top:hover { color: var(--accent); }

/* Instagram strip */
.footer-instagram { position: relative; max-width: 1100px; margin: 0 auto; }

.footer-ig-badge {
  position: absolute;
  top: -14px; right: 0;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-pill) var(--radius-pill) 0 var(--radius-pill);
  z-index: 2;
}

.footer-ig-tiles { display: grid; grid-template-columns: repeat(5, 1fr); height: 140px; }

.ig-tile { height: 140px; overflow: hidden; position: relative; }
.ig-tile:nth-child(1) { background: var(--bg-alt); }
.ig-tile:nth-child(2) { background: #EDD8D8; }
.ig-tile:nth-child(3) { background: #FAF0D8; }
.ig-tile:nth-child(4) { background: #D8EDE4; }
.ig-tile:nth-child(5) { background: #E8D8ED; }

.ig-tile::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
}

/* Copyright */
.footer-copyright {
  background: var(--dark);
  padding: 16px 32px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* ── 10. HOME — Hero (two-column) ────────────────────────── */
.hero2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* Left: photo column */
.hero2-left {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 40px;
  min-height: 600px;
}

.hero2-photo {
  max-height: 580px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Right-edge fade blending left into right column */
.hero2-left-fade {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 20%;
  background: linear-gradient(to right, transparent 0%, var(--bg) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Right: copy column */
.hero2-right {
  background: var(--bg);
  display: flex;
  align-items: center;
}

.hero2-content {
  padding: 80px 64px 80px 48px;
  max-width: 520px;
}

.hero2-greeting {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero2-headline {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
}

.hero2-freedom {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero2-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 38px;
  line-height: 1.2;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 16px;
}

.hero2-sparkles {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 8px;
  margin-bottom: 20px;
}

.hero2-body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 0;
}

.hero2-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero2-btn {
  padding: 14px 32px;
  border-radius: 40px;
  border: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
  display: inline-block;
}

.hero2-btn:hover { transform: translateY(-3px); }

.hero2-btn-primary {
  background: var(--primary);
  box-shadow: 0 6px 24px rgba(122,174,152,0.45);
}

.hero2-btn-primary:hover { box-shadow: 0 12px 32px rgba(122,174,152,0.55); }

.hero2-btn-accent {
  background: var(--accent);
  box-shadow: 0 6px 24px rgba(200,144,144,0.45);
}

.hero2-btn-accent:hover { box-shadow: 0 12px 32px rgba(200,144,144,0.55); }

.hero2-follow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero2-follow-label {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  margin-right: 4px;
}

.hero2-follow-pill {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: opacity 0.2s;
  cursor: pointer;
}

.hero2-follow-live {
  background: var(--primary);
  color: var(--white);
}

.hero2-follow-live:hover { opacity: 0.85; }

.hero2-follow-grey {
  background: rgba(42,46,42,0.07);
  color: var(--text-light);
  cursor: default;
}

/* Mobile: stack columns */
@media (max-width: 768px) {
  .hero2 { grid-template-columns: 1fr; }
  .hero2-left { min-height: 360px; }
  .hero2-content { padding: 48px 28px 56px; }
  .hero2-headline { font-size: 38px; }
  .hero2-sub { font-size: 28px; }
}

/* ── 11. Identity Strip ───────────────────────────────────── */
.identity-strip { background: var(--primary); padding: 20px 32px; text-align: center; }

.identity-strip p {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--white);
  font-size: 0.875rem;
}

/* ── 12. About Snapshot ───────────────────────────────────── */
.about-snap { padding: 120px 32px; background: var(--bg); }

.about-snap-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(42,46,42,0.08);
}

.about-snap-left {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.about-snap-left img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-snap-left-placeholder {
  width: 100%; height: 100%;
  min-height: 400px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--primary) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.about-deco {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.about-snap-right {
  background: var(--white);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-snap-right .italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.about-snap-right h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.about-snap-right p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }

/* ── 13. Three Pillars ────────────────────────────────────── */
.pillars { background: var(--primary); padding: 140px 32px; }

.pillars-inner { max-width: 1100px; margin: 0 auto; }

.pillars-rule { height: 1px; background: rgba(255,255,255,0.2); margin-bottom: 56px; }

.pillars-header { text-align: center; margin-bottom: 64px; }
.pillars-header h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); }

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.pillar-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 44px;
  transition: border-color 0.4s var(--ease-silk), transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
  cursor: default;
}

.pillar-card:hover {
  border-color: rgba(200,144,144,0.6);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.pillar-emoji { font-size: 2.25rem; margin-bottom: 16px; display: block; }

.pillar-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  display: block;
}

.pillar-card h3 { font-size: 1.375rem; color: var(--white); margin-bottom: 16px; }
.pillar-card p { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.8; }

/* ── 14. AhaFlo Teaser ────────────────────────────────────── */
.ahaflo-teaser { padding: 140px 32px; background: var(--bg); }

.ahaflo-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: start;
}

.ahaflo-left .accent-line { margin-bottom: 24px; }
.ahaflo-left h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0; }
.ahaflo-right p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }

/* ── 15. Course Library — Product Cards Grid ──────────────── */
.course-library { padding: 100px 32px; background: var(--bg-alt); }

.course-library-inner { max-width: 1100px; margin: 0 auto; }

.section-label-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.section-label-serif + h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 48px; }

/* Three-column cards grid */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.product-card-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(122,174,152,0.15);
  padding: 40px;
  box-shadow: 0 4px 24px rgba(42,46,42,0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
  text-decoration: none;
  color: inherit;
}

.product-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(42,46,42,0.13);
}

/* Tag pill */
.pc-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.pc-tag-sage  { background: rgba(122,174,152,0.15); color: var(--primary); }
.pc-tag-blush { background: rgba(200,144,144,0.15); color: var(--accent); }
.pc-tag-teal  { background: rgba(138,180,164,0.15); color: #6A9A84; }

/* Number */
.pc-number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 12px;
  display: block;
}

/* Title */
.pc-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

/* Body */
.pc-body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

/* Status badge */
.pc-status {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.pc-status-sage  { background: rgba(122,174,152,0.12); color: var(--primary); }
.pc-status-blush { background: rgba(200,144,144,0.12); color: var(--accent); }
.pc-status-teal  { background: rgba(138,180,164,0.12); color: #6A9A84; }

/* CTA button */
.pc-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
  align-self: flex-start;
}

.pc-btn:hover { transform: translateY(-2px); }

.pc-btn-sage  { background: var(--primary);  box-shadow: 0 4px 16px rgba(122,174,152,0.35); }
.pc-btn-sage:hover  { box-shadow: 0 8px 28px rgba(122,174,152,0.5); }

.pc-btn-blush { background: var(--accent);   box-shadow: 0 4px 16px rgba(200,144,144,0.35); }
.pc-btn-blush:hover { box-shadow: 0 8px 28px rgba(200,144,144,0.5); }

.pc-btn-teal  { background: #8AB4A4;         box-shadow: 0 4px 16px rgba(138,180,164,0.35); }
.pc-btn-teal:hover  { box-shadow: 0 8px 28px rgba(138,180,164,0.5); }

/* "More coming" note */
.course-library-note {
  text-align: center;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .product-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .product-cards-grid { grid-template-columns: 1fr; }
}

/* ── 16. Video Preview ────────────────────────────────────── */
.video-section { padding: 100px 32px; background: var(--bg); }

.video-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.video-section-header { margin-bottom: 28px; }

.video-main {
  background: #1A1E1A;
  border-radius: var(--radius-md);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.video-play {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent rgba(255,255,255,0.7);
  margin-left: 4px;
}

.video-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

.video-shorts { display: flex; flex-direction: column; gap: 16px; }

.video-short {
  background: #1A1E1A;
  border-radius: var(--radius-sm);
  height: 90px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
}

.video-short-play {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-short-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent rgba(255,255,255,0.5);
  margin-left: 2px;
}

.video-short-info {
  flex: 1;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-sans);
}

/* ── 17. Email Capture ────────────────────────────────────── */
.email-capture {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.email-bg-photo {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #3D5A4E 0%, #5A4040 60%, #3A3A2E 100%);
  z-index: 0;
}

.email-capture-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,46,42,0.38);
  z-index: 1;
}

.email-capture-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  padding: 80px 32px;
  color: var(--white);
}

.email-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }

.email-capture-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 16px;
}

.aha-circle { position: relative; display: inline-block; }

.aha-circle-svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  width: 110%; height: 130%;
  pointer-events: none;
}

.email-capture-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.email-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }

.email-form input {
  padding: 14px 20px;
  background: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  width: 100%;
}

.email-form input::placeholder { color: var(--text-light); }

/* ── 18. Page Heroes ──────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 160px 32px 100px;
  overflow: hidden;
  background: linear-gradient(160deg, #D8EDE4, #EDD8D8);
}

.page-hero-ghost {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  font-family: var(--font-dm);
  font-size: clamp(60px, 12vw, 140px);
  color: rgba(122,174,152,0.22);  /* matches hero ghost opacity */
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;   /* above bg photo/overlay (z-index 0), below content (z-index 2) */
}

.page-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 20px; }

.page-hero-photo { position: absolute; inset: 0; z-index: 0; }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.page-hero-photo-overlay { position: absolute; inset: 0; background: rgba(42,46,42,0.45); }

/* ── 19. About Page ───────────────────────────────────────── */
.story-section { padding: 100px 32px; }
.story-section:nth-child(even) { background: var(--bg-alt); }

.story-inner { max-width: 860px; margin: 0 auto; }

.story-inner .italic-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.story-inner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 24px; }
.story-inner p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }

.social-strip { background: var(--primary); padding: 48px 32px; text-align: center; }
.social-strip h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 28px; }

.social-strip-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.social-strip-links a {
  padding: 10px 24px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
}

.social-strip-links a:hover { background: var(--white); color: var(--primary); }

.collaborate-cta { background: var(--bg); padding: 80px 32px; text-align: center; }
.collaborate-cta h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; }
.collaborate-cta p { color: var(--text-light); margin-bottom: 32px; }

/* ── 20. Thinking (Blog) ──────────────────────────────────── */
.thinking-hero {
  padding: 140px 32px 80px;
  background: linear-gradient(160deg, #D8EDE4, #EDD8D8);
  text-align: center;
}

.thinking-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.thinking-hero p { color: var(--text-light); max-width: 560px; margin: 20px auto 0; }

.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 32px 0;
  background: var(--bg);
}

.filter-tab {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(42,46,42,0.15);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-silk);
  background: transparent;
  color: var(--text-light);
}

.filter-tab.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.filter-tab:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

.post-grid { padding: 48px 32px 100px; background: var(--bg); }

.post-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(42,46,42,0.06);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(42,46,42,0.1);
}

.post-cat {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.cat-ai { background: rgba(122,174,152,0.15); color: var(--primary); }
.cat-pursuit { background: rgba(200,144,144,0.15); color: var(--accent); }
.cat-female { background: rgba(184,168,200,0.2); color: #8878A8; }

.post-card h3 { font-size: 1.125rem; margin-bottom: 12px; line-height: 1.4; }

.post-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  line-height: 1.6;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(42,46,42,0.06);
}

/* ── 21. Learn Page ───────────────────────────────────────── */
.coaching-section { padding: 100px 32px; background: var(--accent); }

.coaching-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.coaching-section h2 { color: var(--white); margin-bottom: 16px; }
.coaching-section p { color: rgba(255,255,255,0.8); margin-bottom: 32px; }

.waitlist-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }

.waitlist-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  outline: none;
}

.waitlist-form button {
  padding: 14px 28px;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.waitlist-form button:hover { opacity: 0.85; }

.courses-grid-section { padding: 80px 32px 100px; background: var(--bg); }

.courses-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42,46,42,0.06);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
}

.course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(42,46,42,0.1); }

.course-card-top {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.course-card-top.c1 { background: linear-gradient(135deg, var(--bg-alt), var(--primary)); }
.course-card-top.c2 { background: linear-gradient(135deg, #EDD8D8, var(--accent)); }
.course-card-top.c3 { background: linear-gradient(135deg, #D8EDE4, #8AB4A4); }

.course-card-body { padding: 28px; }
.course-card-body h3 { font-size: 1.125rem; margin-bottom: 8px; }
.course-card-body p { color: var(--text-light); font-size: 0.875rem; margin-bottom: 20px; }

/* ── 22. AhaFlo Page ──────────────────────────────────────── */
.ahaflo-vision { padding: 100px 32px; background: var(--bg); }

.ahaflo-vision-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.ahaflo-vision h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.ahaflo-vision p { color: var(--text-light); font-size: 1rem; margin-bottom: 16px; }

.ahaflo-products { padding: 80px 32px 100px; background: var(--bg-alt); }

.products-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(42,46,42,0.06);
}

.product-card h3 { font-size: 1.75rem; margin-bottom: 12px; }

.product-card .product-status {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.status-building { background: rgba(122,174,152,0.15); color: var(--primary); }
.status-soon { background: rgba(200,144,144,0.15); color: var(--accent); }

.product-card p { color: var(--text-light); font-size: 0.9rem; }

.ai-team { padding: 100px 32px; background: var(--bg); }

.team-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(42,46,42,0.06);
  transition: transform 0.4s var(--ease-silk);
}

.team-card:hover { transform: translateY(-6px); }

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.team-avatar.a1 { background: linear-gradient(135deg, var(--bg-alt), var(--primary)); }
.team-avatar.a2 { background: linear-gradient(135deg, #EDD8D8, var(--accent)); }
.team-avatar.a3 { background: linear-gradient(135deg, #D8EDE4, #8AB4A4); }

.team-card h3 { font-size: 1.25rem; margin-bottom: 4px; }

.team-card .team-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.team-card p { color: var(--text-light); font-size: 0.875rem; }

.ahaflo-tagline { padding: 100px 32px; background: var(--primary); text-align: center; }
.ahaflo-tagline h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 3rem); }

/* ── 23. Collaborate Page ─────────────────────────────────── */
.services-grid-section { padding: 100px 32px; background: var(--bg); }

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: 0 4px 24px rgba(42,46,42,0.06);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s var(--ease-silk);
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(42,46,42,0.1); }

.service-icon { font-size: 2.25rem; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.375rem; margin-bottom: 12px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; }

.contact-section { padding: 100px 32px; background: var(--bg-alt); }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-inner h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 8px; }

.contact-email {
  font-family: var(--font-script);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form input,
.contact-form textarea {
  padding: 14px 20px;
  background: var(--white);
  border: 1.5px solid rgba(42,46,42,0.1);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }

.contact-form textarea { resize: vertical; min-height: 140px; }

/* ── 24. Course Detail Pages ──────────────────────────────── */
.course-hero { padding: 160px 32px 100px; background: linear-gradient(160deg, #D8EDE4, #EDD8D8, #EDE0D0); }
.course-hero-inner { max-width: 800px; margin: 0 auto; }
.course-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.course-hero p { color: var(--text-light); font-size: 1rem; margin-bottom: 32px; }

.modules-section { padding: 100px 32px; background: var(--bg); }
.modules-inner { max-width: 800px; margin: 0 auto; }
.modules-inner h2 { font-size: 2rem; margin-bottom: 40px; }

.module-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(42,46,42,0.08);
  transition: padding-left 0.3s var(--ease-silk);
}

.module-item:hover { padding-left: 8px; }

.module-num {
  font-family: var(--font-dm);
  font-size: 1.5rem;
  color: rgba(42,46,42,0.12);
  flex-shrink: 0;
  line-height: 1;
  min-width: 40px;
}

.module-info h4 { font-size: 1.125rem; margin-bottom: 6px; }
.module-info p { color: var(--text-light); font-size: 0.875rem; }

.course-waitlist { padding: 80px 32px 100px; background: var(--bg-alt); }
.course-waitlist-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.course-waitlist h2 { margin-bottom: 12px; }
.course-waitlist p { color: var(--text-light); margin-bottom: 32px; }
.course-waitlist .email-form { margin: 0 auto; }

.instructor-section { padding: 80px 32px; background: var(--bg); }

.instructor-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.instructor-photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.instructor-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}

.instructor-info h3 { font-size: 1.5rem; margin-bottom: 8px; }
.instructor-info p { color: var(--text-light); font-size: 0.9rem; }

/* ── 25. Mobile Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  /* Nav: collapse centre links, switch to logo-only + hamburger */
  .nav-centre { display: none; }
  .nav-inner {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  /* Drawer: full-width on mobile */
  .nav-drawer { width: 100vw; }

  .hero-photo-wrap { padding-top: 80px; }
  .hero-panel { padding: 40px 24px 64px; }
  .about-snap-inner { grid-template-columns: 1fr; }
  .about-snap-left { min-height: 280px; }
  .about-snap-right { padding: 36px 28px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .ahaflo-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .video-section-inner { grid-template-columns: 1fr; }
  .footer-promo-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-phone-mock { margin: 0 auto; }
  .footer-info-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-ig-tiles { grid-template-columns: repeat(3, 1fr); }
  .footer-ig-tiles .ig-tile:nth-child(4),
  .footer-ig-tiles .ig-tile:nth-child(5) { display: none; }
  .post-grid-inner { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .instructor-inner { flex-direction: column; text-align: center; }
  .nav-inner { padding: 16px 20px; }
  #nav-overlay { padding: 32px 28px; }
  .overlay-link-title { font-size: 1.4rem; }
  .footer-right-top { flex-direction: column; }
  .footer-socials-grid { grid-template-columns: 1fr; }
  .course-hero { padding: 120px 24px 64px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input { border-radius: var(--radius-pill); }
  .waitlist-form button { border-radius: var(--radius-pill); }
  .thinking-hero { padding: 120px 24px 60px; }
  .filter-tabs { padding: 24px 24px 0; }
  .post-grid { padding: 32px 24px 80px; }
}

@media (max-width: 480px) {
  .swipe-wrapper { height: 520px; }
  .footer-ig-tiles { grid-template-columns: repeat(3, 1fr); }
  .hero-ghost-text { font-size: 18vw; }
}
