/* ===== DESIGN TOKENS ===== */
:root {
  --green-primary: #1F4D3A;
  --green-deep: #163828;
  --gold-muted: #C8A96B;
  --gold-light: #D4BC8A;
  --ivory: #F7F3EB;
  --beige: #E8DFD1;
  --beige-soft: #F0E9DE;
  --text-dark: #1B1B1B;
  --text-muted: #6B6B6B;
  --text-light: rgba(247, 243, 235, 0.85);
  --white-card: #FDFBF7;
  --shadow-soft: 0 20px 50px rgba(31, 77, 58, 0.08);
  --shadow-card: 0 24px 64px rgba(27, 27, 27, 0.06);
  --shadow-lift: 0 12px 32px rgba(200, 169, 107, 0.22);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", "Inter", system-ui, sans-serif;
  --ease-luxury: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--ivory);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== AMBIENT BACKGROUND ===== */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(232, 223, 209, 0.7) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(232, 223, 209, 0.5) 0%, transparent 50%),
    linear-gradient(165deg, var(--ivory) 0%, #F2EDE4 45%, var(--beige-soft) 100%);
}

.ambient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.ambient-shape--1 {
  width: 420px;
  height: 420px;
  background: #E5D9C8;
  top: -8%;
  right: -5%;
}

.ambient-shape--2 {
  width: 360px;
  height: 360px;
  background: #DDD2C0;
  bottom: 10%;
  left: -8%;
}

.ambient-shape--3 {
  width: 280px;
  height: 280px;
  background: rgba(31, 77, 58, 0.06);
  top: 45%;
  left: 35%;
}

/* ===== SITE HEADER ===== */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 48px);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 44px;
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-line {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s var(--ease-luxury), transform 0.3s var(--ease-luxury);
}

.nav-link:hover {
  color: var(--green-primary);
  transform: translateY(-1px);
}

.btn-nav-cta {
  flex-shrink: 0;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-pill);
  background: var(--green-primary);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background 0.35s var(--ease-luxury),
    box-shadow 0.35s var(--ease-luxury),
    transform 0.35s var(--ease-luxury);
}

.btn-nav-cta:hover {
  background: var(--green-deep);
  box-shadow: 0 8px 28px rgba(31, 77, 58, 0.28);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--green-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-luxury);
}

/* ===== MAIN LAYOUT ===== */
.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 32px) 64px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.stage-view {
  width: 100%;
  animation: fadeView 0.5s var(--ease-luxury);
}

@keyframes fadeView {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== LUXURY CARDS ===== */
.card {
  background: var(--white-card);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 6vw, 52px);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(232, 223, 209, 0.6);
  transition: box-shadow 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury);
}

.card.anim {
  animation: slideIn 0.65s var(--ease-luxury);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO / INTRO ===== */
.stage-view--intro {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 80px);
  padding: 16px 0;
}

body:has(#s-intro:not([style*="none"])) .container {
  max-width: 720px;
}

.card--hero {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, #FDFBF7 0%, var(--ivory) 50%, #F5F0E8 100%);
  padding-top: clamp(48px, 8vw, 72px);
  padding-bottom: clamp(48px, 8vw, 72px);
}

