/* ==============================================
   GLOWPALATE — LANDING PAGE STYLESHEET
   Brand: Broken White #FAF8F5 · Deep Sage #3E5340 · Charcoal #2B2B2B
   Fonts: Alexandria (heading) · Poppins (body)
   ============================================== */

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand palette */
  --bw:            #FAF8F5;
  --sage:          #6B8F6B;
  --sage-dark:     #3E5340;
  --sage-mid:      #4a6b4a;
  --sage-light:    #a8c5a0;
  --sage-bg:       #eef3ec;
  --peach:         #E8A87C;
  --peach-light:   #f5d0b0;
  --peach-bg:      #fdf3ec;
  --terracotta:    #D97B5A;
  --charcoal:      #2B2B2B;
  --charcoal-dark: #1E1E1E;
  --charcoal-mid:  #2d3b30;
  --off-white:     #FAF8F5;
  --white:         #ffffff;
  --text-body:     #3d4a3e;
  --text-muted:    #7a8a7b;
  --border:        #d8e4d8;
  --shadow-sm:     0 2px 12px rgba(30,36,32,.08);
  --shadow-md:     0 8px 32px rgba(30,36,32,.14);
  --shadow-lg:     0 20px 60px rgba(30,36,32,.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --t:             .25s ease;
  /* Typography */
  --font-head:     'Alexandria', 'Inter', sans-serif;
  --font-body:     'Poppins', 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bw); color: var(--charcoal); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* HELPERS */
.section-label { display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); background: var(--sage-bg); border: 1px solid var(--sage-light); padding: .3rem .9rem; border-radius: 100px; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 1rem; }
.section-title em { font-style: italic; color: var(--sage); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }

/* BUTTONS */
.btn-primary { display: inline-block; background: var(--sage-dark); color: var(--white); font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600; padding: .85rem 2rem; border-radius: var(--radius-sm); border: 2px solid var(--sage-dark); cursor: pointer; transition: background var(--t), transform var(--t), box-shadow var(--t); }
.btn-primary:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(74,107,74,.35); }
.btn-outline { display: inline-block; background: transparent; color: var(--sage-dark); font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600; padding: .85rem 2rem; border-radius: var(--radius-sm); border: 2px solid var(--sage-dark); cursor: pointer; transition: all var(--t); }
.btn-outline:hover { background: var(--sage-dark); color: var(--white); transform: translateY(-2px); }
.btn-large { font-size: 1.1rem; padding: 1rem 2.8rem; border-radius: var(--radius-md); }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.2rem 2rem; transition: background var(--t), box-shadow var(--t); }
.navbar.scrolled { background: rgba(30,36,32,.92); backdrop-filter: blur(14px); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: .6rem; }
.logo-img { width: 36px; height: 36px; object-fit: contain; filter: brightness(0) invert(1); }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; transition: color var(--t); }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--sage-dark) !important; color: var(--white) !important; padding: .55rem 1.4rem; border-radius: var(--radius-sm); font-weight: 600 !important; }
.nav-cta:hover { background: var(--sage) !important; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  /* Deeper, more uniform scrim — no mid-gradient transparency gap */
  background:
    linear-gradient(to right, rgba(12,16,14,.88) 0%, rgba(12,16,14,.72) 55%, rgba(12,16,14,.60) 100%),
    url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=1600&auto=format&fit=crop&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* Bottom fade into page — keeps feature cards transition clean */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, var(--off-white) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Two-column grid: copy takes available space, form is narrow & fixed */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  padding: 11rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}

/* ── Copy column ── */
.hero-copy { display: flex; flex-direction: column; }

/* Eyebrow — small uppercase label, no emoji clutter */
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.4rem;
  opacity: .9;
}

/* Display headline — large, airy, two lines max */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 1.6rem;
}
.hero-title em {
  font-style: italic;
  color: var(--peach-light);
  font-weight: 400;
}

/* One-line supporting copy */
.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.4rem;
}

/* CTA + badges stacked vertically */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* Primary CTA — prominent, full-width feel on copy column */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: .9rem 2.2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: .01em;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
}
.btn-hero-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,.18);
}

/* Pill badges — minimal, no emojis */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .03em;
  padding: .35rem .85rem;
  border-radius: 100px;
}

