/* ============================================================
   EFT DIGITAL MARKETING — v2 DESIGN SYSTEM
   Style: Light organic / champagne / sage / ochre
   Fonts: Playfair Display + Plus Jakarta Sans + JetBrains Mono
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-feature-settings: "cv02","cv03","cv04","cv11"; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f2eb; }
::-webkit-scrollbar-thumb { background: #b0c0b2; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #889e8a; }

/* --- TOKENS --- */
:root {
  /* Sage */
  --sage-50:  #f4f6f4;
  --sage-100: #e7ece7;
  --sage-200: #d1dbd2;
  --sage-300: #b0c0b2;
  --sage-400: #889e8a;
  --sage-500: #627b65;
  --sage-600: #4c624e;
  --sage-700: #3f5041;
  --sage-800: #334034;
  --sage-900: #2b352b;
  --sage-950: #161c16;
  /* Ochre */
  --ochre-50:  #faf6f2;
  --ochre-100: #f3eae0;
  --ochre-200: #e7d2bf;
  --ochre-300: #d8b495;
  --ochre-400: #c9936c;
  --ochre-500: #bd794c;
  --ochre-600: #b0643c;
  /* Champagne */
  --champ-50:  #faf9f6;
  --champ-100: #f5f2eb;
  --champ-200: #e8e2d4;
  --champ-300: #d5c8b2;
  --champ-400: #beab8c;
  --champ-500: #ab9571;
  /* Blush — soft warm pink for spa sections */
  --blush-50:  #fdf5f3;
  --blush-100: #fae8e3;
  --blush-200: #f4cfc6;
  --blush-300: #e8afa3;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', monospace;

  --max-w: 1280px;
  --radius-card: 24px;
  --radius-pill: 999px;
  --transition: 0.25s ease;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sage-800);
  background: var(--champ-50);
  -webkit-font-smoothing: antialiased;
}

/* --- ORGANIC BACKGROUND --- */
.organic-bg {
  background-image:
    radial-gradient(at 0% 0%, rgba(244,239,234,0.4) 0, transparent 50%),
    radial-gradient(at 50% 0%, rgba(234,240,236,0.4) 0, transparent 50%),
    radial-gradient(at 100% 100%, rgba(245,242,235,0.4) 0, transparent 50%);
  background-color: var(--champ-50);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  color: var(--sage-950);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--ochre-500); }

p { color: var(--sage-700); line-height: 1.75; }

.mono { font-family: var(--font-mono); }

/* --- LAYOUT --- */
.wrap      { max-width: 900px;      margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.wrap-prose{ max-width: 720px;      margin: 0 auto; padding: 0 24px; }
.center    { text-align: center; }

/* --- PILL EYEBROW --- */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-700);
  background: var(--sage-100);
  border: 1px solid rgba(176,192,178,0.5);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.pill-label.ochre {
  color: var(--ochre-600);
  background: var(--ochre-50);
  border-color: var(--ochre-200);
}

/* Section heading underbar */
.section-bar {
  width: 64px;
  height: 4px;
  background: var(--ochre-300);
  border-radius: 99px;
  margin: 20px auto 0;
}
.section-bar.left { margin-left: 0; }

/* --- NAV --- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  transition: all var(--transition);
}
.site-nav.scrolled {
  background: rgba(250,249,246,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(176,192,178,0.4);
  padding: 12px 32px;
  box-shadow: 0 2px 16px rgba(43,53,43,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ochre-400);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-logo-wrap:hover .nav-logo-icon { background: var(--ochre-500); }
.nav-logo-text { line-height: 1.2; }
.nav-logo-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--sage-950);
  display: block;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--sage-500);
  text-transform: uppercase;
  display: block;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--sage-800);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ochre-500); }
.nav-time {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 20px;
  border-right: 1px solid var(--sage-200);
  white-space: nowrap;
}
.nav-time-label { font-family: var(--font-mono); font-size: 10px; color: var(--sage-500); text-transform: uppercase; letter-spacing: 0.1em; }
.nav-time-val   { font-size: 12px; font-weight: 600; color: var(--sage-800); margin-top: 2px; }

/* Nav CTA pill button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--ochre-500);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-nav-cta:hover { background: var(--ochre-600); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  margin-left: auto;
}
.nav-toggle:hover { background: var(--sage-100); }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--sage-800); transition: all var(--transition); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 71px; left: 0; right: 0; bottom: 0;
  background: rgba(250,249,246,0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  padding: 40px 32px;
  border-top: 1px solid var(--sage-200);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--sage-900);
  padding: 16px 0;
  border-bottom: 1px solid var(--sage-100);
  transition: color var(--transition);
}
.nav-drawer a:hover { color: var(--ochre-500); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ochre-500);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--ochre-600);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(189,121,76,0.28);
}
.btn-secondary {
  background: var(--champ-100);
  color: var(--sage-900);
  border: 1px solid var(--sage-200);
}
.btn-secondary:hover {
  background: var(--champ-200);
  border-color: var(--sage-300);
}
.btn-outline {
  background: transparent;
  color: var(--sage-900);
  border: 1px solid var(--sage-300);
}
.btn-outline:hover { background: var(--sage-50); border-color: var(--sage-400); }

.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.cta-group.center { justify-content: center; }
.cta-note { font-size: 12px; color: var(--sage-500); margin-top: 14px; font-family: var(--font-mono); letter-spacing: 0.05em; }

/* Arrow icon helper */
.arrow { display: inline-block; transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px) translateY(-3px); }

