/* ============ TOKENS ============ */
:root {
  --cream: #FFF8EC;
  --cream-card: #FFFDF8;
  --ink: #2B2419;
  --ink-soft: #5C5142;
  --gold: #F5B942;
  --gold-deep: #E2A122;
  --terracotta: #E2623B;
  --terracotta-deep: #C94E2B;
  --olive: #6E7B3A;
  --olive-deep: #525C2B;
  --olive-light: #96A356;
  --blush: #FF9B7A;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 20px 40px -20px rgba(43, 36, 25, 0.25);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 12px 20px; z-index: 200; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
em { font-style: italic; color: var(--terracotta); }

p { margin: 0; }

/* ============ EYEBROW / SECTION TITLES ============ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  background: rgba(226, 98, 59, 0.1);
  padding: 7px 16px;
  border-radius: 999px;
  margin: 0 0 20px;
}
.eyebrow-light { color: var(--gold); background: rgba(255,255,255,0.14); }
.eyebrow.center, .center { text-align: center; }
.eyebrow.center { display: table; margin-left: auto; margin-right: auto; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section { padding: 110px 0; }
.section-cream { background: #FDF1DC; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(245, 185, 66, 0.7);
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 236, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: rgba(43,36,25,0.08);
  box-shadow: 0 6px 20px -14px rgba(43,36,25,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand-logo { height: 34px; width: auto; }

.main-nav { display: flex; gap: 32px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--terracotta); }

.header-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.08;
  margin: 0 0 22px;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--olive-deep);
}

/* blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.9;
  z-index: 0;
  animation: float 9s ease-in-out infinite;
}
.blob-gold {
  width: 340px; height: 340px;
  top: -120px; right: -60px;
  background: radial-gradient(circle at 30% 30%, #FBD98A, var(--gold));
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}
.blob-terracotta {
  width: 220px; height: 220px;
  bottom: -80px; right: 20%;
  background: radial-gradient(circle at 40% 30%, #F0916E, var(--terracotta));
  border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
  animation-delay: -3s;
}
.blob-olive {
  width: 160px; height: 160px;
  top: 30%; left: -60px;
  background: radial-gradient(circle at 40% 30%, var(--olive-light), var(--olive));
  border-radius: 55% 45% 60% 40% / 45% 55% 45% 55%;
  animation-delay: -6s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(10px,-18px) rotate(6deg); }
}

.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.jar { position: relative; width: 100%; max-width: 340px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.jar-glow {
  position: absolute; inset: 6%;
  background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(255,248,236,0));
  border-radius: 50%;
}
.jar-icon-img { height: 80%; width: auto; filter: drop-shadow(0 25px 35px rgba(226,98,59,0.35)); animation: bob 5s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.float-chip {
  position: absolute;
  background: var(--cream-card);
  border: 1px solid rgba(43,36,25,0.08);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  animation: float 7s ease-in-out infinite;
}
.chip-1 { top: 6%; left: 0%; animation-delay: -1s; color: var(--olive-deep); }
.chip-2 { bottom: 18%; right: -4%; animation-delay: -3.5s; color: var(--terracotta-deep); }
.chip-3 { bottom: -2%; left: 14%; animation-delay: -5.5s; color: var(--gold-deep); }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  transform: rotate(-1deg);
  margin: -10px 0;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: inline-flex;
  animation: scroll 26s linear infinite;
  will-change: transform;
}
.marquee-track span {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  padding-right: 4px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.card {
  background: var(--cream-card);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid rgba(43,36,25,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--ic) 18%, white);
  color: var(--ic);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; fill: currentColor; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15px; }

/* ============ STEPS ============ */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}
.step { flex: 1; text-align: center; padding: 0 20px; }
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 15px; max-width: 30ch; margin: 0 auto; }
.step-connector {
  flex: 0 0 60px;
  height: 2px;
  margin-top: 26px;
  background-image: linear-gradient(to right, var(--terracotta) 50%, transparent 50%);
  background-size: 12px 2px;
}

/* ============ STATEMENT ============ */
.statement {
  background: linear-gradient(160deg, var(--olive-deep), var(--olive));
  color: var(--cream);
  padding: 120px 0;
  text-align: center;
}
.statement-title {
  font-size: clamp(30px, 4.6vw, 50px);
  color: var(--cream);
  line-height: 1.18;
  max-width: 18ch;
  margin: 0 auto 22px;
}
.statement-title em { color: var(--gold); font-style: italic; }
.statement-sub {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 18px;
  color: #EFE7CE;
}
.stat-row {
  display: flex;
  justify-content: center;
  gap: 70px;
  margin-top: 64px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  color: var(--gold);
}
.stat-label {
  font-size: 14px;
  color: #DCD3B8;
  margin-top: 4px;
  max-width: 16ch;
  text-align: center;
}

/* ============ CTA ============ */
.cta {
  position: relative;
  overflow: hidden;
  padding: 130px 0 120px;
  text-align: center;
}
.blob-cta {
  width: 460px; height: 460px;
  top: -180px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 35% 30%, #FBD98A, var(--terracotta));
  border-radius: 48% 52% 40% 60% / 55% 45% 55% 45%;
  opacity: 0.35;
}
.cta-inner { position: relative; z-index: 1; }
.cta-sub { color: var(--ink-soft); font-size: 17px; margin: 0 auto 36px; max-width: 46ch; }
.cta-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 2px solid rgba(43,36,25,0.15);
  background: var(--cream-card);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
}
.cta-form input:focus { outline: none; border-color: var(--terracotta); }
.form-note { margin-top: 16px; font-size: 14px; color: var(--olive-deep); font-weight: 600; min-height: 20px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--ink); color: #D9CFBB; padding: 70px 0 30px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { text-align: center; }
.footer-brand p { margin-top: 2px; font-family: var(--font-display); font-style: italic; color: var(--gold); }
.footer-logo { width: 192px; height: auto; }
.footer-nav { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-heading { font-weight: 700; color: var(--cream); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a { font-size: 14px; color: #C7BDA6; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; }
.footer-bottom p { font-size: 13px; color: #9C927C; }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 20px; max-width: 320px; margin-left: auto; margin-right: auto; }
  .steps { flex-direction: column; align-items: stretch; gap: 30px; }
  .step-connector { display: none; }
  .statement-title { max-width: 100%; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 28px 20px;
    border-bottom: 1px solid rgba(43,36,25,0.08);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid rgba(43,36,25,0.06); }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 36px; }
  .footer-inner { flex-direction: column; }
}
