/* ═══════════════════════════════════════════════════════════
   THE CALM CORNER — styles.css
   Aesthetic: Warm Linen × Organic Wellness × Quiet Luxury
═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ───────────────────────────────────────── */
:root {
  /* Color system */
  --cream:       #FAF7F2;
  --beige:       #F2EAE0;
  --beige-mid:   #E8DDD1;
  --beige-dark:  #D4C5B2;
  --terracotta:  #B07050;
  --terra-dark:  #8A5640;
  --sage:        #7D9E85;
  --sage-light:  #A8C4AE;
  --blush:       #E8C5B5;
  --brown-deep:  #2E1F16;
  --brown-mid:   #5A3E30;
  --brown-soft:  #7A5C48;
  --white:       #FFFFFF;

  /* Semantic tokens */
  --bg:          var(--cream);
  --surface:     var(--beige);
  --border:      var(--beige-dark);
  --text-main:   var(--brown-deep);
  --text-soft:   var(--brown-mid);
  --text-muted:  var(--brown-soft);
  --accent:      var(--terracotta);
  --accent-dark: var(--terra-dark);
  --accent2:     var(--sage);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing scale */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    1.5rem;
  --space-lg:    2.5rem;
  --space-xl:    4rem;
  --space-2xl:   6rem;
  --space-3xl:   9rem;

  /* Radii */
  --r-sm:  0.5rem;
  --r-md:  1rem;
  --r-lg:  1.5rem;
  --r-xl:  2.5rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-soft:  0 4px 24px rgba(46, 31, 22, 0.08);
  --shadow-card:  0 8px 40px rgba(46, 31, 22, 0.10);
  --shadow-hover: 0 16px 60px rgba(46, 31, 22, 0.15);

  /* Transitions */
  --ease-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

ul { list-style: none; }

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ─── LAYOUT HELPERS ─────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--space-sm); }
}

/* ─── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: var(--space-md);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  font-weight: 300;
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-gentle),
              transform 0.7s var(--ease-gentle);
}

.reveal.reveal-delay-1 { transition-delay: 0.12s; }
.reveal.reveal-delay-2 { transition-delay: 0.24s; }
.reveal.reveal-delay-3 { transition-delay: 0.36s; }

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s var(--ease-gentle);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(176, 112, 80, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 6px 30px rgba(176, 112, 80, 0.50);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(176, 112, 80, 0.05);
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(176, 112, 80, 0.3);
}

.btn-nav:hover,
.btn-nav:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.btn-mobile-cta {
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--r-full);
  padding: 0.9rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(176, 112, 80, 0.3);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s var(--ease-gentle),
              box-shadow 0.4s var(--ease-gentle),
              padding 0.4s var(--ease-gentle);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--beige-dark), var(--shadow-soft);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.2rem var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-leaf {
  color: var(--accent);
  font-size: 1.1rem;
}

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

.nav-links a {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s var(--ease-gentle);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-card);
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.3s var(--ease-gentle) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-link {
  font-size: 1.05rem;
  color: var(--text-soft);
  font-weight: 400;
  display: block;
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--beige);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-xl);
  max-width: 1160px;
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.hero-bg-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 70% 30%, rgba(232, 197, 181, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(168, 196, 174, 0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(242, 234, 224, 0.60) 0%, transparent 70%);
  pointer-events: none;
}

.hero-petals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.petal {
  position: absolute;
  font-size: 1.2rem;
  color: var(--blush);
  opacity: 0.4;
  animation: floatPetal 8s ease-in-out infinite;
}

.p1 { top: 15%; left: 5%;  animation-delay: 0s;    font-size: 1rem; }
.p2 { top: 60%; left: 2%;  animation-delay: 2s;    font-size: 0.8rem; }
.p3 { top: 25%; right: 8%; animation-delay: 1s;    font-size: 1.4rem; color: var(--sage-light); }
.p4 { top: 75%; right: 5%; animation-delay: 3.5s;  font-size: 0.9rem; }
.p5 { top: 45%; right: 2%; animation-delay: 5s;    font-size: 1.1rem; }

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50%       { transform: translateY(-14px) rotate(8deg); opacity: 0.6; }
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  padding: 0.4rem 1rem;
  background: rgba(176, 112, 80, 0.10);
  border-radius: var(--r-full);
  border: 1px solid rgba(176, 112, 80, 0.20);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  max-width: 400px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.microcopy {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 400;
}

.trust-icon { font-size: 0.9rem; }

.trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--beige-dark);
}

/* ─── HERO ILLUSTRATION ──────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  position: relative;
  width: 380px;
  height: 420px;
}

.illustration-orb {
  position: absolute;
  border-radius: 50%;
}

.orb-1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 35% 40%,
    rgba(232, 197, 181, 0.60) 0%,
    rgba(242, 234, 224, 0.30) 60%,
    transparent 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 5s ease-in-out infinite;
}

.orb-2 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 60% 40%,
    rgba(168, 196, 174, 0.50) 0%,
    transparent 70%);
  top: 20%;
  right: 0;
  animation: orbPulse 7s ease-in-out infinite reverse;
}

@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.08); }
}

.illustration-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.center-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.center-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--accent);
  text-align: center;
  line-height: 1.4;
  font-style: italic;
}

.illustration-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--beige);
  z-index: 3;
}

.illustration-card .card-emoji { font-size: 1.3rem; display: block; margin-bottom: 0.3rem; }
.illustration-card p { font-size: 0.82rem; font-weight: 500; color: var(--text-main); }
.illustration-card .card-sub { font-size: 0.7rem; color: var(--text-muted); }

.card-float-1 {
  top: 5%;
  left: -5%;
  animation: cardFloat1 6s ease-in-out infinite;
}

.card-float-2 {
  bottom: 8%;
  right: -5%;
  max-width: 160px;
  animation: cardFloat2 7s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes cardFloat2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

/* ─── WHAT THIS IS ───────────────────────────────────────── */
.what-is-it {
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
}

