/* ===================================================
   Luminae Brand Theme
   Primary:    Luminae Sage    #6B8F71
   Accent:     Warm Tan        #C9A87C
   CTA:        Coral Glow      #D97B5A
   Body text:  Charcoal        #2D2D2D
   Background: Soft Cream      #FDF6EE
   Headlines:  Cormorant Garamond
   Body:       DM Sans
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

:root {
  --bg:           #FDF6EE;
  --bg-warm:      #F5EAD9;
  --bg-dark:      #2D2D2D;
  --fg:           #2D2D2D;
  --fg-muted:     #6B5F52;
  --sage:         #6B8F71;
  --sage-light:   #A3C1A8;
  --sage-pale:    #E8F0E9;
  --tan:          #C9A87C;
  --tan-light:    #E2CBA8;
  --tan-pale:     #F5EAD9;
  --coral:        #D97B5A;
  --coral-dark:   #C0643F;
  --coral-pale:   #F9E8E1;
  --cream:        #FDF6EE;
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  100px;

  --shadow-sm:    0 2px 8px rgba(45, 45, 45, 0.06);
  --shadow-md:    0 8px 30px rgba(45, 45, 45, 0.10);
  --shadow-lg:    0 16px 60px rgba(45, 45, 45, 0.14);
  --shadow-coral: 0 8px 30px rgba(217, 123, 90, 0.25);
  --shadow-sage:  0 8px 30px rgba(107, 143, 113, 0.20);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== GLOBAL TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
}

a { color: inherit; text-decoration: none; }

/* ===== SECTION LABEL ===== */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217, 123, 90, 0.35);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(45, 45, 45, 0.2);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 124, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--fg); }

.nav-links a.nav-cta {
  background: var(--coral);
  color: var(--white);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-links a.nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(107, 143, 113, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201, 168, 124, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.25rem;
  margin-bottom: 2rem;
  background: var(--sage-pale);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--coral);
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero-glow-2 {
  top: auto;
  bottom: 5%;
  right: 20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(217, 123, 90, 0.08) 0%, transparent 65%);
}

/* ===== PILLARS ===== */
.pillars {
  padding: 7rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-header {
  margin-bottom: 4rem;
}

.pillars-header h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.pillars-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.75;
}

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

.pillar {
  background: var(--cream);
  border: 1px solid rgba(201, 168, 124, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2.25rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pillar-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
}

.pillar-shop .pillar-eyebrow  { color: var(--tan); }
.pillar-studio .pillar-eyebrow { color: var(--sage); }
.pillar-flow .pillar-eyebrow  { color: var(--coral); }

.pillar h3 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.pillar p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.75rem;
}

.btn-pillar {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--sage);
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.25rem;
  transition: all 0.2s ease;
  align-self: flex-start;
}
.btn-pillar:hover { background: var(--sage-pale); transform: translateX(3px); }

.btn-pillar-cta {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
}
.btn-pillar-cta:hover { background: var(--coral-dark); border-color: var(--coral-dark); color: var(--white); }

/* ===== FLOW SECTION ===== */
.flow-section {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 7rem 2rem;
}

.flow-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.flow-text .section-label { color: var(--sage-light); }

.flow-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.flow-text p {
  color: rgba(253, 246, 238, 0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.flow-visual { display: flex; justify-content: center; }

.flow-card {
  background: rgba(253, 246, 238, 0.05);
  border: 1px solid rgba(253, 246, 238, 0.10);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.flow-icon {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--tan-light);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.flow-arrow {
  font-size: 1.5rem;
  color: rgba(253, 246, 238, 0.25);
  margin: 0.75rem 0;
}

.flow-outputs { display: flex; flex-direction: column; gap: 0.5rem; }

.flow-outputs span {
  display: block;
  background: rgba(107, 143, 113, 0.15);
  color: var(--sage-light);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}
.flow-outputs span:hover { background: rgba(107, 143, 113, 0.28); }

/* ===== SHOP SECTION ===== */
.shop-section {
  padding: 7rem 2rem;
  background: var(--tan-pale);
}

.shop-inner { max-width: 1200px; margin: 0 auto; }

.shop-header {
  margin-bottom: 4rem;
}

.shop-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.shop-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.75;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201, 168, 124, 0.15);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.shop-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.shop-icon {
  font-size: 2rem;
  line-height: 1;
}

.shop-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.shop-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.shop-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.shop-featured-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  background: var(--sage);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
}

.shop-card-featured {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-sage);
}

