/*
Theme Name: Astra Child - Cherry
Theme URI: https://webvantik.com
Description: Astra child theme for the "Transform with Cherry" site, converted from the original React/Tailwind build to plain CSS.
Author: Webvantik
Template: astra
Version: 1.0.0
Text Domain: cherry-child
*/

/* ==========================================================================
   Design tokens (dark = default, light = [data-theme="light"] on <html>)
   ========================================================================== */

:root,
[data-theme="light"] {
  /* placeholder, overridden below — kept so undeclared theme falls back to light */
}

html,
[data-theme="dark"] {
  --bg-deep: #020202;
  --bg-base: #0a0a0a;
  --bg-elevated: #111111;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --fg: #f5f1f2;
  --fg-muted: #9c9296;
  --accent: #bf133d;
  --accent-bright: #d81a49;
  --accent-glow: rgba(191, 19, 61, 0.3);
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(191, 19, 61, 0.3);
  --red-deep: #8a0e2c;
  --red-tint: rgba(191, 19, 61, 0.08);
  --shadow-card: 0 0 0 1px var(--border), 0 8px 30px rgba(0, 0, 0, 0.35), 0 0 60px var(--accent-glow);
  --grid-line: rgba(255, 255, 255, 0.5);
  --headline-gradient: linear-gradient(to bottom, #ffffff, rgba(245, 241, 242, 0.75));
  --blob-opacity: 0.28;
  --font-serif: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg-deep: #ffffff;
  --bg-base: #faf9f8;
  --bg-elevated: #ffffff;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-hover: rgba(0, 0, 0, 0.05);
  --fg: #141414;
  --fg-muted: #6b6b6b;
  --accent: #bf133d;
  --accent-bright: #8a0e2c;
  --accent-glow: rgba(191, 19, 61, 0.12);
  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(191, 19, 61, 0.2);
  --red-deep: #8a0e2c;
  --red-tint: #fdecef;
  --shadow-card: 0 0 0 1px var(--border), 0 4px 20px rgba(0, 0, 0, 0.06), 0 0 40px var(--accent-glow);
  --grid-line: rgba(0, 0, 0, 0.5);
  --headline-gradient: linear-gradient(to bottom, #141414, rgba(20, 20, 20, 0.75));
  --blob-opacity: 0.1;
  color-scheme: light;
}

/* ==========================================================================
   Base — scoped to .cherry-page so it never leaks onto normal Astra pages
   ========================================================================== */

.cherry-page * {
  border-color: var(--border);
  box-sizing: border-box;
}

.cherry-page svg {
  display: block;
}

.cherry-page {
  background-color: var(--bg-base);
  color: var(--fg);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 300ms ease, color 300ms ease;
}

.cherry-page h1,
.cherry-page h2,
.cherry-page h3,
.cherry-page h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.cherry-page ::selection {
  background: var(--accent);
  color: #fff;
}

.cherry-page :focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.cherry-page input,
.cherry-page select,
.cherry-page textarea,
.cherry-page button {
  font-family: inherit;
}

/* ---------- layout ---------- */
.wrap {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .wrap { padding-inline: 40px; }
}

.section-pad {
  padding-block: 72px;
}
@media (min-width: 768px) {
  .section-pad { padding-block: 110px; }
}

/* ---------- typography ---------- */
.display {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  background: var(--headline-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-word {
  background: linear-gradient(90deg, #bf133d, #d81a49, #bf133d);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: cherry-shimmer 5s ease-in-out infinite;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

/* ---------- surfaces ---------- */
.glass {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 18px;
}

.card-elevated {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.hairline {
  border-top: 1px solid var(--border);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 22px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--red-deep);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-accent);
}
.btn-ghost:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-on-dark {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-on-dark:hover {
  background: #ffffff;
  color: #141414;
  transform: translateY(-2px);
}

/* ---------- ambient background ---------- */
.ambient {
  position: relative;
  isolation: isolate;
  background: radial-gradient(ellipse at top, var(--bg-elevated) 0%, var(--bg-base) 50%, var(--bg-deep) 100%);
}

.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
}

.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  background: var(--accent);
  opacity: var(--blob-opacity);
  pointer-events: none;
  animation: cherry-drift 9s ease-in-out infinite;
}

.spotlight {
  position: relative;
  overflow: hidden;
  transition: all 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms ease;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), var(--accent-glow), transparent 70%);
}
.spotlight:hover::before { opacity: 1; }
.spotlight:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  background: var(--surface-hover);
}
.spotlight > .spotlight-inner { position: relative; z-index: 1; height: 100%; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.reveal-in { opacity: 1; transform: none; }

.marquee-track { animation: cherry-marquee 38s linear infinite; }
@keyframes cherry-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cherry-drift { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-20px) rotate(1deg); } }

