/* =========================================================
   ZOELLA — Brand Stylesheet
   Palette: deep teal, sage, eucalyptus, warm cream, charcoal
   ========================================================= */

:root {
  /* Palette sampled directly from the Zoella logo */
  --teal-900: #073f3f;  /* darkest teal — headings */
  --teal-700: #0a6060;  /* primary brand teal (logo leaves) */
  --teal-600: #0d6b6b;
  --teal-500: #3a8a8a;  /* medium teal */
  --sage-400: #64a0a0;
  --sage-300: #a0c8c8;  /* sage / light teal leaves */
  --sage-100: #dcf0f0;  /* pale mint */
  --dusty:    #648ca0;  /* dusty-blue accent from logo */
  --cream:    #f7f5f0;
  --cream-200:#eef0ea;
  --charcoal: #2b2b2b;
  --charcoal-soft: #46504e;
  --white:    #ffffff;
  --gold:     #648ca0;  /* badge uses the logo's dusty blue */

  --shadow-sm: 0 2px 10px rgba(20, 63, 61, 0.06);
  --shadow-md: 0 10px 30px rgba(20, 63, 61, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 63, 61, 0.14);

  --radius: 16px;
  --radius-lg: 24px;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script: 'Dancing Script', cursive;
  --font-sans: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1140px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 760px; }

/* ---------- Accents ---------- */
.accent { color: var(--teal-600); }
.accent-script {
  font-family: var(--font-script);
  color: var(--teal-500);
  font-weight: 700;
  font-size: 1.15em;
  line-height: 1;
}
.section--teal .accent-script { color: var(--sage-300); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 1rem 2.1rem; font-size: 1.05rem; }

.btn--primary { background: var(--teal-700); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--teal-600); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--teal-700); border-color: var(--sage-400); }
.btn--ghost:hover { background: var(--sage-100); }

.btn--outline { background: transparent; color: var(--teal-700); border-color: var(--teal-700); }
.btn--outline:hover { background: var(--teal-700); color: var(--white); }

.btn--light { background: var(--white); color: var(--teal-700); }
.btn--light:hover { background: var(--cream); }

.btn--nav { padding: 0.6rem 1.3rem; background: var(--teal-700); color: var(--white); }
.btn--nav:hover { background: var(--teal-600); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-200);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-top: 0.6rem; padding-bottom: 0.6rem; }
.nav__logo { height: 60px; width: auto; }
.nav__links { list-style: none; display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { font-weight: 600; font-size: 0.98rem; color: var(--charcoal-soft); transition: color 0.2s; }
.nav__links a:hover { color: var(--teal-700); }
.nav__links .btn--nav { color: var(--white); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--teal-700); border-radius: 2px; transition: 0.25s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(123, 165, 160, 0.30), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(168, 197, 191, 0.30), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--sage-100) 100%);
  padding: 6.5rem 0 6rem;
  text-align: center;
}
.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.82rem; font-weight: 700;
  color: var(--teal-600); margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.08; color: var(--teal-900);
  margin-bottom: 1.3rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--charcoal-soft);
  max-width: 640px; margin: 0 auto 2.2rem;
}
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.6rem; }
.hero__note { font-size: 0.95rem; color: var(--teal-700); font-weight: 600; }

.hero__leaf { position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.5; z-index: 1; }
.hero__leaf--1 { width: 320px; height: 320px; top: -80px; right: -60px;
  background: radial-gradient(circle at 30% 30%, var(--sage-300), transparent 70%); }
.hero__leaf--2 { width: 260px; height: 260px; bottom: -70px; left: -50px;
  background: radial-gradient(circle at 60% 40%, var(--sage-400), transparent 70%); }

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section { padding: 5.5rem 0; }
.section--cream { background: var(--cream); }
.section--teal {
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(58, 132, 127, 0.4), transparent 60%),
    linear-gradient(160deg, var(--teal-700), var(--teal-900));
  color: var(--white);
}

.section__eyebrow {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.8rem; font-weight: 700;
  color: var(--teal-600); text-align: center; margin-bottom: 0.8rem;
}
.section__eyebrow--light { color: var(--sage-300); }

.section__title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.15; color: var(--teal-900);
  margin-bottom: 1.2rem;
}
.section__title--center { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }
.section__title--light { color: var(--white); }

.section__intro {
  text-align: center; max-width: 680px; margin: 0 auto 3rem;
  font-size: 1.1rem; color: var(--charcoal-soft);
}
.section__intro--light { color: var(--sage-100); }

.lead { font-size: 1.15rem; color: var(--charcoal-soft); margin-bottom: 1.3rem; }
.lead--center { text-align: center; }
.lead strong { color: var(--teal-700); }

/* =========================================================
   PROBLEM
   ========================================================= */