.shop-card-bundle {
  border-color: var(--tan);
  background: linear-gradient(140deg, var(--white) 60%, rgba(201, 168, 124, 0.06) 100%);
}

.btn-buy {
  display: block;
  text-align: center;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: var(--shadow-coral);
}
.btn-buy:hover { background: var(--coral-dark); transform: translateY(-1px); }

.btn-buy-gold {
  background: var(--tan);
  box-shadow: 0 8px 24px rgba(201, 168, 124, 0.35);
}
.btn-buy-gold:hover { background: #B8936A; }

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 7rem 2rem;
  background: var(--bg);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header .section-label { justify-content: center; display: block; }

.pricing-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.pricing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--cream);
  border: 1px solid rgba(201, 168, 124, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.pricing-card-radiance {
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
  background: var(--white);
}

.pricing-card-glow { border-color: var(--sage-light); }

.pricing-card-studio {
  background: linear-gradient(145deg, #4A6741 0%, #3A5234 100%);
  border-color: rgba(107, 143, 113, 0.3);
}

.pricing-card-studio .plan-name,
.pricing-card-studio .plan-tagline,
.pricing-card-studio .plan-features li {
  color: var(--cream);
}

.pricing-card-studio .plan-price {
  color: var(--cream);
}

.pricing-card-studio .price-num {
  color: var(--cream);
}

.pricing-card-studio .price-period {
  color: rgba(253, 246, 238, 0.65);
}

.pricing-card-studio .plan-features li::before { color: var(--tan-light); }

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.pricing-card-radiance .plan-name { color: var(--coral); }
.pricing-card-studio .plan-name { color: var(--tan-light); }

.plan-price {
  margin-bottom: 0.5rem;
}

.price-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}

.price-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.plan-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.plan-features li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(201, 168, 124, 0.10);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.plan-features li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.btn-plan {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-plan-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
}
.btn-plan-primary:hover { background: var(--coral-dark); transform: translateY(-1px); }

.btn-plan-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid rgba(45, 45, 45, 0.2);
}
.btn-plan-ghost:hover { border-color: var(--sage); color: var(--sage); }