/* --- HERO --- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 148px 0 96px;
  background: linear-gradient(160deg, #ffffff 0%, var(--blush-50) 45%, var(--champ-50) 100%);
}
/* Organic blobs */
.hero-blob-left {
  position: absolute;
  top: 50%; left: -8rem;
  transform: translateY(-50%);
  width: 40rem; height: 40rem;
  border-radius: 50%;
  background: rgba(231,236,231,0.4);
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob-right {
  position: absolute;
  top: -4rem; right: -4rem;
  width: 44rem; height: 44rem;
  border-radius: 50%;
  background: rgba(243,234,224,0.3);
  filter: blur(80px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}
.hero-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sage-800);
}
.check-circle {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-700);
  font-size: 11px;
  font-weight: 700;
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(176,192,178,0.3);
  margin-top: 24px;
}
.hero-trust-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--sage-500);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero-trust-names {
  display: flex;
  gap: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sage-400);
  font-size: 13px;
}
.hero-trust-names span { color: var(--sage-300); }

/* Hero image panel */
.hero-img-panel {
  position: relative;
}
.hero-img-wrap {
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(176,192,178,0.4);
  box-shadow: 0 32px 80px rgba(43,53,43,0.12);
  background: var(--champ-100);
  padding: 12px;
  transition: box-shadow 0.5s ease;
}
.hero-img-wrap:hover { box-shadow: 0 40px 96px rgba(43,53,43,0.18); }
.hero-img-inner {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.hero-img-wrap:hover .hero-img-inner img { transform: scale(1.03); }

/* Floating stat badges */
.stat-badge {
  position: absolute;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(176,192,178,0.5);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(43,53,43,0.1);
}
.stat-badge-dark {
  background: rgba(51,64,52,0.95);
  border-color: rgba(63,80,65,0.5);
}
.stat-badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-badge-icon.sage  { background: var(--sage-100); color: var(--sage-600); }
.stat-badge-icon.dark  { background: var(--sage-700); color: var(--ochre-300); }
.stat-badge-num   { font-family: var(--font-serif); font-size: 24px; font-weight: 700; color: var(--sage-900); line-height: 1; }
.stat-badge-label { font-size: 10px; font-weight: 700; color: var(--sage-600); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; font-family: var(--font-mono); }
.stat-badge-title { font-size: 13px; font-weight: 600; color: var(--champ-100); line-height: 1.2; }
.stat-badge-sub   { font-family: var(--font-mono); font-size: 10px; color: var(--sage-300); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 3px; }

/* --- SECTIONS --- */
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-white { background: #ffffff; }
.section-champagne { background: var(--champ-50); }
.section-sage { background: var(--sage-50); }
.section-blush { background: var(--blush-50); }

/* Decorative blob helper */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* --- SECTION HEADERS --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header h2 { margin-top: 16px; }
.section-header p { color: var(--sage-700); margin-top: 18px; font-size: 17px; }

/* --- CARDS --- */
.card {
  background: white;
  border: 1px solid rgba(176,192,178,0.3);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(43,53,43,0.08);
  transform: translateY(-3px);
}
.card.sage-bg {
  background: var(--sage-50);
  border-color: rgba(176,192,178,0.3);
}
.card.dark {
  background: var(--sage-900);
  border-color: var(--sage-800);
  color: var(--champ-100);
}
.card.dark h3, .card.dark h4 { color: var(--champ-100); }
.card.dark p { color: var(--sage-300); }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--sage-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(43,53,43,0.06);
  font-size: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p  { font-size: 14px; }

.card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ochre-500);
  transition: opacity var(--transition);
}
.card-link:hover { opacity: 0.75; text-decoration: underline; text-underline-offset: 3px; }