.what-is-it .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  text-align: left;
}

.what-card {
  background: var(--surface);
  border: 1px solid var(--beige-mid);
  border-radius: var(--r-lg);
  padding: var(--space-lg) var(--space-md);
  transition: transform 0.3s var(--ease-gentle),
              box-shadow 0.3s var(--ease-gentle),
              border-color 0.3s;
  cursor: default;
}

.what-card:hover,
.what-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blush);
}

.what-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.what-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.what-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── BENEFITS ───────────────────────────────────────────── */
.benefits {
  padding: var(--space-2xl) 0;
  background: var(--white);
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  text-align: left;
}

.benefit-card {
  position: relative;
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--r-xl);
  padding: var(--space-xl) var(--space-lg);
  transition: all 0.35s var(--ease-gentle);
  overflow: hidden;
  background: var(--cream);
  cursor: default;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(232, 197, 181, 0.15) 0%,
    transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.benefit-card:hover::before,
.benefit-card:focus-visible::before {
  opacity: 1;
}

.benefit-card:hover,
.benefit-card:focus-visible {
  border-color: var(--blush);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.benefit-num {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--beige-mid);
  line-height: 1;
  user-select: none;
}

.benefit-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 0.7rem;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-weight: 300;
  max-width: 400px;
}

/* ─── WHO THIS IS FOR ────────────────────────────────────── */
.for-you {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--beige) 100%);
}

.for-you-inner {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-2xl) var(--space-2xl);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--beige-mid);
  text-align: center;
}

.for-you-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.for-you-list {
  text-align: left;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.for-you-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.6;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--beige);
}

.for-you-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.check {
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ─── BEFORE / AFTER ─────────────────────────────────────── */
.before-after {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-lg);
  align-items: center;
  margin-top: var(--space-xl);
  text-align: left;
}

.ba-card {
  border-radius: var(--r-xl);
  padding: var(--space-xl) var(--space-lg);
}

.ba-before {
  background: var(--surface);
  border: 1.5px solid var(--beige-mid);
}

.ba-after {
  background: linear-gradient(135deg,
    rgba(125, 158, 133, 0.12) 0%,
    rgba(168, 196, 174, 0.08) 100%);
  border: 1.5px solid rgba(125, 158, 133, 0.30);
}

.ba-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: var(--space-md);
}

.ba-before .ba-tag {
  background: rgba(46, 31, 22, 0.08);
  color: var(--text-muted);
}

.ba-after .ba-tag {
  background: rgba(125, 158, 133, 0.20);
  color: var(--sage);
}

.ba-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ba-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.ba-icon { font-size: 1.1rem; flex-shrink: 0; }

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-arrow {
  font-size: 1.8rem;
  color: var(--accent);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: var(--space-2xl) 0;
  background: var(--white);
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
  text-align: left;
}

.testi-card {
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  background: var(--cream);
  transition: all 0.3s var(--ease-gentle);
  cursor: default;
}

.testi-card:hover,
.testi-card:focus-visible {
  border-color: var(--blush);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.testi-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--beige-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
}

.testi-author div:last-child {
  display: flex;
  flex-direction: column;
}

.testi-author strong {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-main);
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ─── PRICING ────────────────────────────────────────────── */
.pricing {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--beige) 100%);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1020px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--space-2xl);
  border: 1.5px solid var(--beige-mid);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.pricing-card-paid {
  border-color: var(--blush);
  box-shadow: var(--shadow-hover);
}

/* ─── NEW PRICE DISPLAY ─── */
.pricing-amount-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-md) 0 var(--space-xs);
}

.pricing-original {
  font-size: 1.25rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.pricing-current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.pricing-current .pricing-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 2px;
}