/* ── Form card column ── */
.hero-form-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.28), 0 4px 16px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}

/* Form eyebrow */
.form-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .5rem;
}

/* Form heading */
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .9rem;
  line-height: 1.2;
}

/* Launch promo banner inside signup card */
.promo-banner {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: linear-gradient(135deg, #f0f5ee 0%, #eef3e8 100%);
  border: 1px solid rgba(107,143,107,.22);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  margin-bottom: 1.1rem;
}
.promo-banner__title {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: .01em;
  line-height: 1.3;
}
.promo-banner__sub {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Inputs — no labels, placeholder only, clean lines */
.signup-form { display: flex; flex-direction: column; gap: .75rem; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--charcoal);
  background: var(--off-white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
}
.form-group input::placeholder,
.form-group select::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107,143,107,.14);
  background: var(--white);
}

/* Submit button fills card width */
.form-btn {
  width: 100%;
  margin-top: .4rem;
  font-size: .95rem;
  padding: .85rem;
  border: none;
  border-radius: var(--radius-sm);
}

/* VALUE PROPS */
.value-props { background: var(--white); padding-top: 5rem; }
.vp-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.vp-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2.2rem; position: relative; overflow: hidden; opacity: 0; transform: translateY(24px); transition: opacity .5s, transform .5s, box-shadow var(--t); }
.vp-card.visible { opacity: 1; transform: translateY(0); }
.vp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.vp-card--accent { background: var(--sage-bg); border-color: var(--sage-light); }
.vp-number { position: absolute; top: 1.5rem; right: 1.8rem; font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; color: rgba(74,107,74,.25); line-height: 1; pointer-events: none; }
.vp-card--accent .vp-number { color: rgba(74,107,74,.28); }
.vp-icon { font-size: 2rem; margin-bottom: .8rem; }
.vp-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); font-style: italic; margin-bottom: 1.2rem; line-height: 1.4; max-width: 85%; }
.vp-card ul { display: flex; flex-direction: column; gap: .6rem; }
.vp-card li { font-size: .9rem; color: var(--text-body); line-height: 1.5; }

/* USP STRIP */
.usp-strip { background: var(--charcoal); padding: 3rem 2rem; }
.usp-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.usp-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 3rem; flex: 1; min-width: 240px; }
.usp-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: .1rem; }
.usp-item strong { display: block; font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.usp-item p { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.5; }
.usp-divider { width: 1px; height: 60px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* SERVICE AREA */
.service-area { background: var(--off-white); }

/* Two separate rows */
.area-grid { display: grid; gap: 1.4rem; }
.area-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin: 0 auto; }

/* Card shell */
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .3s ease;
}
.area-card.visible { opacity: 1; transform: translateY(0); }
.area-card:hover { box-shadow: 0 12px 40px rgba(30,36,32,.18); }

/* Image wrapper — 60% of card height, overflow hidden for zoom */
.area-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  flex-shrink: 0;
}

.area-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.area-card:hover .area-card__img { transform: scale(1.06); }

/* Gradient overlay — bottom 22% only, subtle dark sage */
.area-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 78%,
    rgba(30, 46, 30, 0.42) 100%
  );
  pointer-events: none;
}

/* Card text body */
.area-card__body {
  padding: 1.2rem 1.4rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  flex: 1;
}

/* Decorative number — slightly darker, higher opacity */
.area-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sage);
  opacity: .55;
  line-height: 1;
  margin-bottom: .1rem;
  letter-spacing: .04em;
}

.area-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.2;
}

.area-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.area-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.55; }

/* LOYALTY / PRICING TABLE */
.loyalty { background: var(--charcoal-dark); position: relative; overflow: hidden; }
.loyalty::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 15% 60%, rgba(62,83,64,.25) 0%, transparent 55%), radial-gradient(ellipse at 85% 20%, rgba(62,83,64,.15) 0%, transparent 50%); pointer-events: none; }
.loyalty .section-title { font-family: var(--font-head); color: var(--bw); }
.loyalty .section-label { background: rgba(62,83,64,.3); color: var(--sage-light); border-color: rgba(168,197,160,.3); }
.loyalty .section-desc { color: rgba(250,248,245,.55); font-family: var(--font-body); }

/* 3-col pricing grid */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }

