/* ============================================================
   PitchingPal — style.css
   Baseball field color palette, mobile-first, production ready.
   
   TO CUSTOMIZE:
   - Colors → edit :root variables at top
   - Fonts  → edit the @import line and --font-* vars
   - Spacing → edit --section-pad
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colors */
  --green-dark:  #1E4D2B;
  --green-mid:   #2D6A3F;
  --green-light: #4A8C5C;
  --dirt:        #8B5E3C;
  --rust:        #B7410E;
  --rust-light:  #D4622A;
  --cream:       #F5E6C8;
  --white:       #FAFAFA;
  --dark:        #141A13;
  --gold:        #C8952A;

  /* Ball accent colors */
  --fastball-color:  #C0392B;
  --curve-color:     #6C3483;
  --changeup-color:  #D4622A;

  /* Typography */
  --font-headline: 'Oswald', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Spacing */
  --section-pad: 5rem 1.25rem;
  --section-pad-lg: 7rem 2rem;

  /* Nav height */
  --nav-h: 70px;

  /* Radius */
  --radius: 12px;
  --radius-sm: 8px;

  /* Transitions */
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.22);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Utility Classes ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 600px;
}

/* Fade-in animation (JS adds .is-visible) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-rust {
  background: var(--rust);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(183,65,14,0.35);
}
.btn-rust:hover {
  background: var(--rust-light);
  box-shadow: 0 8px 24px rgba(183,65,14,0.45);
}

/* Amazon / secondary outline button */
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: #d9a336;
  box-shadow: 0 8px 24px rgba(200,149,42,0.4);
}

/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
  background: transparent;
}

/* JS adds .nav-solid when scrolled */
#nav.nav-solid {
  background: var(--green-dark);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-text {
  color: var(--white);
}

.nav-logo-text span {
  color: var(--gold);
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile .btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Fallback gradient if no video */
  background: linear-gradient(145deg, var(--dark) 0%, var(--green-dark) 50%, #0d2218 100%);
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay over video */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,20,13,0.55) 0%,
    rgba(14,20,13,0.7) 60%,
    rgba(14,20,13,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.25rem;
  max-width: 880px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-headline);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  background: rgba(200,149,42,0.12);
  border: 1px solid rgba(200,149,42,0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
}

.hero-title {
  font-family: var(--font-headline);
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title .accent {
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(245,230,200,0.9);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Scroll arrow */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
#how-it-works {
  padding: var(--section-pad);
  background: var(--cream);
}

@media (min-width: 768px) {
  #how-it-works { padding: var(--section-pad-lg); }
}

.hiw-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.hiw-header .section-title {
  color: var(--green-dark);
}

.hiw-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hiw-layout {
    grid-template-columns: 1fr 420px;
  }
}

.hiw-photo {
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.hiw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 600px) {
  .hiw-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 960px) {
  .hiw-grid { grid-template-columns: 1fr; }
}

.hiw-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--ease), box-shadow var(--ease);
  border-top: 4px solid transparent;
}

.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-top-color: var(--rust);
}

.hiw-step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(183,65,14,0.4);
}

.hiw-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0.5rem auto 1.5rem;
  box-shadow: 0 6px 20px rgba(30,77,43,0.25);
}

.hiw-card h3 {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.hiw-card p {
  font-size: 0.975rem;
  color: #4a5568;
  line-height: 1.7;
}

/* ── THE PITCHES ──────────────────────────────────────────── */
#the-pitches {
  padding: var(--section-pad);
  background: var(--white);
}

@media (min-width: 768px) {
  #the-pitches { padding: var(--section-pad-lg); }
}

.pitches-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pitches-header .section-title {
  color: var(--dark);
}

.pitches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .pitches-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Each pitch card */
.pitch-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

.pitch-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.pitch-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0ece4;
}

/* Image placeholder styling */
.pitch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pitch-card:hover .pitch-img-wrap img {
  transform: scale(1.04);
}