/* ---------- nav link ---------- */
.nav-link {
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 200ms ease;
}
.nav-link:hover { color: var(--fg); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after,
.nav-link.is-active::after { left: 0; right: 0; }
.nav-link.is-active { color: var(--fg); }

/* ---------- form fields ---------- */
.field-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--fg);
  transition: all 200ms ease;
}
.field-input::placeholder { color: var(--fg-muted); }
.field-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

/* ---------- animations ---------- */
@keyframes cherry-shimmer { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes cherry-fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes cherry-pulse-ring { 0% { box-shadow: 0 0 0 0 var(--accent-glow); } 70% { box-shadow: 0 0 0 18px rgba(191, 19, 61, 0); } 100% { box-shadow: 0 0 0 0 rgba(191, 19, 61, 0); } }

.fade-up { animation: cherry-fade-up 700ms cubic-bezier(0.16, 1, 0.3, 1) both; }
.pulse-ring { animation: cherry-pulse-ring 2.4s ease-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .cherry-page *, .cherry-page *::before, .cherry-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 120ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */

.cherry-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: blur(8px);
  transition: all 300ms ease;
}
.cherry-header.is-scrolled {
  background: color-mix(in srgb, var(--bg-deep) 78%, transparent);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.cherry-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  transition: padding 300ms ease;
}
.cherry-header.is-scrolled .wrap { padding-block: 12px; }

.cherry-logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; text-decoration: none; }
.cherry-logo img { height: 32px; width: auto; transition: height 300ms ease; }
.cherry-header.is-scrolled .cherry-logo img { height: 28px; }
.cherry-logo-text { font-family: var(--font-serif); font-size: 20px; font-weight: 700; color: var(--fg); }

.cherry-nav-desktop { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .cherry-nav-desktop { display: flex; } }

.cherry-header-actions { display: flex; align-items: center; gap: 12px; }

.cherry-icon-btn {
  display: grid;
  place-items: center;
  height: 40px;
  width: 40px;
  padding: 0;
  line-height: 0;
  border-radius: 999px !important;
  color: var(--fg) !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.cherry-icon-btn:hover { border-color: var(--border-accent) !important; color: var(--accent) !important; }
.cherry-icon-btn:focus,
.cherry-icon-btn:active {
  background: var(--surface) !important;
  box-shadow: none !important;
}

.cherry-menu-toggle { display: grid; }
@media (min-width: 1024px) { .cherry-menu-toggle { display: none; } }

.cherry-book-btn { display: none; }
@media (min-width: 640px) { .cherry-book-btn { display: inline-flex; } }

.cherry-header-progress { height: 2px; width: 100%; background: transparent; }
.cherry-header-progress-bar { height: 100%; width: 0%; background: var(--accent); transition: width 150ms linear; }

/* mobile full-screen nav */
.cherry-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  flex-direction: column;
  background: color-mix(in srgb, var(--bg-deep) 98%, transparent);
  backdrop-filter: blur(24px);
}
.cherry-mobile-nav.is-open { display: flex; }
.cherry-mobile-nav .wrap { display: flex; align-items: center; justify-content: space-between; padding-block: 20px; }
.cherry-mobile-nav-links { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 24px; padding-inline: 20px; }
.cherry-mobile-nav-links a { font-family: var(--font-serif); font-size: 36px; font-weight: 600; color: var(--fg); text-decoration: none; }
.cherry-mobile-nav-cta { padding: 0 20px 40px; }

@media (min-width: 1024px) {
  .cherry-menu-toggle,
  .cherry-mobile-nav { display: none !important; }
}

/* ==========================================================================
   Page shell / main content offset (fixed header needs top padding)
   ========================================================================== */

.cherry-main {
  min-height: 60vh;
  padding-top: 84px; /* clears the fixed header */
  padding-bottom: 64px;
}
@media (min-width: 768px) { .cherry-main { padding-bottom: 0; } }