.btn-plan-dark {
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-sage);
}
.btn-plan-dark:hover { background: #5A7B61; transform: translateY(-1px); }

/* Studio CTA banner */
.studio-cta {
  background: linear-gradient(135deg, var(--sage) 0%, #4E7255 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: var(--white);
}

.studio-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.studio-cta .section-label { color: rgba(255,255,255,0.65); }

.studio-cta-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.studio-cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
}

.studio-cta .btn-primary {
  background: var(--white);
  color: var(--sage);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.studio-cta .btn-primary:hover { background: var(--cream); }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 7rem 2rem;
  background: var(--sage-pale);
}

.testimonials-inner { max-width: 1200px; margin: 0 auto; }

.testimonials-header {
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(107, 143, 113, 0.12);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

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

.testimonial-card-featured {
  border-color: var(--sage);
  box-shadow: var(--shadow-sage);
}

.testimonial-stars {
  color: var(--tan);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--fg);
  flex: 1;
  margin-bottom: 1.75rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--tan-pale) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--sage);
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ===== EMAIL CAPTURE ===== */
.capture-section {
  padding: 7rem 2rem;
  background: var(--bg-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.capture-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 123, 90, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.capture-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.capture-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1.5px solid rgba(217, 123, 90, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.capture-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 1rem;
}

.capture-content p {
  color: rgba(253, 246, 238, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.capture-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.capture-bullets li {
  font-size: 0.9rem;
  color: rgba(253, 246, 238, 0.75);
  letter-spacing: 0.01em;
}

.capture-form-wrap {
  background: rgba(253, 246, 238, 0.05);
  border: 1px solid rgba(253, 246, 238, 0.10);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.capture-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.capture-form label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(253, 246, 238, 0.55);
  margin-bottom: 0.6rem;
}

.capture-form input[type="email"] {
  width: 100%;
  background: rgba(253, 246, 238, 0.08);
  border: 1.5px solid rgba(253, 246, 238, 0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
  margin-bottom: 1rem;
}
.capture-form input[type="email"]::placeholder { color: rgba(253, 246, 238, 0.30); }
.capture-form input[type="email"]:focus { border-color: var(--coral); }

.btn-capture {
  width: 100%;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: var(--shadow-coral);
  margin-bottom: 1rem;
}
.btn-capture:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-capture:disabled { opacity: 0.6; cursor: not-allowed; }

.capture-disclaimer {
  font-size: 0.78rem;
  color: rgba(253, 246, 238, 0.35);
  text-align: center;
  line-height: 1.4;
}

.capture-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 0;
}

.capture-success-icon {
  font-size: 2.5rem;
  color: var(--sage);
}

.capture-success h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
}

.capture-success p {
  color: rgba(253, 246, 238, 0.65);
  font-size: 0.95rem;
}

/* ===== CLOSING ===== */
.closing {
  padding: 9rem 2rem;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(107, 143, 113, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.closing-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(201, 168, 124, 0.15);
  background: var(--bg);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-left { display: flex; flex-direction: column; gap: 0.25rem; }

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--coral); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav .nav-links {
    display: none;
  }

  .hero {
    min-height: 90vh;
    padding: 6rem 1.5rem 4rem;
  }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .pillars, .shop-section, .pricing-section,
  .testimonials-section, .capture-section, .flow-section {
    padding: 4.5rem 1.5rem;
  }

  .pillars-grid,
  .shop-grid,
  .testimonials-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .flow-inner,
  .capture-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .studio-cta { padding: 2.5rem 1.75rem; }
  .studio-cta-inner { flex-direction: column; align-items: flex-start; }

  .closing { padding: 5.5rem 1.5rem; }
  .closing-actions { flex-direction: column; align-items: center; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .footer-links { flex-wrap: wrap; gap: 1rem; }
}

/* ===== BILLING TOGGLE ===== */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
  background: var(--bg-warm);
  border-radius: var(--radius-pill);
  padding: 0.25rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.toggle-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.toggle-btn.toggle-active {
  background: var(--white);
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.toggle-save {
  background: var(--sage);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-pill);
}

/* ===== PLAN META — trial note, no-cc, studio disambiguation ===== */
.plan-trial {
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  text-align: center;
}
.plan-no-cc {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}
.plan-studio-note {
  font-size: 0.75rem;
  color: rgba(253, 246, 238, 0.65);
  margin-top: 0.75rem;
  line-height: 1.5;
  text-align: center;
}
.plan-studio-link {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.plan-studio-link:hover { color: var(--coral-dark); }

/* ===== FAQ ===== */
.faq-section {
  margin-top: 4rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.faq-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.5rem;
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--tan-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-question:hover { background: var(--bg-warm); }
.faq-chevron {
  font-size: 1.1rem;
  color: var(--coral);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.faq-open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.faq-open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== STUDIO CONTACT FORM SECTION ===== */
.studio-contact-section {
  background: var(--bg-warm);
  padding: 6rem 2rem;
  margin-top: 4rem;
}
.studio-contact-inner {
  max-width: 700px;
  margin: 0 auto;
}
.studio-contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.studio-contact-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin: 0.5rem 0 0.75rem;
}
.studio-contact-sub {
  color: var(--fg-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.studio-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
.form-row input,
.form-row select {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--tan-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--cream);
  transition: border-color 0.2s;
  appearance: none;
}
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--coral);
}
.btn-studio-submit {
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: var(--shadow-coral);
}
.btn-studio-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 35px rgba(217, 123, 90, 0.35);
}
.btn-studio-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.studio-form-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}
.studio-success {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.studio-success-icon {
  font-size: 2rem;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.studio-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}
.studio-success p { color: var(--fg-muted); font-size: 0.95rem; }

@media (max-width: 640px) {
  .billing-toggle { width: 100%; justify-content: center; }
  .faq-section { margin-top: 3rem; }
  .studio-contact-section { padding: 4rem 1.5rem; }
  .studio-form { padding: 1.75rem 1.25rem; }
  .studio-contact-header h2 { font-size: 1.9rem; }
}