/* --- GRIDS --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* --- STATS ROW --- */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--sage-200);
  border-right: 1px solid var(--sage-200);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--ochre-500);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-desc { font-size: 13px; color: var(--sage-600); line-height: 1.5; }

/* --- PROCESS STEPS --- */
.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--sage-100);
  align-items: start;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-400);
  border: 1px solid var(--sage-200);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step-content p  { font-size: 14px; color: var(--sage-600); }

/* --- PULL QUOTE --- */
.pull-quote {
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-left: 3px solid var(--ochre-300);
  border-radius: 0 16px 16px 0;
  padding: 24px 32px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--sage-800);
  position: relative;
}
.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-style: normal;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-500);
}

/* --- LISTS --- */
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.pain-list li {
  padding-left: 20px;
  position: relative;
  color: var(--sage-700);
  font-size: 15px;
}
.pain-list li::before { content: '—'; position: absolute; left: 0; color: var(--ochre-400); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--sage-800);
}
.check-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sage-200);
  color: var(--sage-700);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- PRICING --- */
.price-card {
  background: white;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-card);
  padding: 44px 36px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.price-card.featured {
  border-color: var(--sage-500);
  box-shadow: 0 0 0 1px var(--sage-500);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--sage-700);
  color: var(--champ-100);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 4px 16px;
  border-radius: 99px;
}
.price-card:hover { box-shadow: 0 16px 48px rgba(43,53,43,0.1); transform: translateY(-4px); }
.price-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 400;
  color: var(--ochre-500);
  line-height: 1;
  margin: 14px 0 4px;
}
.price-period { font-size: 13px; color: var(--sage-500); font-family: var(--font-mono); }
.price-desc { color: var(--sage-700); margin: 18px 0 28px; font-size: 14px; }

.price-large {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--ochre-500);
  line-height: 1;
  margin-bottom: 28px;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: white;
  border: 1px solid var(--sage-200);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); }
.stars { color: var(--ochre-400); font-size: 14px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--sage-700);
  line-height: 1.7;
}
.testimonial-meta { border-top: 1px solid var(--sage-100); padding-top: 16px; margin-top: 20px; display: flex; align-items: center; justify-content: space-between; }
.testimonial-author { font-size: 12px; font-weight: 600; color: var(--sage-900); }
.testimonial-role   { font-family: var(--font-mono); font-size: 10px; color: var(--sage-500); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.testimonial-tag    { font-family: var(--font-mono); font-size: 10px; color: var(--sage-400); background: var(--sage-50); padding: 3px 10px; border-radius: 6px; border: 1px solid var(--sage-100); }

/* --- BLOG --- */
.blog-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--transition);
}
.blog-feature:hover { box-shadow: 0 16px 48px rgba(43,53,43,0.1); }
.blog-feature-img { min-height: 300px; }
.blog-feature-content {
  padding: 48px 44px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-feature-content h2 { font-size: 1.7rem; margin-bottom: 14px; }
.blog-feature-content p { font-size: 14px; color: var(--sage-700); margin-bottom: 18px; }

.blog-card {
  display: block;
  background: white;
  border: 1px solid var(--sage-200);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(43,53,43,0.1); transform: translateY(-3px); }
.blog-card-img { min-height: 180px; }
.blog-card-content { padding: 24px; }
.blog-card-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card-content p  { font-size: 13px; color: var(--sage-700); margin-bottom: 12px; }

.category-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-600);
  background: var(--sage-100);
  border: 1px solid var(--sage-200);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.blog-meta { font-family: var(--font-mono); font-size: 11px; color: var(--sage-500); letter-spacing: 0.05em; }

/* --- CONTACT --- */
.contact-email {
  display: block;
  font-size: 14px;
  color: var(--ochre-500);
  margin-bottom: 14px;
  transition: opacity var(--transition);
}
.contact-email:hover { opacity: 0.7; text-decoration: underline; text-underline-offset: 3px; }
.contact-note { font-size: 13px; color: var(--sage-500); text-align: center; margin-top: 32px; font-family: var(--font-mono); }

/* --- FORM --- */
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-800);
  margin-bottom: 8px;
}
.form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sage-200);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--sage-900);
  background: rgba(244,246,244,0.3);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  border-color: var(--sage-500);
  box-shadow: 0 0 0 3px rgba(98,123,101,0.12);
}
.form-input::placeholder { color: var(--sage-400); }