/* Base card */
.pricing-card {
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s, box-shadow var(--t);
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card:hover { transform: translateY(-6px); }

/* Dark variant (Silver & Platinum) */
.pricing-card--dark {
  background: rgba(250,248,245,.06);
  border: 1px solid rgba(250,248,245,.1);
}

/* Gold — featured center card */
.pricing-card--gold {
  background: var(--sage-dark);
  border: 1px solid rgba(168,197,160,.3);
  box-shadow: 0 24px 60px rgba(62,83,64,.55);
}

/* Most Popular badge */
.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .3rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* Tier label */
.pricing-tier { font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--bw); margin-bottom: .5rem; }

/* Plan name */
.pricing-plan { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--bw); margin-bottom: 1.4rem; line-height: 1.2; }

/* Price block */
.pricing-price-block { padding-bottom: 1.2rem; border-bottom: 1px solid rgba(250,248,245,.1); margin-bottom: 1.4rem; display: flex; flex-direction: column; gap: .3rem; }
.pricing-discount-label { font-family: var(--font-body); font-size: .78rem; font-weight: 600; color: var(--terracotta); background: rgba(217,123,90,.15); display: inline-block; padding: .2rem .7rem; border-radius: 100px; width: fit-content; }
.pricing-price { font-family: var(--font-head); font-size: 1.55rem; font-weight: 700; color: var(--bw); line-height: 1.2; display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.pricing-price-strike { font-size: .9rem; font-weight: 400; color: rgba(250,248,245,.35); text-decoration: line-through; }
.pricing-meals { font-family: var(--font-body); font-size: .8rem; color: rgba(250,248,245,.5); }
.pricing-chef-note { font-family: var(--font-body); font-size: .8rem; color: rgba(250,248,245,.65); font-style: italic; margin-top: .2rem; }

/* Benefits list */
.pricing-benefits { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 2rem; flex: 1; }
.pricing-benefits li { font-family: var(--font-body); font-size: .875rem; color: rgba(250,248,245,.78); line-height: 1.5; padding-left: 1.3rem; position: relative; }
.pricing-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--sage-light); font-weight: 700; font-size: .8rem; }
.pricing-card--gold .pricing-benefits li { color: rgba(250,248,245,.92); }

/* Community sub-item */
.pricing-community { font-weight: 600 !important; color: rgba(250,248,245,.95) !important; }
.pricing-sub-list { margin-top: .5rem; padding-left: 1rem; display: flex; flex-direction: column; gap: .25rem; }
.pricing-sub-list li { font-size: .78rem !important; color: rgba(250,248,245,.65) !important; font-weight: 400; list-style: disc; padding-left: 0 !important; }
.pricing-sub-list li::before { display: none !important; }

/* CTA Buttons */
.pricing-btn { display: block; width: 100%; text-align: center; font-family: var(--font-body); font-size: .95rem; font-weight: 700; padding: .9rem 1.5rem; border-radius: var(--radius-sm); cursor: pointer; transition: all var(--t); margin-top: auto; border: 2px solid transparent; }

/* Outline — Silver & Platinum */
.pricing-btn--outline { background: transparent; color: rgba(250,248,245,.85); border-color: rgba(250,248,245,.3); }
.pricing-btn--outline:hover { background: rgba(250,248,245,.08); border-color: rgba(250,248,245,.6); color: var(--bw); transform: translateY(-2px); }

