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

/* ── VARIABLES ── */
:root {
  --green: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --cream: #faf8f3;
  --warm-white: #fffdf8;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-muted: #777;
  --gold: #c9a84c;
  --red-cta: #c0392b;
  --red-cta-hover: #a93226;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 17px;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* ── HERO ── */
.hero {
  background: var(--warm-white);
  border-bottom: 3px solid var(--green-pale);
  padding: 60px 20px 50px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ── STORY ── */
.story {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}

.story p {
  margin-bottom: 22px;
  color: var(--text-mid);
  font-size: 17px;
}

.story strong { color: var(--text-dark); font-weight: 700; }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--green-light);
  padding: 16px 24px;
  margin: 36px 0;
  background: var(--green-pale);
  border-radius: 0 12px 12px 0;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
}

/* ── SECTION HEADING ── */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin: 48px 0 16px;
  line-height: 1.25;
}

/* ── IMAGE BLOCK ── */
.img-block {
  width: 100%;
  max-width: 620px;
  margin: 36px auto;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

/* ── CTA BUTTON ── */
.cta-wrap {
  text-align: center;
  margin: 40px 0;
}

.cta-btn {
  display: inline-block;
  background: var(--red-cta);
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(192,57,43,0.35);
  max-width: 520px;
  width: 100%;
  text-align: center;
  animation: pulse-ring 2.5s infinite;
}

.cta-btn:hover {
  background: var(--red-cta-hover);
  transform: translateY(-2px);
  animation: none;
}

.cta-subtext {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1.5px solid #e8e4da;
  margin: 48px 0;
}

/* ── BENEFITS ── */
.benefits {
  background: var(--warm-white);
  border: 1.5px solid var(--green-pale);
  border-radius: 16px;
  padding: 32px 36px;
  margin: 36px 0;
}

.benefits h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--green);
}

.benefits ul { list-style: none; padding: 0; }

.benefits ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--text-mid);
}

.benefits ul li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--warm-white);
  border: 1.5px solid var(--green-pale);
  border-radius: 16px;
  padding: 28px 32px;
  margin: 36px 0;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--green-pale);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 14px;
  padding-top: 20px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.5px;
}

.stars { color: var(--gold); font-size: 16px; margin-bottom: 6px; }

/* ── INNER PAGE (privacy, terms, disclaimer) ── */
.inner-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.inner-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.inner-page .last-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  display: block;
}

.inner-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--green);
}

.inner-page p, .inner-page li {
  color: var(--text-mid);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.inner-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.inner-page a { color: var(--green); }

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  color: #aaa;
  text-align: center;
  padding: 48px 24px 40px;
  font-size: 13px;
  line-height: 1.8;
}

footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover { color: #fff; }

.footer-links { margin-bottom: 24px; font-size: 14px; }

.footer-disclaimer {
  max-width: 680px;
  margin: 24px auto 0;
  font-size: 12px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid #333;
  padding-top: 24px;
}

/* ── ANIMATIONS ── */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(192,57,43,0.4); }
  70%  { box-shadow: 0 0 0 14px rgba(192,57,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .benefits  { padding: 24px 20px; }
  .testimonial { padding: 24px 20px; }
  .story     { padding: 40px 16px; }
  .inner-page { padding: 40px 16px 60px; }
}