/* --- FOOTER --- */
.site-footer {
  background: #ffffff;
  color: var(--sage-700);
  padding: 80px 0 40px;
  border-top: 1px solid var(--champ-200);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--champ-200);
  margin-bottom: 32px;
}
.footer-brand-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--sage-900);
  display: block;
  margin-bottom: 14px;
}
.footer-tagline { font-size: 13px; color: var(--sage-500); line-height: 1.7; max-width: 300px; margin-bottom: 14px; }
.footer-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ochre-500);
  margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 13px; color: var(--sage-500); transition: color var(--transition); }
.footer-nav a:hover { color: var(--ochre-500); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--sage-400);
  font-family: var(--font-sans);
}
.footer-bottom a { color: var(--sage-500); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--ochre-500); }

/* --- NEWSLETTER POPUP --- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(22,28,22,0.5);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-card {
  background: var(--champ-50);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-card);
  padding: 48px 44px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 32px 80px rgba(22,28,22,0.2);
}
.popup-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none;
  font-size: 24px; color: var(--sage-400);
  cursor: pointer; line-height: 1;
  transition: color var(--transition);
}
.popup-close:hover { color: var(--sage-900); }
.popup-card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.popup-card > p { font-size: 14px; margin-bottom: 24px; }
.popup-input {
  display: block; width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sage-200);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  background: white;
  color: var(--sage-900);
  outline: none;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
.popup-input:focus { border-color: var(--sage-500); }
.popup-input::placeholder { color: var(--sage-400); }
.popup-disclaimer { font-size: 11px; color: var(--sage-500); margin-top: 12px; }

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 540px;
  background: white;
  border: 1px solid var(--sage-200);
  border-radius: 20px;
  padding: 20px 24px;
  z-index: 150;
  display: none;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 48px rgba(43,53,43,0.12);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 13px; color: var(--sage-700); flex: 1; }
.cookie-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  padding: 8px 18px;
  border-radius: 99px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.cookie-btn-accept { background: var(--sage-800); color: var(--champ-100); }
.cookie-btn-accept:hover { background: var(--sage-950); }
.cookie-btn-essential { background: transparent; color: var(--sage-600); border: 1px solid var(--sage-200); }
.cookie-btn-essential:hover { background: var(--sage-50); }

/* --- PROSE (legal pages) --- */
.prose-page { padding: 140px 0 96px; }
.prose h1 { margin-bottom: 6px; }
.prose .last-updated { font-family: var(--font-mono); font-size: 12px; color: var(--sage-500); margin-bottom: 48px; }
.prose h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 12px; }
.prose p { font-size: 15px; margin-bottom: 16px; line-height: 1.8; }
.prose a { color: var(--ochre-500); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--sage-900); font-weight: 600; }

/* --- DIVIDERS --- */
.gold-bar { width: 64px; height: 4px; background: var(--ochre-300); border-radius: 99px; margin: 24px auto; }
.gold-bar.left { margin-left: 0; }
.divider { width: 100%; height: 1px; background: var(--sage-200); }

/* --- FADE IN --- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* wellness glow utility */
.wellness-glow { box-shadow: 0 0 50px -10px rgba(98,123,101,0.15); }

/* --- IMAGE STRIP --- */
.img-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 12px;
  height: 360px;
}
.img-strip-item {
  border-radius: 20px;
  overflow: hidden;
}
.img-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.img-strip-item:hover img { transform: scale(1.04); }
.img-strip-item.tall { grid-row: span 1; }

/* --- FULL-BLEED FEATURE PHOTO --- */
.feature-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* --- SPA STATS (light version) --- */
.spa-stat-bar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1px solid var(--champ-200);
  border-radius: 20px;
  overflow: hidden;
  background: white;
}
.spa-stat-bar .stat-item {
  border-top: none;
  border-right: 1px solid var(--champ-200);
  padding: 44px 32px;
}
.spa-stat-bar .stat-item:last-child { border-right: none; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-img-panel { max-width: 480px; margin: 0 auto; }
  .grid-feature { grid-template-columns: 1fr; gap: 48px; }
  .blog-feature { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .section { padding: 60px 0; }
  .nav-links, .nav-time, .btn-nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-group { flex-direction: column; }
  .cta-group .btn { justify-content: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; bottom: 0; left: 0; right: 0; border-radius: 20px 20px 0 0; }
  .hero-checklist { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }
  .wrap-wide { padding: 0 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}