.problem .section__title { text-align: center; }
.problem__list {
  list-style: none; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 2rem; margin: 2rem auto 2.4rem; max-width: 620px;
}
.problem__list li {
  position: relative; padding-left: 1.8rem; font-weight: 600; color: var(--teal-900);
}
.problem__list li::before {
  content: "🌿"; position: absolute; left: 0; top: 0; font-size: 0.95rem;
}

/* =========================================================
   SERVICES CARDS
   ========================================================= */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.card {
  background: var(--white); border: 1px solid var(--cream-200); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-300); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.5rem; background: var(--sage-100); margin-bottom: 1.1rem;
}
.card h3 {
  font-family: var(--font-serif); font-weight: 600; font-size: 1.22rem;
  color: var(--teal-900); margin-bottom: 0.5rem; line-height: 1.25;
}
.card p { font-size: 0.98rem; color: var(--charcoal-soft); }

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industry-tags {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.9rem; max-width: 880px; margin: 0 auto 2rem;
}
.industry-tags li {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--white); border: 1px solid var(--sage-300); border-radius: 999px;
  padding: 0.7rem 1.4rem; font-weight: 700; color: var(--teal-900);
  box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.industry-tags li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-tags li span { font-size: 1.15rem; }
.industries__note { text-align: center; max-width: 620px; margin: 0 auto; font-size: 1.05rem; color: var(--charcoal-soft); }
.industries__note strong { color: var(--teal-700); }

/* =========================================================
   SAVINGS
   ========================================================= */
.savings__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: stretch; }
.savings__table {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); overflow: hidden; backdrop-filter: blur(4px);
}
.savings__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 1rem;
}
.savings__row:last-child { border-bottom: none; }
.savings__row span:last-child { font-weight: 700; color: var(--sage-300); white-space: nowrap; }
.savings__row--head { background: rgba(255,255,255,0.10); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; }
.savings__row--head span:last-child { color: var(--white); }

.savings__highlight {
  background: var(--white); color: var(--charcoal); border-radius: var(--radius);
  padding: 2.4rem 2rem; text-align: center; display: flex; flex-direction: column;
  align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.savings__big { font-family: var(--font-serif); font-weight: 700; font-size: 4.5rem; line-height: 1; color: var(--teal-700); }
.savings__big-label { text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: var(--teal-500); margin-bottom: 1rem; font-size: 0.9rem; }
.savings__desc { color: var(--charcoal-soft); margin-bottom: 1.6rem; font-size: 1rem; }

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem;
  counter-reset: step;
}
.step {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.3rem;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--sage-400);
  position: relative;
}
.step__num {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.5rem;
  color: var(--sage-400); display: block; margin-bottom: 0.6rem;
}
.step h3 { font-family: var(--font-serif); font-size: 1.12rem; color: var(--teal-900); margin-bottom: 0.5rem; line-height: 1.25; }
.step p { font-size: 0.93rem; color: var(--charcoal-soft); }

/* =========================================================
   PRICING
   ========================================================= */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; max-width: 920px; margin: 0 auto; align-items: start; }
.plans--three { grid-template-columns: repeat(3, 1fr); max-width: 1100px; gap: 1.4rem; }
.plans--three .plan { padding: 2.2rem 1.6rem; }
.plans--three .plan__price { font-size: 2.5rem; }
.plan {
  background: var(--white); border: 1px solid var(--cream-200); border-radius: var(--radius-lg);
  padding: 2.4rem 2rem; box-shadow: var(--shadow-sm); position: relative;
}
.plan--featured {
  border: 2px solid var(--teal-600); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--white), var(--sage-100));
}
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.35rem 1rem; border-radius: 999px;
  white-space: nowrap;
}
.plan__name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--teal-900); margin-bottom: 0.6rem; }
.plan__price { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--teal-700); line-height: 1; margin-bottom: 0.3rem; }
.plan__from { font-size: 1rem; font-weight: 600; color: var(--charcoal-soft); font-family: var(--font-sans); margin-right: 0.2rem; }
.plan__per { font-size: 1.2rem; color: var(--charcoal-soft); font-family: var(--font-sans); }
.plan__tag { font-size: 0.92rem; color: var(--teal-500); font-weight: 600; margin-bottom: 1.2rem; }
.plan__desc { color: var(--charcoal-soft); margin-bottom: 1.4rem; font-size: 1rem; }
.plan__features { list-style: none; margin-bottom: 1.8rem; }
.plan__features li { position: relative; padding-left: 1.7rem; margin-bottom: 0.6rem; color: var(--charcoal); }
.plan__features li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-600); font-weight: 800; }
.plan .btn { width: 100%; }
.pricing__note { text-align: center; max-width: 640px; margin: 2.4rem auto 0; font-size: 0.95rem; color: var(--charcoal-soft); font-style: italic; }