.hero-decor--leaves {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 85% 90%, rgba(31, 77, 58, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 100% 70% at 5% 95%, rgba(200, 169, 107, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.hero-decor--glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 55%;
  height: 70%;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-seed-icon {
  position: absolute;
  bottom: 28px;
  left: 32px;
  width: 28px;
  height: 36px;
  opacity: 0.7;
}

.intro-title {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.intro-subtitle {
  position: relative;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.7;
  font-weight: 400;
}

/* ===== QUIZ SHELL ===== */
.stage-view--quiz {
  max-width: 100%;
}

.stage-view--quiz .container,
.container .stage-view--quiz {
  padding: 0;
}

.quiz-shell {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.quiz-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--green-primary);
}

.logo-brand--compact {
  gap: 10px;
}

.logo-brand--compact .logo-icon {
  width: 28px;
  height: 34px;
}

.logo-wordmark--light .logo-line {
  color: var(--ivory);
  font-size: 0.95rem;
}

.quiz-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.quiz-menu-btn span {
  display: block;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
}

.card--quiz {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border-top: none;
  padding: clamp(28px, 5vw, 40px);
  margin-top: 0;
  box-shadow: none;
}

/* App-like quiz: hide marketing header when quiz or results are active */
body:has(#s-question[style*="block"]) .site-header,
body:has(#s-results[style*="block"]) .site-header {
  display: none;
}

body:has(#s-question[style*="block"]) .container,
body:has(#s-results[style*="block"]) .container {
  max-width: 560px;
  padding-top: 8px;
}

/* ===== PROGRESS ===== */
.progress-section {
  margin-bottom: 28px;
}

.progress-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 3px;
  background: var(--beige);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 12px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-muted) 0%, var(--green-primary) 100%);
  border-radius: var(--radius-pill);
  transition: width 0.45s var(--ease-luxury);
  box-shadow: 0 0 12px rgba(200, 169, 107, 0.35);
}

.q-number {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== QUESTIONS ===== */
.q-text {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.45;
  text-align: center;
}

.opts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.opt {
  width: 100%;
  padding: 18px 22px;
  border: 1px solid rgba(232, 223, 209, 0.9);
  border-radius: var(--radius-md);
  background: var(--beige-soft);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.45;
  transition:
    border-color 0.3s var(--ease-luxury),
    background 0.3s var(--ease-luxury),
    transform 0.3s var(--ease-luxury),
    box-shadow 0.3s var(--ease-luxury);
}

.opt:hover {
  border-color: var(--gold-light);
  background: #F5EFE6;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27, 27, 27, 0.05);
}

.opt.selected {
  border-color: var(--gold-muted);
  background: linear-gradient(135deg, #E8D4A8 0%, #D4BC8A 45%, #C8A96B 100%);
  color: var(--text-dark);
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.btn-green,
.btn-next,
.btn-download {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition:
    background 0.35s var(--ease-luxury),
    box-shadow 0.35s var(--ease-luxury),
    transform 0.35s var(--ease-luxury);
}

.btn-green {
  background: var(--green-primary);
  color: var(--ivory);
  margin-top: 8px;
  text-transform: none;
}

.btn-green:hover {
  background: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(31, 77, 58, 0.3);
}

.btn-green:active {
  transform: translateY(-1px);
}

.btn-next {
  background: var(--green-primary);
  color: var(--ivory);
  text-transform: none;
}

.btn-next:hover {
  background: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(31, 77, 58, 0.28);
}

.btn-next:active {
  transform: translateY(-1px);
}

.btn-download {
  background: var(--gold-muted);
  color: var(--text-dark);
  text-transform: none;
  font-weight: 700;
  flex-shrink: 0;
  width: auto;
  max-width: none;
  padding: 14px 22px;
  margin: 0;
}

.btn-download:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 107, 0.35);
}

.btn-gold {
  width: 100%;
  padding: 14px 24px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  background: transparent;
  color: var(--green-primary);
  margin-top: 20px;
  transition:
    background 0.3s var(--ease-luxury),
    border-color 0.3s var(--ease-luxury),
    transform 0.3s var(--ease-luxury);
}

.btn-gold:hover {
  background: var(--beige-soft);
  border-color: var(--gold-muted);
  transform: translateY(-2px);
}

/* Keep "Take Quiz Again" inside result card (offsets email-box bleed margins) */
#res-card > .btn-gold {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(20px + clamp(36px, 6vw, 48px));
}

/* ===== RESULTS ===== */
.stage-view--results {
  padding-bottom: 32px;
}

.card--results {
  overflow: hidden;
  padding: 0;
  background: var(--white-card);
}

#res-card {
  padding: clamp(36px, 6vw, 48px) clamp(28px, 5vw, 40px);
}

.results-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  margin: 0 auto 24px;
  width: 100%;
  max-width: 280px;
  min-height: 200px;
  background:
    radial-gradient(ellipse at center bottom, rgba(31, 77, 58, 0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--beige-soft) 0%, var(--ivory) 100%);
  border-radius: var(--radius-md);
  position: relative;
}

.results-emoji::after {
  content: "";
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 120' fill='none'%3E%3Cpath d='M100 110C100 110 40 70 40 45C40 30 55 15 75 15L100 50L125 15C145 15 160 30 160 45C160 70 100 110 100 110Z' fill='%231F4D3A' opacity='0.15'/%3E%3Crect x='130' y='55' width='50' height='45' rx='4' fill='%23C8A96B' opacity='0.25'/%3E%3Cpath d='M100 95V40M70 75L100 50L130 75' stroke='%231F4D3A' stroke-width='2' opacity='0.2'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.6;
  pointer-events: none;
}

.results-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.1;
}

.results-title::before {
  content: "Result";
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 12px;
}

.results-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

.results-description {
  font-size: 0.95rem;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.75;
  margin-bottom: 32px;
  padding: 24px 24px 24px 28px;
  background: var(--beige-soft);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-muted);
}