/* Placeholder shown when image missing */
.pitch-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.pitch-placeholder .ball-emoji {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Card accents by pitch type */
.pitch-card--fastball .pitch-placeholder { background: linear-gradient(135deg, #7B1010, var(--fastball-color)); }
.pitch-card--curve    .pitch-placeholder { background: linear-gradient(135deg, #3B1555, var(--curve-color)); }
.pitch-card--changeup .pitch-placeholder { background: linear-gradient(135deg, #7a2800, var(--changeup-color)); }

.pitch-card--fastball { border-top: 4px solid var(--fastball-color); }
.pitch-card--curve    { border-top: 4px solid var(--curve-color); }
.pitch-card--changeup { border-top: 4px solid var(--changeup-color); }

.pitch-body {
  padding: 1.75rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pitch-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
  width: fit-content;
}

.pitch-card--fastball .pitch-badge { background: rgba(192,57,43,0.1); color: var(--fastball-color); }
.pitch-card--curve    .pitch-badge { background: rgba(108,52,131,0.1); color: var(--curve-color); }
.pitch-card--changeup .pitch-badge { background: rgba(212,98,42,0.1);  color: var(--changeup-color); }

.pitch-body h3 {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.pitch-body p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  flex: 1;
}

.pitch-footer {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
}

.pitch-footer svg {
  width: 14px;
  height: 14px;
}

/* ── WHO IT'S FOR ─────────────────────────────────────────── */
#for-coaches {
  padding: var(--section-pad);
  background: var(--green-dark);
}

@media (min-width: 768px) {
  #for-coaches { padding: var(--section-pad-lg); }
}

.for-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.for-header .section-title {
  color: var(--white);
}

.for-header .section-label {
  color: var(--gold);
}

.for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .for-grid { grid-template-columns: 1fr 1fr; }
}

.for-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: background var(--ease);
}

.for-card:hover {
  background: rgba(255,255,255,0.1);
}

.for-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(183,65,14,0.4);
}

.for-card h3 {
  font-family: var(--font-headline);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.for-card p {
  color: rgba(245,230,200,0.85);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.for-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.for-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: var(--cream);
  font-size: 0.95rem;
}

.for-checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  margin-top: 1px;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
#testimonials {
  padding: var(--section-pad);
  background: #edf5f0;
}

@media (min-width: 768px) {
  #testimonials { padding: var(--section-pad-lg); }
}

.testi-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testi-header .section-title {
  color: var(--green-dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1rem;
}

.testi-quote {
  font-size: 1rem;
  line-height: 1.75;
  color: #374151;
  font-style: italic;
  flex: 1;
}

.testi-quote::before {
  content: '\201C';
  font-size: 2.5rem;
  color: var(--green-light);
  font-family: Georgia, serif;
  line-height: 1;
  display: block;
  margin-bottom: -0.5rem;
}

.testi-author {
  border-top: 1px solid #e8e8e8;
  padding-top: 1rem;
}

.testi-name {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.testi-role {
  font-size: 0.8rem;
  color: var(--green-mid);
  margin-top: 0.1rem;
}

/* ── SHOP / BUY ───────────────────────────────────────────── */
#shop {
  padding: var(--section-pad);
  background: var(--dark);
}

@media (min-width: 768px) {
  #shop { padding: var(--section-pad-lg); }
}

.shop-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.shop-header .section-title {
  color: var(--white);
}

.shop-header .section-label {
  color: var(--gold);
}

.shop-box {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--green-dark) 0%, #162a1e 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(200,149,42,0.2);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .shop-box { grid-template-columns: 1fr 1fr; }
}

/* Product image side */
.shop-img-wrap {
  position: relative;
  min-height: 320px;
  background: rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-headline);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.shop-img-placeholder .balls {
  font-size: 3rem;
  display: flex;
  gap: 0.5rem;
}

/* Product info side */
.shop-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,149,42,0.15);
  border: 1px solid rgba(200,149,42,0.35);
  color: var(--gold);
  font-family: var(--font-headline);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  width: fit-content;
}

.shop-info h3 {
  font-family: var(--font-headline);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
}

.shop-includes {
  font-size: 0.875rem;
  color: rgba(245,230,200,0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.shop-includes span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.shop-includes .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.shop-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-size: 0.9rem;
}

.shop-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--rust);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
}

.shop-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

/* !! TO ASH: Update this price !! */
.shop-price-amount {
  font-family: var(--font-headline);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.shop-price-note {
  font-size: 0.8rem;
  color: rgba(245,230,200,0.6);
}

.shop-cta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.shop-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.shop-shipping {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(245,230,200,0.55);
  justify-content: center;
}

/* ── FAQ ──────────────────────────────────────────────────── */
#faq {
  padding: var(--section-pad);
  background: var(--cream);
}

@media (min-width: 768px) {
  #faq { padding: var(--section-pad-lg); }
}

.faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-header .section-title {
  color: var(--green-dark);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30,77,43,0.1);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow var(--ease);
}

.faq-item.open {
  box-shadow: 0 4px 20px rgba(30,77,43,0.15);
  border-color: rgba(30,77,43,0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  transition: color var(--ease), background var(--ease);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--green-dark);
  background: rgba(30,77,43,0.03);
}

.faq-item.open .faq-question {
  color: var(--green-dark);
  background: rgba(30,77,43,0.04);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform var(--ease), background var(--ease);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--rust);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.975rem;
  color: #4a5568;
  line-height: 1.75;
  border-top: 1px solid rgba(30,77,43,0.08);
  padding-top: 1.25rem;
}

/* ── NEWSLETTER ───────────────────────────────────────────── */
#newsletter {
  padding: var(--section-pad);
  background: var(--green-mid);
}

@media (min-width: 768px) {
  #newsletter { padding: 5rem 2rem; }
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-inner .section-title {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.875rem;
}

.newsletter-sub {
  color: rgba(245,230,200,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 500px) {
  .newsletter-form { flex-direction: row; }
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.975rem;
  outline: none;
  transition: border-color var(--ease), background var(--ease);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-form input[type="email"]:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.18);
}

.newsletter-form .btn {
  white-space: nowrap;
}

.newsletter-disclaimer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(245,230,200,0.5);
}

/* ── FOOTER ───────────────────────────────────────────────── */
#footer {
  background: var(--dark);
  padding: 4rem 1.25rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-style: italic;
  color: rgba(245,230,200,0.5);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.875rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.footer-social a:hover {
  background: var(--rust);
  color: var(--white);
  transform: translateY(-2px);
  border-color: transparent;
}

.footer-col h4 {
  font-family: var(--font-headline);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--ease);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col address a {
  color: var(--gold);
  transition: color var(--ease);
}

.footer-col address a:hover {
  color: var(--rust-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.3);
  transition: color var(--ease);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.6);
}

/* ── Scroll to top button ─────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--rust);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(183,65,14,0.45);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--ease), transform var(--ease);
  cursor: pointer;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