/* =========================================================
   ABOUT
   ========================================================= */
.about__inner { text-align: center; }
.about .section__title { text-align: center; }
.lead--signature { font-size: 1.9rem; margin: 1.6rem 0 0.4rem; }
.about__name { font-weight: 700; color: var(--teal-700); letter-spacing: 0.02em; }

/* =========================================================
   CONTACT / BOOKING
   ========================================================= */
.booking { margin: 0 auto 2.5rem; max-width: 720px; }
.booking iframe { width: 100%; min-height: 640px; border: none; border-radius: var(--radius); background: var(--white); }
.booking__placeholder {
  background: rgba(255,255,255,0.08); border: 2px dashed rgba(255,255,255,0.35);
  border-radius: var(--radius); padding: 3rem 2rem; text-align: center;
}
.booking__placeholder-label { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; }
.booking__placeholder-hint { font-size: 0.9rem; color: var(--sage-100); }
.booking__placeholder-hint code { background: rgba(0,0,0,0.25); padding: 0.1rem 0.4rem; border-radius: 6px; font-size: 0.85em; }

.contact__direct { text-align: center; }
.contact__direct > p { color: var(--sage-100); margin-bottom: 1rem; }
.contact__methods { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact__method {
  display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 700;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.25);
  padding: 0.8rem 1.4rem; border-radius: 999px; transition: background 0.2s;
}
.contact__method:hover { background: rgba(255,255,255,0.20); }

/* =========================================================
   LEGAL PAGES (terms / privacy)
   ========================================================= */
.legal__head {
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(160, 200, 200, 0.35), transparent 60%),
    linear-gradient(180deg, var(--cream), var(--sage-100));
  border-bottom: 1px solid var(--cream-200);
  padding: 3.2rem 0 2.4rem; text-align: center;
}
.legal__head h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--teal-900); margin-bottom: 0.5rem; }
.legal__date { color: var(--teal-600); font-weight: 700; letter-spacing: 0.03em; }
.back-link { display: inline-block; margin: 1.6rem 0 0; color: var(--teal-700); font-weight: 700; }
.back-link:hover { color: var(--teal-600); }

.legal { padding: 3rem 0 4.5rem; }
.legal__body { max-width: 820px; margin: 0 auto; }
.legal__body h2 {
  font-family: var(--font-serif); color: var(--teal-900); font-size: 1.5rem;
  margin: 2.4rem 0 0.7rem; padding-top: 0.6rem;
}
.legal__body h3 { font-size: 1.12rem; color: var(--teal-700); margin: 1.5rem 0 0.4rem; }
.legal__body p { margin-bottom: 1rem; color: var(--charcoal-soft); }
.legal__body ul { margin: 0.5rem 0 1.2rem 1.4rem; }
.legal__body li { margin-bottom: 0.45rem; color: var(--charcoal-soft); }
.legal__body strong { color: var(--teal-700); }
.legal__body a { color: var(--teal-700); text-decoration: underline; }
.legal__callout {
  background: var(--sage-100); border-left: 4px solid var(--teal-600);
  padding: 1.2rem 1.4rem; border-radius: 10px; margin: 1.6rem 0;
}
.legal__callout p { margin: 0; color: var(--teal-900); font-weight: 600; }
.legal__contact {
  background: var(--white); border: 1px solid var(--cream-200); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; margin-top: 2rem; box-shadow: var(--shadow-sm);
}
.legal__contact p { margin-bottom: 0.3rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--teal-900); color: var(--sage-100); padding: 3rem 0 2rem; }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }
.footer__logo { height: 96px; width: 96px; object-fit: contain; background: var(--white); border-radius: 50%; padding: 6px; box-shadow: var(--shadow-sm); }
.footer__tagline { font-size: 0.92rem; margin-top: 0.6rem; color: var(--sage-300); max-width: 280px; }
.footer__contact { display: flex; flex-direction: column; gap: 0.4rem; text-align: right; }
.footer__contact a { font-weight: 600; transition: color 0.2s; }
.footer__contact a:hover { color: var(--white); }
.footer__copy { width: 100%; text-align: center; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; margin-top: 0.5rem; font-size: 0.88rem; color: var(--sage-300); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .savings__grid { grid-template-columns: 1fr; }
  .plans--three { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--cream-200);
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav__links.open { max-height: 480px; }
  .nav__links li { padding: 0; }
  .nav__links li a { display: block; padding: 1rem 1.5rem; border-bottom: 1px solid var(--cream-200); }
  .nav__links .btn--nav { margin: 0.8rem 1.5rem; text-align: center; border-radius: 999px; }

  .section { padding: 4rem 0; }
  .problem__list { grid-template-columns: 1fr; max-width: 320px; }
  .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__contact { text-align: center; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 4.5rem 0 4rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
