/* The Feel Great Approach — design system
   Palette: warm paper + brand navy + leaf green + product yellow/orange accents */

@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fraunces-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1c3550;
  --ink-soft: #47607a;
  --paper: #fdfbf7;
  --cream: #f5efe4;
  --sage-tint: #ecf2ea;
  --leaf: #3e7c59;
  --leaf-deep: #2e5f44;
  --sun: #f5c452;
  --clay: #e8905a;
  --line: #e6dfd2;
  --radius: 18px;
  --shadow: 0 2px 6px rgba(28, 53, 80, .06), 0 18px 40px -18px rgba(28, 53, 80, .18);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--leaf-deep); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 640; line-height: 1.12; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; line-height: 1.3; }
.accent { color: var(--leaf); font-style: italic; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  background: var(--sage-tint);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 251, 247, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 16px;
}
.brand {
  font-family: var(--font-display); font-weight: 640; font-size: 1.22rem;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.brand em { color: var(--leaf); }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  text-decoration: none; color: var(--ink-soft); font-weight: 500; font-size: .95rem;
}
.site-nav a:hover, .site-nav a[aria-current] { color: var(--ink); }
.site-nav a.btn-primary, .site-nav a.btn-primary:hover { color: #fff; }
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  border-radius: 100px; padding: 14px 28px; cursor: pointer;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--leaf); color: #fff; box-shadow: 0 10px 24px -10px rgba(62, 124, 89, .55); }
.btn-primary:hover { background: var(--leaf-deep); transform: translateY(-1px); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink-soft); }
.btn-small { padding: 10px 20px; font-size: .9rem; }

