/* =====================================================
   Caamuu 2.0 — Brand stylesheet
   Fonts: Josefin Sans (headings/body) + Roboto (buttons)
   ===================================================== */

/* --- Brand palette (derived from Caamuu Squarespace vars) --- */
:root {
  --cream:      hsl(30, 21%, 93%);      /* original --accent-hsl — main bg */
  --cream-dark: hsl(30, 18%, 88%);      /* section alt */
  --sage:       hsl(130, 11%, 67%);     /* original --white-hsl — sage green */
  --sage-light: hsl(130, 14%, 88%);     /* sage tint */
  --sage-dark:  hsl(130, 22%, 38%);     /* deeper sage for text/accents */
  --blue-grey:  hsl(209, 22%, 70%);     /* original --lightAccent-hsl */
  --blue-grey-light: hsl(209, 22%, 94%); /* blue-grey tint */
  --blue-text:  hsl(209, 38%, 38%);      /* readable blue for labels */
  --peach:      hsl(21, 74%, 73%);      /* original --darkAccent-hsl — exact match */
  --peach-dark: hsl(21, 70%, 62%);      /* peach hover */
  --peach-light: hsl(21, 60%, 92%);     /* peach tint for sections */
  --tan:        hsl(37, 52%, 67%);      /* original --black-hsl — golden tan */
  --terracotta: hsl(15, 55%, 50%);      /* warm red-brown bullet accent */
  --espresso:   hsl(27, 20%, 13%);      /* deep espresso for titles & buttons */
  --dark:       hsl(30, 8%, 18%);       /* primary text */
  --mid:        hsl(30, 6%, 42%);       /* secondary text */
  --white:      #ffffff;
  --border:     hsl(30, 15%, 85%);

  --heading-font: 'Josefin Sans', sans-serif;
  --body-font:    'Josefin Sans', sans-serif;
  --button-font:  'Roboto', sans-serif;

  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(48,44,40,.09);
  --shadow-hover: 0 8px 40px rgba(48,44,40,.16);

  --max-w: 1160px;
  --section-gap: 100px;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--body-font);
  color: var(--mid);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1,h2,h3,h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--dark);
}
h3, h4 { color: var(--dark); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--espresso); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--mid); line-height: 1.7; }

.eyebrow {
  font-family: var(--button-font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-text);
  display: block;
  margin-bottom: 0.75rem;
}
.section-tagline {
  font-family: var(--heading-font);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-text);
  font-style: normal;
}
.lead { font-size: 1.15rem; max-width: 54ch; }

/* --- Layout helpers --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-gap) 0; }
.section--alt { background: var(--cream-dark); }
.section--blue { background: var(--blue-grey-light); }
.section--sage { background: var(--sage-light); }
.section--dark { background: var(--dark); color: var(--cream); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--cream); }
.section--dark p { color: hsl(30, 10%, 75%); }
.section--dark .eyebrow { color: var(--peach); }

.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--button-font);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--dark);
  color: var(--cream);
}
.btn--primary:hover {
  background: hsl(30, 8%, 26%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn--peach {
  background: var(--peach);
  color: var(--white);
}
.btn--peach:hover {
  background: var(--peach-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--cream);
}
.btn--lg { padding: 17px 40px; font-size: 0.95rem; }

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announcement-bar {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 11px 24px;
  font-family: var(--button-font);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}
.announcement-bar a {
  color: var(--peach);
  font-weight: 500;
  margin-left: 6px;
}
.announcement-bar a:hover { text-decoration: underline; }

/* =====================================================
   HEADER / NAV
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: hsla(21, 74%, 73%, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(21, 55%, 65%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}
.site-logo-text {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  color: hsla(0, 0%, 100%, 0.85);
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
  display: block;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: hsl(21, 74%, 73%);
  border-top: 1px solid hsl(21, 55%, 65%);
  padding: 20px 24px 28px;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1rem;
  color: hsla(0, 0%, 100%, 0.9);
  padding: 8px 0;
  border-bottom: 1px solid hsl(21, 55%, 65%);
}
.mobile-nav .btn { margin-top: 8px; text-align: center; justify-content: center; }
.mobile-nav.open { display: flex; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  background: var(--cream);
  overflow: hidden;
  padding: 80px 0 60px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/paws-multicol.jpg');
  background-size: cover;
  background-position: center center;
  opacity: 0.15;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-content { max-width: 540px; }
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-family: var(--button-font);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(130, 20%, 38%);
  margin-bottom: 24px;
}
.hero-tagline svg { width: 14px; height: 14px; }
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--tan); }
.hero .lead { margin-bottom: 36px; }
.hero-form {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.hero-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.hero-form input[type="email"]:focus { border-color: var(--sage); }
.hero-form input[type="email"]::placeholder { color: hsl(30, 5%, 60%); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--mid);
  font-family: var(--button-font);
}
.hero-trust .avatars {
  display: flex;
}
.hero-trust .avatars span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage);
  border: 2px solid var(--cream);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  font-weight: 600;
}
.hero-trust .avatars span:first-child { margin-left: 0; }
.hero-trust .stars { color: #f0b429; letter-spacing: -1px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  max-width: 420px;
  width: 100%;
}

.product-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sage-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-name {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}
.product-includes {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 2px;
}
.product-price-tag {
  text-align: right;
  flex-shrink: 0;
}
.product-price-label {
  font-size: 0.7rem;
  color: var(--mid);
  font-family: var(--button-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-price-value {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--peach-dark);
}


/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--sage-light);
  border-top: 1px solid hsl(130, 14%, 80%);
  border-bottom: 1px solid hsl(130, 14%, 80%);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mid);
  font-size: 0.82rem;
  font-family: var(--button-font);
  letter-spacing: 0.03em;
}
.trust-item .icon { display: flex; align-items: center; color: hsl(130, 25%, 40%); }
.trust-item .icon svg { width: 18px; height: 18px; }
.trust-divider {
  width: 1px;
  height: 24px;
  background: hsl(130, 14%, 78%);
}

/* =====================================================
   PROBLEM SECTION
   ===================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--blue-grey));
}
.problem-card:nth-child(1)::before { background: var(--peach); }
.problem-card:nth-child(2)::before { background: var(--tan); }
.problem-card:nth-child(3)::before { background: var(--blue-grey); }
.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.problem-icon svg { width: 32px; height: 32px; color: var(--mid); }
.problem-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.problem-card p { font-size: 0.9rem; }

/* =====================================================
   PRODUCT SECTION
   ===================================================== */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-showcase-imgs {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.product-img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sage-light);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-main img { width: 100%; height: 100%; object-fit: cover; }