/* ==========================================================================
   Sticky mobile CTA + WhatsApp FAB
   ========================================================================== */

.cherry-whatsapp-fab {
  position: fixed;
  bottom: 84px;
  right: 20px;
  z-index: 40;
  display: grid;
  place-items: center;
  height: 56px;
  width: 56px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px var(--accent-glow);
  text-decoration: none;
}
@media (min-width: 768px) { .cherry-whatsapp-fab { bottom: 24px; } }

.cherry-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 30;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-deep) 90%, transparent);
  backdrop-filter: blur(24px);
  padding: 12px;
}
@media (min-width: 768px) { .cherry-sticky-cta { display: none; } }

/* ==========================================================================
   Footer
   ========================================================================== */

.cherry-footer {
  position: relative;
  border-top: 1px solid var(--border);
  padding-top: 64px;
  background: radial-gradient(ellipse at top, var(--bg-elevated) 0%, var(--bg-base) 50%, var(--bg-deep) 100%);
}
.cherry-footer-grid {
  display: grid;
  gap: 48px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .cherry-footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.cherry-footer h4 {
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg);
}
.cherry-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.cherry-footer a { color: var(--fg-muted); text-decoration: none; transition: color 200ms ease; }
.cherry-footer a:hover { color: var(--accent); }
.cherry-footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.cherry-footer-form { display: flex; gap: 8px; }
.cherry-footer-bottom .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px;
  font-size: 12px;
  color: var(--fg-muted);
}
@media (min-width: 640px) { .cherry-footer-bottom .wrap { flex-direction: row; } }
.cherry-footer-bottom-links { display: flex; gap: 24px; }

/* ==========================================================================
   Homepage-specific sections
   ========================================================================== */

.cherry-hero {
  position: relative;
  display: flex;
  min-height: 92vh;
  align-items: center;
  overflow: hidden;
  padding-top: 112px;
}
.cherry-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.06);
}
.cherry-hero-scrim-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.86) 35%, rgba(0,0,0,0.35) 65%, rgba(0,0,0,0.15) 100%);
}
.cherry-hero-scrim-2 {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 33%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.cherry-hero-content { position: relative; padding-block: 64px; max-width: 42rem; }
.cherry-hero-content h1 {
  margin-top: 24px;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.04;
  color: #ffffff;
}
.cherry-hero-content p {
  margin-top: 24px;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 768px) { .cherry-hero-content p { font-size: 1.125rem; } }
.cherry-hero-eyebrow { color: #f0839f; }
.cherry-hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.cherry-hero-scroll-cue { position: absolute; inset-inline: 0; bottom: 24px; display: flex; justify-content: center; color: rgba(255,255,255,0.6); }

.cherry-ticker { position: relative; overflow: hidden; padding-block: 24px; }
.cherry-ticker-track { position: relative; display: flex; width: max-content; gap: 16px; }
.cherry-ticker-pill { white-space: nowrap; padding: 10px 20px; border-radius: 999px; font-size: 14px; color: var(--fg-muted); }
.cherry-ticker-dot { display: inline-block; margin-right: 8px; height: 6px; width: 6px; border-radius: 999px; background: var(--accent); vertical-align: middle; }

.cherry-problem-grid { margin-top: 56px; display: grid; gap: 24px; }
@media (min-width: 1024px) { .cherry-problem-grid { grid-template-columns: 1fr 1fr; } }
.cherry-tried-list { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.cherry-tried-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--fg-muted); }
.cherry-x-badge { margin-top: 2px; display: grid; flex-shrink: 0; place-items: center; height: 24px; width: 24px; border-radius: 999px; border: 1px solid var(--border-accent); color: var(--accent); }

.cherry-pillars-grid { margin-top: 56px; display: grid; gap: 20px; }
@media (min-width: 768px) { .cherry-pillars-grid { grid-template-columns: repeat(6, 1fr); } }
.cherry-pillar-span-4 { grid-column: span 6; }
.cherry-pillar-span-2 { grid-column: span 6; }
@media (min-width: 768px) {
  .cherry-pillar-span-4 { grid-column: span 4; }
  .cherry-pillar-span-2 { grid-column: span 2; }
}
.cherry-pillar-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.cherry-pillar-icon { display: grid; place-items: center; height: 44px; width: 44px; border-radius: 14px; border: 1px solid var(--border-accent); color: var(--accent); }
.cherry-pillar-num { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--accent); opacity: 0.55; }
.cherry-pillar-card h3 { margin-top: 24px; font-size: 1.25rem; }
.cherry-pillar-card p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