.results-description::before {
  content: "Your Focus Right Now";
  display: block;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* ===== EMAIL / CTA DRAWER ===== */
.email-box {
  margin: 0 calc(-1 * clamp(28px, 5vw, 40px)) calc(-1 * clamp(36px, 6vw, 48px));
  margin-top: 8px;
  padding: clamp(28px, 5vw, 36px) clamp(28px, 5vw, 40px);
  background: var(--green-primary);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border-top: none;
}

.email-label {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
}

.email-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  border: none;
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: box-shadow 0.3s var(--ease-luxury);
}

.email-input::placeholder {
  color: #9A9A9A;
}

.email-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.45);
}

.email-box .btn-download {
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
}

/* Inline email + button row for last field area - stack on mobile */
.email-box form,
.email-box {
  display: flex;
  flex-direction: column;
}

.cta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
}

.follow-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* ===== UTILITY ===== */
.hidden {
  display: none !important;
}

.error-text {
  color: #C45C5C;
  font-size: 0.85rem;
  margin-top: 10px;
  text-align: center;
}

.success-text {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-top: 10px;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-nav,
  .btn-nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header {
    padding: 16px 20px;
  }

  .hero-seed-icon {
    bottom: 20px;
    left: 20px;
    width: 24px;
  }

  .stage-view--intro {
    min-height: auto;
    padding: 8px 0 32px;
  }

  .card--hero {
    padding: 40px 28px 48px;
  }

  .container {
    max-width: 100%;
    padding: 16px 16px 48px;
  }

  .quiz-shell {
    margin: 0 -4px;
    border-radius: 24px;
  }

  .opt {
    padding: 16px 18px;
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) {
  .container {
    max-width: 720px;
  }

  .stage-view--quiz .quiz-shell {
    max-width: 560px;
  }
}

@media (max-width: 400px) {
  .intro-title {
    font-size: 2rem;
  }

  .results-title {
    font-size: 1.85rem;
  }
}

/* Legacy class support */
.intro-emoji {
  display: none;
}

.branding-bar {
  display: none;
}

/* ===== ABOUT PAGE ===== */
.about-page {
  display: block;
}

.logo-brand {
  text-decoration: none;
}

.nav-link--active {
  color: var(--green-primary);
}

.btn-nav-cta--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.about-main {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px) 80px;
}

.about-section {
  padding: clamp(48px, 8vw, 88px) 0;
}

.about-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}

.about-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.about-section-lead {
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: var(--text-muted);
  line-height: 1.75;
}

/* Floating decor */
.about-float-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-float {
  position: absolute;
  font-size: 1.25rem;
  opacity: 0.18;
  color: var(--green-primary);
  animation: aboutFloat 12s ease-in-out infinite;
}

.about-float--1 { top: 18%; left: 6%; animation-delay: 0s; }
.about-float--2 { top: 32%; right: 8%; animation-delay: -2s; font-size: 0.9rem; }
.about-float--3 { bottom: 28%; left: 10%; animation-delay: -4s; }
.about-float--4 { top: 55%; right: 12%; animation-delay: -6s; font-size: 0.75rem; }
.about-float--5 { bottom: 12%; right: 18%; animation-delay: -8s; }

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

/* Hero */
.about-hero {
  position: relative;
  text-align: center;
  padding-top: clamp(32px, 6vw, 64px);
  padding-bottom: clamp(56px, 10vw, 96px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(253, 251, 247, 0.92) 0%, rgba(247, 243, 235, 0.85) 50%, rgba(245, 240, 232, 0.9) 100%);
  border: 1px solid rgba(232, 223, 209, 0.65);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(6px);
}

.about-hero .hero-decor--leaves,
.about-hero .hero-decor--glow {
  border-radius: inherit;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) clamp(24px, 5vw, 48px);
}

.about-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 20px;
}

.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 36px;
}

.about-hero-cta {
  text-decoration: none;
  display: inline-block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 16px 40px;
}

/* Philosophy cards */
.about-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-mini-card {
  background: var(--white-card);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid rgba(232, 223, 209, 0.7);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-luxury),
    box-shadow 0.4s var(--ease-luxury);
}

.about-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.about-mini-card--accent {
  background: linear-gradient(145deg, var(--white-card) 0%, #F8F4EC 100%);
  border-color: rgba(200, 169, 107, 0.35);
}

.about-mini-icon {
  display: block;
  font-size: 1.35rem;
  color: var(--green-primary);
  margin-bottom: 14px;
  opacity: 0.85;
}

.about-mini-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 10px;
  line-height: 1.25;
}