.product-img-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-thumb img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-thumb {
  font-size: 2.5rem;
  color: var(--mid);
  text-align: center;
}

.product-features { margin-top: 32px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
  margin-top: 6px;
}
.feature-text h4 { margin-bottom: 4px; font-size: 0.95rem; }
.feature-text p { font-size: 0.85rem; }

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  z-index: 1;
}
.step:nth-child(1) .step-number { background: hsl(21, 55%, 90%); border-color: var(--peach); color: hsl(21, 50%, 38%); }
.step:nth-child(2) .step-number { background: var(--sage-light); border-color: var(--sage); color: hsl(130, 20%, 36%); }
.step:nth-child(3) .step-number { background: hsl(209, 22%, 90%); border-color: var(--blue-grey); color: hsl(209, 25%, 36%); }
.step h3 { margin-bottom: 10px; }
.step p { font-size: 0.88rem; }

#how-it-works { background: var(--peach-light); }

/* =====================================================
   BENEFITS
   ===================================================== */
#benefits {
  background: hsl(123, 15%, 88%);
}
#benefits .benefit { background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.benefit {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.benefit-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.benefit-icon svg { width: 28px; height: 28px; }
.benefit:nth-child(1) .benefit-icon svg,
.benefit:nth-child(5) .benefit-icon svg { color: var(--peach-dark); }
.benefit:nth-child(2) .benefit-icon svg,
.benefit:nth-child(6) .benefit-icon svg { color: hsl(130, 25%, 42%); }
.benefit:nth-child(3) .benefit-icon svg,
.benefit:nth-child(7) .benefit-icon svg { color: var(--blue-grey); }
.benefit:nth-child(4) .benefit-icon svg,
.benefit:nth-child(8) .benefit-icon svg { color: var(--tan); }
.benefit h4 { margin-bottom: 6px; font-size: 0.95rem; }
.benefit p { font-size: 0.82rem; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
#testimonials { background: var(--peach-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial-quote { display: none; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
}
.testimonial-role { font-size: 0.78rem; color: var(--mid); }
.testimonial-stars { color: #C4673A; font-size: 0.85rem; margin-bottom: 8px; }

/* =====================================================
   FOR EDUCATORS
   ===================================================== */
.educators-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.educators-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.educators-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.educators-list-item .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.educators-list-item .check { background: #8B9DB8; }
.educators-list-item:nth-child(odd) .check { background: #8B9DB8; }
.educators-list-item h4 { color: #8B9DB8; }
#educators .btn--primary { background: var(--espresso); color: var(--white); }
#educators .btn--primary:hover { background: hsl(27, 20%, 20%); }
#educators .btn--outline { color: var(--espresso); border-color: var(--espresso); }
#educators .btn--outline:hover { background: var(--espresso); color: var(--white); }
.educators-visual {
  text-align: center;
  padding: 32px 16px;
}
.educators-visual-logo {
  max-width: 400px;
  width: 100%;
  margin: 0 auto 24px;
  display: block;
}
.educators-visual p {
  font-size: 1rem;
  font-style: italic;
  color: var(--terracotta);
  font-weight: 600;
  line-height: 1.6;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list {
  max-width: 720px;
  margin: 56px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mid);
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--white);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* =====================================================
   FINAL CTA
   ===================================================== */
.cta-section {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 100px 0;
}
.cta-section h2 { color: var(--cream); margin-bottom: 16px; }
.cta-section .lead { color: hsl(30, 10%, 70%); margin: 0 auto 40px; }
.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 15px 22px;
  border: 1.5px solid hsl(30, 8%, 35%);
  border-radius: 40px;
  background: hsl(30, 8%, 22%);
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input[type="email"]:focus { border-color: var(--sage); }
.cta-form input[type="email"]::placeholder { color: hsl(30, 6%, 50%); }
.cta-micro {
  font-size: 0.78rem;
  color: hsl(30, 6%, 50%);
  font-family: var(--button-font);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: hsl(30, 8%, 13%);
  color: hsl(30, 6%, 60%);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid hsl(30, 6%, 22%);
  margin-bottom: 28px;
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand .site-logo-text { color: var(--cream); }
.footer-brand p { font-size: 0.85rem; max-width: 28ch; }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.82rem;
  font-family: var(--button-font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.85rem;
  transition: color 0.15s;
}
.footer-col li a:hover { color: var(--cream); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: hsl(30, 6%, 22%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.social-icon:hover { background: hsl(30, 6%, 32%); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { color: var(--cream); }

/* =====================================================
   SUCCESS MESSAGE
   ===================================================== */
.form-success {
  display: none;
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 0.88rem;
  color: hsl(130, 20%, 32%);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  font-family: var(--button-font);
}

/* =====================================================
   ICON SIZING UTILITIES
   ===================================================== */
.icon svg { width: 18px; height: 18px; }
.check svg { width: 18px; height: 18px; color: var(--sage); }
.testimonial-avatar svg { width: 20px; height: 20px; color: var(--mid); }
.social-icon svg { width: 18px; height: 18px; }

/* =====================================================
   SECTION DECORATIONS (shared positioning)
   ===================================================== */
#faq {
  position: relative;
  overflow: hidden;
}
#faq .container { position: relative; z-index: 1; }

.deco {
  position: absolute;
  pointer-events: none;
}

/* Arc ripples — Questions Answered */
.deco-faq--tr { top: 0; right: 0; width: 240px; height: 240px; }
.deco-faq--bl { bottom: 0; left: 0; width: 240px; height: 240px; }

/* =====================================================
   OUR STORY
   ===================================================== */
.story-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.story-swirl {
  position: absolute;
  width: 260px;
  height: 260px;
  pointer-events: none;
}
.story-swirl--tl { top: -30px; left: -30px; }
.story-swirl--br { bottom: -30px; right: -30px; }
.story-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.story-photo-wrap {
  position: sticky;
  top: 100px;
  text-align: center;
}
.story-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 5px solid var(--peach-light);
  box-shadow: 0 8px 40px rgba(48,44,40,0.12);
  margin: 0 auto 20px;
  display: block;
}
.story-photo-caption {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.story-signature {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.story-title {
  font-family: var(--button-font);
  font-size: 0.8rem;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.story-text { padding-top: 4px; }
.story-text h2 { margin-bottom: 24px; }
.story-text p {
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.story-text em { color: var(--mid); font-style: italic; }
.story-closing {
  color: var(--mid) !important;
  font-weight: 500;
  border-left: 3px solid var(--peach);
  padding-left: 16px;
  margin-top: 8px;
}
.story-sign {
  margin-top: 24px !important;
  font-family: var(--heading-font);
  font-size: 1rem;
  color: var(--mid) !important;
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .story-inner { grid-template-columns: 260px 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; }

  .site-nav { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .product-card { max-width: 100%; }

  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-showcase { grid-template-columns: 1fr; gap: 40px; }
  .educators-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 36px; }
  .story-photo-wrap { position: static; }
  .story-photo { max-width: 220px; }
  .story-swirl { width: 160px; height: 160px; }

  .cta-form { flex-direction: column; }
  .cta-form input[type="email"] { min-width: 100%; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-form { flex-direction: column; }
  .hero-form input[type="email"] { min-width: 100%; }
}