.pricing-save-badge {
  background: #1a1a1a;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blush), var(--accent), var(--sage-light));
}

.pricing-card-free::before {
  background: linear-gradient(90deg, var(--sage-light), var(--sage), var(--blush));
}

/* Free badge — sage tones */
.pricing-badge-free {
  background: linear-gradient(135deg, rgba(125, 158, 133, 0.12), rgba(168, 196, 174, 0.20));
  border-color: rgba(125, 158, 133, 0.30);
  color: var(--sage);
}

/* Free CTA button override */
.btn-free {
  border-color: var(--sage);
  color: var(--sage);
  width: 100%;
  justify-content: center;
}

.btn-free:hover,
.btn-free:focus-visible {
  border-color: var(--sage);
  color: var(--white);
  background: var(--sage);
}

/* Nav free link */
.nav-link-free {
  font-size: 0.88rem;
  color: var(--sage) !important;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link-free:hover,
.nav-link-free:focus-visible {
  color: var(--sage) !important;
  text-decoration: underline;
}

.mobile-link-free {
  color: var(--sage) !important;
  font-weight: 500;
}

.pricing-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, rgba(176, 112, 80, 0.12), rgba(232, 197, 181, 0.20));
  border: 1px solid rgba(176, 112, 80, 0.25);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-lg);
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: var(--space-sm);
}

.pricing-dollar {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-soft);
  margin-top: 0.8rem;
}

.pricing-num {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.pricing-per {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-soft);
  align-self: flex-end;
  margin-bottom: 0.9rem;
  font-weight: 400;
}

.pricing-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.pricing-features {
  text-align: left;
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.pricing-features li span {
  color: var(--sage);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-micro {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  text-align: center;
}

/* ─── COMMUNITY ──────────────────────────────────────────── */
.community {
  padding: var(--space-3xl) 0;
  background: var(--white);
  text-align: center;
}

.community-inner {
  max-width: 720px;
  margin: 0 auto;
}

.community-petals {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
  font-size: 1.5rem;
  color: var(--blush);
  opacity: 0.7;
}

.community-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: var(--space-lg);
}

.community-quote em {
  font-style: normal;
  color: var(--accent);
  font-weight: 500;
}

.community-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: var(--space-2xl) 0;
  background: var(--surface);
}

.faq .section-title,
.faq .section-label {
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: var(--space-xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:has(.faq-a:not([hidden])) {
  border-color: var(--blush);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  transition: color 0.2s;
  cursor: pointer;
}

.faq-q:hover,
.faq-q[aria-expanded="true"] {
  color: var(--accent);
}

.faq-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-gentle);
  display: block;
  line-height: 1;
}

.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 var(--space-lg) var(--space-md);
  animation: fadeIn 0.25s var(--ease-gentle) forwards;
}

.faq-a p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.8;
  font-weight: 300;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg,
    var(--beige) 0%,
    rgba(232, 197, 181, 0.30) 50%,
    var(--surface) 100%);
  text-align: center;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-petals {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  font-size: 1.3rem;
  color: var(--blush);
  opacity: 0.6;
  margin-bottom: var(--space-lg);
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: var(--space-md);
  font-style: italic;
  line-height: 1.15;
}

.final-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.final-micro {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  font-style: italic;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--brown-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-xl) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.footer .logo-leaf { color: var(--blush); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.50);
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--blush);
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-full);
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--blush);
  border-color: rgba(232, 197, 181, 0.30);
}

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.28);
  margin-top: var(--space-sm);
}

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

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ─── RESPONSIVE — MOBILE ────────────────────────────────── */
@media (max-width: 768px) {

  /* Navbar */
  .nav-links,
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 1rem var(--space-sm); }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 90px;
    padding-bottom: var(--space-xl);
    gap: var(--space-xl);
  }

  .hero-content { max-width: 100%; }

  .hero-visual {
    order: -1;
    display: none; /* Hide on mobile for cleaner layout */
  }

  .hero-headline { font-size: clamp(1.9rem, 7vw, 2.8rem); }

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

  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Sections */
  .what-grid { grid-template-columns: 1fr; }

  .benefits-grid { grid-template-columns: 1fr; }

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ba-divider { padding: var(--space-sm) 0; }
  .ba-arrow { transform: rotate(90deg); }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-card:last-child { grid-column: auto; max-width: none; }

  .for-you-inner {
    padding: var(--space-xl) var(--space-md);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: var(--space-xl) var(--space-md);
  }

  .community-quote {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  /* Hero illustration hidden on small mobile handled above */
}

@media (max-width: 480px) {
  :root {
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .section-title { font-size: 1.7rem; }
  .ba-card { padding: var(--space-lg) var(--space-md); }
  .pricing-num { font-size: 4.5rem; }
}

/* ─── PREFERS REDUCED MOTION ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