.about-mini-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.about-philosophy-foot {
  text-align: center;
  max-width: 640px;
  margin: clamp(36px, 5vw, 48px) auto 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  font-family: var(--font-serif);
}

/* SOW POW stages */
.about-stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.about-stage-card {
  position: relative;
  background: var(--white-card);
  border-radius: var(--radius-md);
  padding: clamp(24px, 4vw, 30px);
  border: 1px solid rgba(232, 223, 209, 0.65);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s var(--ease-luxury),
    box-shadow 0.4s var(--ease-luxury),
    border-color 0.4s var(--ease-luxury);
}

.about-stage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(31, 77, 58, 0.15);
}

.about-stage-card--featured {
  grid-column: 1 / -1;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  background: linear-gradient(155deg, var(--green-primary) 0%, var(--green-deep) 100%);
  border-color: transparent;
  color: var(--ivory);
}

.about-stage-card--featured .about-stage-num,
.about-stage-card--featured .about-stage-title {
  color: var(--ivory);
}

.about-stage-card--featured .about-stage-desc {
  color: var(--text-light);
}

.about-stage-card--featured:hover {
  box-shadow: 0 24px 56px rgba(31, 77, 58, 0.28);
}

.about-stage-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 12px;
}

.about-stage-symbol {
  display: block;
  font-size: 1.75rem;
  margin-bottom: 14px;
  line-height: 1;
}

.about-stage-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.about-stage-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Comparison */
.about-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.about-compare-col {
  background: var(--white-card);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 40px);
  border: 1px solid rgba(232, 223, 209, 0.65);
  box-shadow: var(--shadow-soft);
}

.about-compare-col--them {
  opacity: 0.92;
}

.about-compare-col--us {
  background: linear-gradient(160deg, #FDFBF7 0%, #F5F0E6 100%);
  border-color: rgba(31, 77, 58, 0.12);
}

.about-compare-label {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--beige);
}

.about-compare-col--them .about-compare-label {
  color: var(--text-muted);
}

.about-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-compare-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.about-compare-col--them .about-compare-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #B8B0A4;
}

.about-compare-col--us .about-compare-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.about-compare-col--us .about-compare-list strong {
  color: var(--text-dark);
  font-weight: 600;
}

.about-compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.about-compare-seed {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white-card);
  border: 1px solid rgba(232, 223, 209, 0.8);
  box-shadow: var(--shadow-soft);
  font-size: 1.25rem;
}

/* Quote */
.about-quote {
  padding: clamp(64px, 10vw, 100px) 0;
}

.about-quote-block {
  margin: 0;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(48px, 8vw, 72px) clamp(24px, 5vw, 48px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(200, 169, 107, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(31, 77, 58, 0.03) 100%);
}

.about-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.85rem);
  font-weight: 500;
  font-style: italic;
  color: var(--green-primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* Final CTA */
.about-final-cta {
  padding-bottom: clamp(48px, 8vw, 64px);
}

.about-cta-card {
  position: relative;
  text-align: center;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 64px) clamp(32px, 6vw, 52px);
}

.about-cta-card .hero-decor--glow {
  border-radius: inherit;
}

.about-cta-title {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-cta-sub {
  position: relative;
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.about-cta-btn {
  position: relative;
  text-decoration: none;
  display: inline-block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 16px 40px;
}

/* Anchor buttons */
a.btn-green {
  text-decoration: none;
  text-align: center;
}

/* About page mobile nav overlay */
.about-page .site-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: rgba(247, 243, 235, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  gap: 20px;
  z-index: 100;
  border-bottom: 1px solid var(--beige);
  box-shadow: var(--shadow-soft);
}

.about-page .site-nav.is-open .nav-link {
  font-size: 0.9rem;
}

.about-page .btn-nav-cta--link.is-mobile-visible {
  display: inline-flex;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  box-shadow: 0 12px 40px rgba(31, 77, 58, 0.25);
}

/* About responsive */
@media (max-width: 900px) {
  .about-philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-compare {
    grid-template-columns: 1fr;
  }

  .about-compare-divider {
    padding: 8px;
  }

  .about-compare-seed {
    transform: rotate(90deg);
  }

  .about-stage-card--featured {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .about-page .site-nav.is-open ~ .btn-nav-cta--link,
  .about-page .site-header:has(.site-nav.is-open) .btn-nav-cta--link {
    display: none;
  }

  .about-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .about-stages-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    border-radius: var(--radius-md);
  }

  .about-float {
    opacity: 0.1;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 1.95rem;
  }

  .about-quote-text {
    font-size: 1.55rem;
  }
}