/* ---------- hero ---------- */
.hero { padding: 72px 0 56px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.hero-copy .btn-row { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-art { position: relative; }
.hero-art::before {
  content: ''; position: absolute; inset: -8% -6%;
  background: radial-gradient(ellipse at 60% 40%, var(--sage-tint) 0%, transparent 68%);
  z-index: -1;
}
.hero p.lede { margin-top: 20px; }

/* ---------- trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--cream); }
.trust .wrap {
  display: flex; justify-content: space-between; gap: 24px;
  padding-top: 20px; padding-bottom: 20px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: .95rem; color: var(--ink-soft); }
.trust-item svg { flex: none; color: var(--leaf); }

/* ---------- sections ---------- */
.section { padding: 84px 0; }
.section-tint { background: var(--sage-tint); }
.section-cream { background: var(--cream); }
.section-head { max-width: 660px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lede { margin-top: 14px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-family: var(--font-display); font-weight: 640; font-size: 1.1rem;
  margin-bottom: 16px; color: var(--ink);
}
.step:nth-child(1) .step-num { background: var(--sun); }
.step:nth-child(2) .step-num { background: var(--clay); color: #fff; }
.step:nth-child(3) .step-num { background: var(--ink); color: #fff; }
.step p { color: var(--ink-soft); font-size: .97rem; margin-top: 8px; }

/* benefit checklist */
.checklist { list-style: none; display: grid; gap: 13px; margin-top: 24px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checklist svg { flex: none; margin-top: 4px; color: var(--leaf); }
.footnote { font-size: .8rem; color: var(--ink-soft); margin-top: 18px; }

/* product cards */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.product-card .pad { padding: 30px 30px 34px; }
.product-tag {
  display: inline-block; font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 12px;
}
.tag-sun { background: #fdf3d7; color: #8a6d1d; }
.tag-clay { background: #fbe7d9; color: #a05427; }
.product-card ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; color: var(--ink-soft); }
.product-card li { padding-left: 22px; position: relative; }
.product-card li::before { content: '•'; position: absolute; left: 6px; color: var(--leaf); font-weight: 700; }
.product-card img { border-bottom: 1px solid var(--line); }

/* video facade */
.video-shell {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); cursor: pointer; background: #000; border: none;
  padding: 0; width: 100%; aspect-ratio: 16 / 9; display: block;
}
.video-shell img { width: 100%; height: 100%; object-fit: cover; opacity: .92; }
.video-shell .play {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.video-shell .play span {
  display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%;
  background: rgba(253, 251, 247, .92); color: var(--ink);
  transition: transform .15s ease;
}
.video-shell:hover .play span { transform: scale(1.07); }
.video-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* testimonials */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 18px;
}
.quote-card blockquote { font-size: .98rem; color: var(--ink-soft); flex: 1; }
.quote-who { display: flex; align-items: center; gap: 14px; }
.quote-who img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.quote-who strong { display: block; font-size: .95rem; }
.quote-who span { font-size: .82rem; color: var(--ink-soft); }

/* suzanne / about */
.about-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.contact-list { list-style: none; display: grid; gap: 10px; margin-top: 20px; }
.contact-list a { font-weight: 500; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--ink) 0%, #274a6b 100%);
  color: #fff; border-radius: calc(var(--radius) + 8px);
  padding: 64px 56px; text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band .lede { color: #c8d6e3; margin: 16px auto 30px; }
.cta-band .btn-primary { background: var(--sun); color: var(--ink); box-shadow: none; }
.cta-band .btn-primary:hover { background: #f0b83a; }
.guarantee-note { margin-top: 18px; font-size: .88rem; color: #a8bccd; }

/* FAQ accordion */
.faq-list { display: grid; gap: 14px; max-width: 780px; margin: 0 auto; }
details.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 0; overflow: hidden;
}
details.faq summary {
  list-style: none; cursor: pointer; font-weight: 600; font-size: 1.02rem;
  padding: 20px 56px 20px 24px; position: relative;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-display); font-size: 1.5rem; color: var(--leaf); transition: transform .2s;
}
details.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details.faq .faq-body { padding: 0 24px 22px; color: var(--ink-soft); display: grid; gap: 10px; }

/* country modal */
dialog.country-modal {
  border: none; border-radius: var(--radius); padding: 0;
  width: min(680px, calc(100vw - 32px)); max-height: min(80vh, 720px);
  box-shadow: 0 40px 90px -20px rgba(15, 30, 45, .45);
}
dialog.country-modal::backdrop { background: rgba(20, 34, 48, .55); backdrop-filter: blur(3px); }
.modal-head {
  position: sticky; top: 0; background: #fff; padding: 26px 28px 16px;
  border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start;
}
.modal-head h3 { font-size: 1.35rem; }
.modal-head p { font-size: .9rem; color: var(--ink-soft); margin-top: 4px; }
.modal-close {
  border: none; background: var(--cream); border-radius: 50%; width: 36px; height: 36px;
  font-size: 1.1rem; cursor: pointer; color: var(--ink); flex: none;
}
.country-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px; padding: 20px 28px 28px;
}
.country-grid a {
  text-decoration: none; font-weight: 500; font-size: .92rem; color: var(--ink);
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .12s, background .12s;
}
.country-grid a:hover { background: var(--sage-tint); border-color: var(--leaf); }

/* forms */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow);
}
.form-card label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 6px; }
.form-card input[type=text], .form-card input[type=email], .form-card input[type=tel] {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; margin-bottom: 18px; background: var(--paper);
}
.form-card input:focus { outline: 2px solid var(--leaf); outline-offset: 1px; }
.opt-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px; }
.opt-row input { margin-top: 5px; }
.opt-row span { font-size: .82rem; color: var(--ink-soft); }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success h3 { margin-bottom: 8px; }

/* footer */
.site-footer { background: var(--ink); color: #b9c8d6; padding: 56px 0 40px; margin-top: 84px; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.site-footer a { color: #b9c8d6; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; display: grid; gap: 8px; font-size: .93rem; }
.social-row { display: flex; gap: 14px; margin-top: 16px; }
.social-row a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); }
.social-row a:hover { background: rgba(255,255,255,.18); }
.disclaimer {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 24px;
  font-size: .78rem; line-height: 1.7; color: #8ba0b4;
}

/* responsive */
@media (max-width: 900px) {
  .hero .wrap, .split, .about-card { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 40px; }
  .steps, .quotes { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 48px 28px; }
  .section { padding: 60px 0; }

  .nav-toggle {
    display: grid; place-items: center; border: 1px solid var(--line); background: #fff;
    border-radius: 10px; width: 42px; height: 42px; cursor: pointer;
  }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 18px 24px 24px; gap: 16px;
  }
  .site-nav.open { display: flex; }
}