/* Solid — Gold */
.pricing-btn--solid { background: var(--bw); color: var(--charcoal); font-weight: 800; border-color: var(--bw); }
.pricing-btn--solid:hover { background: #ede9e4; border-color: #ede9e4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(250,248,245,.25); }

/* REFERRAL */
.referral { background: var(--bw); padding: 5rem 2rem; }
.referral-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* Left column */
.referral-content { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

/* Terracotta badge */
.referral-badge {
  display: inline-block;
  background: rgba(217,123,90,.15);
  color: var(--terracotta);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.referral-heading { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: var(--charcoal); line-height: 1.2; margin-bottom: 1rem; }
.referral-desc { font-family: var(--font-body); font-size: .97rem; color: var(--charcoal); line-height: 1.7; margin-bottom: 1.6rem; }

/* Reward cards */
.referral-rewards { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.8rem; flex-wrap: nowrap; width: 100%; }
.referral-reward { display: flex; align-items: center; gap: .6rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .8rem 1.1rem; font-family: var(--font-body); font-size: .88rem; color: var(--charcoal); flex: 1; }
.reward-icon { font-size: 1.4rem; flex-shrink: 0; }
.reward-or { font-size: .82rem; color: var(--text-muted); font-style: italic; flex-shrink: 0; }

/* CTA button */
.referral-cta-btn { display: inline-block; background: var(--sage-dark); color: var(--bw); font-family: var(--font-body); font-size: .95rem; font-weight: 700; padding: .9rem 2.2rem; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: background var(--t), transform var(--t), box-shadow var(--t); }
.referral-cta-btn:hover { background: var(--sage-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(62,83,64,.3); }

/* Right column — visual */
.referral-visual { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }

.referral-img-wrap { position: relative; width: 100%; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); }
.referral-img { width: 100%; height: 320px; object-fit: cover; display: block; border-radius: 18px; }

/* Chat bubble overlay */
.referral-chat-bubble {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: rgba(255,255,255,.95);
  border-radius: 12px 12px 12px 2px;
  padding: .7rem 1rem;
  max-width: 75%;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.referral-chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 16px;
  border: 8px solid transparent;
  border-top-color: rgba(255,255,255,.95);
  border-bottom: none;
}
.referral-chat-bubble p { font-family: var(--font-body); font-size: .78rem; color: var(--charcoal); line-height: 1.5; margin: 0; }

/* Bonus pill badge */
.referral-bonus-pill {
  display: inline-block;
  border: 1.5px dashed var(--sage-dark);
  color: var(--sage-dark);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  padding: .5rem 1.4rem;
  border-radius: 100px;
  background: transparent;
}

/* TRACKER */
.tracker { background: var(--white); }
.tracker-features { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.tracker-item { text-align: center; padding: 2.2rem 1.5rem; background: var(--sage-bg); border: 1px solid var(--border); border-radius: var(--radius-md); transition: transform var(--t), box-shadow var(--t); opacity: 0; transform: translateY(20px); }
.tracker-item.visible { opacity: 1; transform: translateY(0); }
.tracker-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--sage-light); }
.tracker-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.tracker-item h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--charcoal); margin-bottom: .5rem; }
.tracker-item p { font-size: .85rem; color: var(--text-muted); line-height: 1.55; }

/* CTA BOTTOM — Pre-Footer Banner */
.cta-bottom { background: var(--sage-dark); text-align: center; padding: 6rem 2rem; position: relative; overflow: hidden; }
.cta-bottom::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(250,248,245,.06) 0%, transparent 55%), radial-gradient(ellipse at 75% 30%, rgba(250,248,245,.04) 0%, transparent 50%); pointer-events: none; }
.cta-container { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-heading { font-family: var(--font-head); font-size: clamp(2rem,4vw,3rem); font-weight: 700; color: var(--bw); line-height: 1.2; margin-bottom: 1.1rem; }
.cta-sub { font-family: var(--font-body); font-size: 1rem; color: rgba(250,248,245,.65); line-height: 1.7; margin-bottom: 2.5rem; }
.cta-btn-main { display: inline-block; background: var(--bw); color: var(--sage-dark); font-family: var(--font-body); font-size: 1rem; font-weight: 800; padding: 1rem 2.8rem; border-radius: var(--radius-sm); border: none; cursor: pointer; transition: background var(--t), transform var(--t), box-shadow var(--t); letter-spacing: .01em; }
.cta-btn-main:hover { background: #ede9e4; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(250,248,245,.2); }
.cta-micro { font-family: var(--font-body); font-size: .72rem; color: rgba(250,248,245,.38); margin-top: 1rem; letter-spacing: .04em; }

/* FOOTER */
.footer { background: var(--charcoal-dark); padding: 5rem 2rem 0; }
.footer-container {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(250,248,245,.07);
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: .9rem; }
.footer-logo { width: 52px; height: 52px; object-fit: contain; filter: brightness(0) invert(1) opacity(.8); }
.footer-tagline { font-family: 'Playfair Display', serif; font-size: .95rem; color: rgba(250,248,245,.55); line-height: 1.6; font-style: italic; }
.footer-copy { font-family: var(--font-body); font-size: .83rem; color: rgba(250,248,245,.38); line-height: 1.65; max-width: 280px; }
.footer-rights { font-family: var(--font-body); font-size: .72rem; color: rgba(250,248,245,.22); margin-top: .4rem; }
.footer-col h4 { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,248,245,.35); margin-bottom: 1.4rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .85rem; }
.footer-col li, .footer-col a { font-family: var(--font-body); font-size: .88rem; color: rgba(250,248,245,.55); transition: color var(--t); line-height: 1.4; }
.footer-col a:hover { color: var(--sage-light); }

/* Instagram link */
.footer-social-link { display: flex; align-items: center; gap: .6rem; }
.footer-social-icon { width: 18px; height: 18px; flex-shrink: 0; color: rgba(250,248,245,.55); transition: color var(--t); }
.footer-social-link:hover .footer-social-icon { color: var(--sage-light); }

.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.8rem 0; text-align: center; font-family: var(--font-body); font-size: .8rem; color: rgba(250,248,245,.18); }