.cherry-testimonials-grid { margin-top: 56px; display: grid; gap: 20px; }
@media (min-width: 768px) { .cherry-testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.cherry-stars { display: flex; gap: 2px; color: var(--accent); }
.cherry-testimonial-card p.quote { margin-top: 20px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }
.cherry-testimonial-person { margin-top: 28px; display: flex; align-items: center; gap: 12px; }
.cherry-testimonial-person img { height: 44px; width: 44px; border-radius: 999px; object-fit: cover; }
.cherry-testimonial-name { font-size: 14px; font-weight: 600; color: var(--fg); }
.cherry-testimonial-result { font-size: 12px; color: var(--accent); }

.cherry-insta-header { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; }
.cherry-insta-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .cherry-insta-grid { grid-template-columns: repeat(4, 1fr); } }
.cherry-insta-item { display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 16px; border: 1px solid var(--border); }
.cherry-insta-item img { height: 100%; width: 100%; object-fit: cover; transition: transform 500ms ease; }
.cherry-insta-item:hover img { transform: scale(1.05); }

/* ==========================================================================
   Shared inner page hero (About / Program / FAQ / Contact)
   ========================================================================== */

.cherry-page-hero { position: relative; overflow: hidden; padding-top: 150px; padding-bottom: 64px; }
.cherry-page-hero.has-pad-bottom-lg { padding-bottom: 110px; }

/* ==========================================================================
   About page
   ========================================================================== */

.cherry-about-grid { display: grid; align-items: center; gap: 56px; position: relative; }
@media (min-width: 1024px) { .cherry-about-grid { grid-template-columns: 1.05fr 0.95fr; } }
.cherry-about-grid h1 { margin-top: 20px; font-size: clamp(2.2rem, 5vw, 3.8rem); }
.cherry-about-grid > div:first-child p { margin-top: 20px; line-height: 1.7; color: var(--fg-muted); }
.cherry-about-grid > div:first-child p:first-of-type { font-size: 1.125rem; }

.cherry-portrait-frame { position: relative; }
.cherry-portrait-frame::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  border: 1px solid var(--border-accent);
}
.cherry-portrait-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  object-fit: cover;
}

.cherry-beliefs-grid { margin-top: 56px; display: grid; gap: 20px; }
@media (min-width: 768px) { .cherry-beliefs-grid { grid-template-columns: 1fr 1fr; } }
.cherry-beliefs-grid h3 { font-size: 1.25rem; }
.cherry-beliefs-grid p { margin-top: 12px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

/* ==========================================================================
   Program page
   ========================================================================== */

.cherry-program-top { display: grid; gap: 20px; }
@media (min-width: 1024px) { .cherry-program-top { grid-template-columns: 1fr 1fr; } }
.cherry-included-list { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.cherry-included-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--fg-muted); }
.cherry-check-badge {
  margin-top: 2px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  height: 20px;
  width: 20px;
  border-radius: 999px;
  background: var(--red-tint);
  color: var(--accent);
}

.cherry-steps-grid { display: grid; gap: 20px; }
@media (min-width: 640px) { .cherry-steps-grid { grid-template-columns: 1fr 1fr; } }
.cherry-step-num { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 700; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--accent); opacity: 0.6; }
.cherry-step-card h3 { margin-top: 20px; font-size: 1.125rem; }
.cherry-step-card p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