/* HAMBURGER BUTTON */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: .5rem; width: 40px; height: 40px; }
.hamburger-bar { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
/* Animate to X when open */
.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* OFFCANVAS OVERLAY */
.offcanvas-overlay { display: none; position: fixed; inset: 0; background: rgba(10,14,12,.55); backdrop-filter: blur(4px); z-index: 200; opacity: 0; transition: opacity .3s ease; }
.offcanvas-overlay.active { display: block; opacity: 1; }

/* OFFCANVAS MENU */
.offcanvas-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--white);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.2);
}
.offcanvas-menu.active { transform: translateX(0); }

.offcanvas-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border);
}
.offcanvas-logo { gap: .5rem; }
.logo-img--dark { filter: none; }
.logo-text--dark { color: var(--charcoal); font-size: 1.2rem; }

.offcanvas-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--text-muted);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background var(--t), color var(--t);
}
.offcanvas-close:hover { background: var(--sage-bg); color: var(--charcoal); }

.offcanvas-nav {
  flex: 1; display: flex; flex-direction: column;
  padding: 1.2rem 1.6rem 2rem;
  overflow-y: auto;
}

.offcanvas-links { display: flex; flex-direction: column; gap: .2rem; }
.offcanvas-link {
  display: flex; align-items: center;
  min-height: 52px; padding: 0 .8rem;
  font-size: 1rem; font-weight: 500; color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: background var(--t), color var(--t);
}
.offcanvas-link:hover { background: var(--sage-bg); color: var(--sage-dark); }

.offcanvas-divider { height: 1px; background: var(--border); margin: 1.2rem 0; }

.offcanvas-cta {
  display: block; width: 100%; text-align: center;
  padding: .95rem; font-size: 1rem;
  border-radius: var(--radius-sm);
  margin-top: auto;
}

/* RESPONSIVE — TABLET */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; padding: 8rem 1.5rem 4rem; }
  .hero-features { grid-template-columns: 1fr; transform: translateY(30px); }
  .vp-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .referral-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .tracker-features { grid-template-columns: repeat(2,1fr); }
  .area-grid--row1 { grid-template-columns: repeat(2, 1fr); }
  .area-grid--row2 { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin-top: 0; }
  .usp-container { flex-direction: column; }
  .usp-divider { width: 60px; height: 1px; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; }
}

/* RESPONSIVE — MOBILE */
@media (max-width: 560px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .value-props { padding-top: 4rem; }
  .area-grid--row1, .area-grid--row2 { grid-template-columns: 1fr; max-width: 100%; margin-top: 0; }
  .tracker-features { grid-template-columns: repeat(2,1fr); }
  .referral-rewards { flex-wrap: wrap; }
  .referral-reward { flex: 1 1 100%; }
  .reward-or { width: 100%; text-align: center; }
  .referral-img { height: 220px; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .section-container { padding: 3.5rem 1.2rem; }
}

/* MODALS */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(30,36,32,.65); backdrop-filter: blur(6px); z-index: 999; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-overlay.active { display: flex; }
.modal-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.8rem 2.4rem; max-width: 460px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); animation: modalIn .3s ease; }
.modal-card--privacy { text-align: left; max-width: 540px; }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-card h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: .8rem; }
.modal-card p { font-size: .97rem; color: var(--text-body); line-height: 1.7; margin-bottom: .6rem; }
.modal-note { font-size: .88rem !important; color: var(--text-muted) !important; margin-bottom: 1.8rem !important; }
.modal-card .btn-primary { margin-top: 1rem; min-width: 140px; }
.privacy-content { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.5rem; max-height: 55vh; overflow-y: auto; padding-right: .4rem; }
.privacy-content p { font-size: .9rem; color: var(--text-body); line-height: 1.7; }

/* Form privacy note */
.form-privacy-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: .9rem; line-height: 1.5; }
.privacy-link { background: none; border: none; color: var(--sage-dark); font-size: inherit; font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; font-family: 'Inter', sans-serif; }
.privacy-link:hover { color: var(--sage); }

/* Privacy checkbox */
.form-group--checkbox { margin-top: .25rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: .65rem; cursor: pointer; }
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-custom { flex-shrink: 0; width: 16px; height: 16px; margin-top: .15rem; border: 1.5px solid var(--border); border-radius: 4px; background: var(--off-white); transition: border-color var(--t), background var(--t); display: flex; align-items: center; justify-content: center; }
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom { background: var(--sage-dark); border-color: var(--sage-dark); }
.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after { content: ''; display: block; width: 4px; height: 7px; border: 2px solid #fff; border-top: none; border-left: none; transform: rotate(45deg) translate(-1px, -1px); }
.checkbox-label input[type="checkbox"]:focus-visible + .checkbox-custom { box-shadow: 0 0 0 3px rgba(107,143,107,.2); }
.checkbox-text { font-size: .78rem; color: var(--text-muted); line-height: 1.5; }
.checkbox-error { font-size: .75rem; color: #c0392b; margin-top: .4rem; margin-left: 1.65rem; display: none; }
.checkbox-error.visible { display: block; }

/* Privacy modal header with close button */
.modal-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.modal-card__header h2 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); line-height: 1.3; margin: 0; }
.modal-close { flex-shrink: 0; background: none; border: none; cursor: pointer; font-size: 1rem; color: var(--text-muted); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background var(--t), color var(--t); padding: 0; }
.modal-close:hover { background: var(--sage-bg); color: var(--charcoal); }
.modal-card--privacy .privacy-content h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin: 1.2rem 0 .5rem; }
.modal-card--privacy .privacy-content ul { padding-left: 1.2rem; display: flex; flex-direction: column; gap: .3rem; list-style: disc; margin-bottom: .5rem; }
.modal-card--privacy .privacy-content ul li { font-size: .9rem; color: var(--text-body); line-height: 1.6; }

/* LOYALTY — Gold community benefit */
.loyalty-community-item { color: rgba(255,255,255,.9) !important; font-weight: 600; }
.loyalty-sub-list { margin-top: .5rem; padding-left: 1.2rem; display: flex; flex-direction: column; gap: .3rem; }
.loyalty-sub-list li { font-size: .82rem !important; color: rgba(255,255,255,.72) !important; font-weight: 400; list-style: disc; }

/* Gold button — solid white on dark card so it pops */
.loyalty-btn-gold {
  background: var(--white) !important;
  color: var(--sage-dark) !important;
  border-color: var(--white) !important;
  font-weight: 700 !important;
}
.loyalty-btn-gold:hover {
  background: var(--off-white) !important;
  border-color: var(--off-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,.2) !important;
}

/* REFERRAL — rewards side by side */
.referral-rewards { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: nowrap; }
.referral-reward { display: flex; align-items: center; gap: .6rem; background: var(--white); border: 1px solid var(--peach-light); border-radius: var(--radius-sm); padding: .8rem 1.2rem; font-size: .9rem; color: var(--charcoal); flex: 1; }
.reward-or { font-size: .85rem; color: var(--text-muted); font-style: italic; flex-shrink: 0; }

/* REFERRAL — image replaces circles diagram */
.referral-graphic { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; width: 100%; }
.referral-img { width: 100%; max-width: 440px; height: 300px; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-md); display: block; }

/* Mobile: stack reward cards */
@media (max-width: 560px) {
  .referral-rewards { flex-wrap: wrap; }
  .referral-reward { flex: 1 1 100%; }
  .reward-or { width: 100%; text-align: center; }
  .referral-img { height: 220px; }
}