/* ---------- calorie calculator ---------- */
.cherry-calc {
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px var(--border-accent), 0 20px 60px var(--accent-glow);
}
.cherry-calc-grid { display: grid; }
@media (min-width: 1024px) { .cherry-calc-grid { grid-template-columns: 1.15fr 1fr; } }
.cherry-calc-inputs { padding: 24px; display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 768px) { .cherry-calc-inputs { padding: 36px; } }
.cherry-calc-row-2 { display: grid; gap: 20px; }
@media (min-width: 640px) { .cherry-calc-row-2 { grid-template-columns: 1fr 1fr; } }
.cherry-calc-label { margin-bottom: 8px; display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.cherry-pill-group { display: grid; gap: 8px; }
.cherry-pill-group.cols-2 { grid-template-columns: 1fr 1fr; }
.cherry-pill-group.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.cherry-pill-group.wrap { display: flex; flex-wrap: wrap; }
.cherry-pill {
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 200ms ease;
}
.cherry-pill:hover { color: var(--fg); }
.cherry-pill.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 18px var(--accent-glow);
}
.cherry-calc-results { border-top: 1px solid var(--border); background: var(--bg-elevated); padding: 24px; }
@media (min-width: 768px) { .cherry-calc-results { padding: 36px; } }
@media (min-width: 1024px) { .cherry-calc-results { border-top: 0; border-left: 1px solid var(--border); } }
.cherry-calc-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); }
.cherry-calc-target { margin-top: 16px; display: flex; align-items: flex-end; gap: 8px; }
.cherry-calc-target-num { font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 4.6rem); font-weight: 600; line-height: 1; color: var(--fg); }
.cherry-calc-target-unit { padding-bottom: 8px; font-size: 14px; color: var(--fg-muted); }
.cherry-calc-target-sub { margin-top: 8px; font-size: 14px; color: var(--fg-muted); }
.cherry-calc-stat-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cherry-calc-stat { border-radius: 18px; background: var(--surface); border: 1px solid var(--border); padding: 16px; }
.cherry-calc-stat-label { display: flex; align-items: center; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--fg-muted); }
.cherry-calc-stat-value { margin-top: 4px; font-family: var(--font-serif); font-size: 1.5rem; color: var(--fg); }
.cherry-macros { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.cherry-macro-row-top { margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; }
.cherry-macro-name { display: flex; align-items: center; gap: 8px; color: var(--fg); }
.cherry-macro-dot { height: 8px; width: 8px; border-radius: 999px; }
.cherry-macro-grams { font-weight: 600; color: var(--fg-muted); }
.cherry-macro-track { height: 8px; overflow: hidden; border-radius: 999px; background: var(--surface); }
.cherry-macro-fill { height: 100%; border-radius: 999px; transition: width 500ms ease; }
.cherry-calc-disclaimer { margin-top: 24px; font-size: 12px; line-height: 1.6; color: var(--fg-muted); }
.cherry-calc-cta-box { margin-top: 24px; border-radius: 14px; border: 1px solid var(--border-accent); padding: 16px; }
.cherry-calc-cta-box p { font-size: 14px; color: var(--fg); }
.cherry-calc-cta-box .btn { margin-top: 12px; width: 100%; }

/* ==========================================================================
   FAQ page
   ========================================================================== */

.cherry-faq-list { display: flex; flex-direction: column; gap: 12px; }
.cherry-faq-item { overflow: hidden; }
.cherry-faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--fg);
}
.cherry-faq-icon { flex-shrink: 0; color: var(--accent); transition: transform 300ms ease; }
.cherry-faq-item.is-open .cherry-faq-icon { transform: rotate(45deg); }
.cherry-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.cherry-faq-item.is-open .cherry-faq-answer { max-height: 300px; }
.cherry-faq-answer p { padding: 0 24px 24px; font-size: 14px; line-height: 1.6; color: var(--fg-muted); }

/* ==========================================================================
   Contact page
   ========================================================================== */

.cherry-contact-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .cherry-contact-grid { grid-template-columns: 1fr 1.1fr; } }
.cherry-contact-links { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.cherry-contact-link { display: flex; align-items: center; gap: 16px; padding: 20px; text-decoration: none; color: inherit; }
.cherry-contact-link svg { flex-shrink: 0; color: var(--accent); }
.cherry-contact-link-label { display: block; font-size: 14px; font-weight: 600; color: var(--fg); }
.cherry-contact-link-value { display: block; font-size: 14px; color: var(--fg-muted); }

.cherry-contact-form-card { padding: 32px; }
@media (min-width: 768px) { .cherry-contact-form-card { padding: 40px; } }
.cherry-form-group + .cherry-form-group { margin-top: 24px; }
.cherry-form-error { margin-top: 8px; font-size: 12px; color: var(--accent); }
.cherry-form-success { padding: 40px 0; text-align: center; }
.cherry-form-success h2 { font-size: 1.5rem; }
.cherry-form-success p { margin-top: 12px; font-size: 14px; color: var(--fg-muted); }
.cherry-form-note { margin-top: 16px; font-size: 12px; color: var(--fg-muted); }
