/* Forage marketing site — rebuilt from the 2025 Squarespace design.
   Palette and type are the Squarespace site's own: Manrope headings, Nunito Sans body,
   Forage blue #007aff on white and #dedede greys. */

:root {
  --blue: #0070eb;   /* white-on-blue 4.65:1 (AA); the brand #007aff is 4.0:1 */
  --blue-deep: #005dc4;
  --black: #212020;
  --ink: #2b2b2b;
  --muted: #5f5f5f;
  --grey: #dedede;
  --grey-2: #bfbfbf;
  --white: #ffffff;
  --heading: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --body: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  --container: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--heading); color: var(--black); margin: 0 0 0.5em; letter-spacing: -0.02em; line-height: 1.08; }
h1 { font-weight: 800; font-size: clamp(40px, 6.4vw, 92px); overflow-wrap: anywhere; }
h2 { font-weight: 700; font-size: clamp(30px, 3.6vw, 52px); }
h3 { font-weight: 700; font-size: clamp(24px, 2.6vw, 38px); }
p { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--black); }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.centered { text-align: center; }

.skip-link { position: absolute; left: -999px; top: 8px; background: var(--black); color: #fff; padding: 8px 12px; border-radius: 6px; z-index: 100; }
.skip-link:focus { left: 8px; }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 8px;
  padding: 14px 26px;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.btn:hover { background: var(--blue-deep); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn-small { padding: 12px 22px; font-size: 14px; }
.btn-large { padding: 20px 36px; font-size: 16px; }
.btn-light { background: #fff; color: var(--black); }
.btn-light:hover { background: #eef4ff; }
.btn[disabled] { opacity: 0.6; cursor: wait; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-mark { width: auto; height: 30px; }
.brand-name { font-family: var(--heading); font-weight: 800; font-size: 26px; letter-spacing: -0.03em; color: var(--black); }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 40px); }
.site-nav a { font-family: var(--heading); font-weight: 700; font-size: 16px; text-decoration: none; color: var(--black); }
.site-nav a.is-current { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1.5px; }
.site-nav a.btn { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--black); margin: 6px 0; transition: transform 0.2s ease, opacity 0.2s ease; }

/* Hero */
.hero { padding: clamp(40px, 6vw, 96px) 0 clamp(56px, 7vw, 120px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(32px, 5vw, 80px); }
.lede { font-size: clamp(19px, 1.6vw, 24px); max-width: 34em; color: var(--ink); }
.hero-copy .btn { margin: 18px 0 20px; }
.fine { font-size: 16px; color: var(--muted); max-width: 32em; }

.hero-visual { position: relative; }
.hero-bottle { width: min(100%, 560px); margin-inline: auto; }
.notif {
  position: absolute;
  display: grid; grid-template-columns: 44px 1fr 36px; align-items: center; gap: 14px;
  width: min(420px, 78%);
  background: #fff; color: var(--black);
  border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow);
  font-family: var(--body);
}
.notif-app { border-radius: 10px; }
.notif-text { display: grid; gap: 2px; }
.notif-text strong { font-size: 15px; line-height: 1.3; }
.notif-text span { font-size: 13px; color: var(--muted); line-height: 1.35; }
.notif-thumb { justify-self: end; }
.notif-1 { top: 6%; right: -6%; }
.notif-2 { top: 40%; left: -12%; }

/* Reveal on scroll (opt-in; see site.js) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible, .no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* Bands + curved dividers */
.band-blue { background: var(--blue); color: #fff; }
.band-blue h2, .band-blue h3, .band-blue strong { color: #fff; }
.band-grey { background: var(--grey); }
.curve-bottom { position: relative; padding-bottom: clamp(120px, 12vw, 200px); }
.curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(60px, 8vw, 120px); display: block; }
.curve-fill-white { fill: var(--white); }

.band { padding-top: clamp(80px, 9vw, 150px); }
.band-title { text-align: center; font-size: clamp(28px, 3.4vw, 50px); margin: 0 auto 0.6em; max-width: 22em; }

/* Stats */
.stats { padding: clamp(56px, 7vw, 110px) 0 clamp(40px, 6vw, 90px); }
.stats-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 90px); align-items: start; }
.stats-lead h2 { max-width: 12em; }
.phone { width: min(100%, 460px); margin: clamp(24px, 3vw, 48px) auto 0; }
.stat-list { margin: 0; padding: 0; display: grid; gap: clamp(28px, 4vw, 56px); }
.stat dt { font-family: var(--heading); font-weight: 800; color: var(--blue); font-size: clamp(88px, 12vw, 200px); line-height: 0.95; letter-spacing: -0.05em; margin: 0; }
.stat dd { margin: 12px 0 0; font-size: clamp(18px, 1.5vw, 22px); max-width: 20em; }

/* Opportunity */
.opportunity { padding: clamp(72px, 9vw, 150px) 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 110px); align-items: start; }
.two-col h2 { max-width: 11em; }
.two-col .copy { max-width: 24em; margin-left: auto; font-size: clamp(18px, 1.5vw, 22px); }

/* Benefits */
.benefits { padding: clamp(40px, 6vw, 90px) 0 clamp(72px, 9vw, 140px); }
.benefits h2 { max-width: 12em; margin-inline: auto; margin-bottom: clamp(40px, 5vw, 80px); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 110px); align-items: center; }
.benefit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; max-width: 30em; font-size: clamp(17px, 1.4vw, 20px); }
.benefit-visual { position: relative; min-height: 560px; }
.benefit-store { position: absolute; right: 8%; top: 0; width: min(46%, 300px); border-radius: 14px; box-shadow: var(--shadow); }
.benefit-clip { position: absolute; left: 4%; bottom: 0; width: min(52%, 340px); border-radius: 14px; box-shadow: var(--shadow); }

/* How it works */
.how { padding: clamp(72px, 9vw, 140px) 0 clamp(72px, 9vw, 150px); }
.how-copy { max-width: 46em; font-size: clamp(18px, 1.5vw, 22px); }
.how-copy h2 { margin-bottom: 0.2em; }
.how-copy h3 { margin-bottom: 0.9em; }
.sync {
  display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: clamp(16px, 3vw, 48px);
  max-width: 900px; margin: clamp(48px, 6vw, 96px) auto 0;
  font-family: var(--heading); font-weight: 700;
}
.sync-node { padding: 14px 40px; border-radius: 10px; text-align: center; font-size: 18px; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.sync-forage { background: var(--blue); color: #fff; }
.sync-shopify { background: var(--black); color: #fff; }
.sync-link { height: 110px; background: repeating-linear-gradient(to bottom, var(--black) 0 3px, transparent 3px 24px); width: 100%; max-width: 60px; margin: 0 auto;
  -webkit-mask: repeating-linear-gradient(to right, #000 0 14px, transparent 14px 22px); mask: repeating-linear-gradient(to right, #000 0 14px, transparent 14px 22px); }
.sync-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.sync-items li { border: 1.5px solid var(--black); border-radius: 8px; padding: 12px 24px; text-align: center; min-width: 200px; background: #fff; font-family: var(--body); font-weight: 600; box-shadow: 0 4px 14px rgba(0,0,0,0.08); }

/* Contact */
.contact { padding-top: clamp(72px, 9vw, 140px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 6vw, 110px); align-items: start; }
.contact-copy h2 { font-size: clamp(40px, 5vw, 76px); font-weight: 800; }
.contact-copy p { max-width: 24em; font-size: clamp(17px, 1.3vw, 20px); }
.contact-form { display: grid; gap: 18px; }
.contact-form fieldset { border: 0; margin: 0; padding: 0; }
.contact-form legend { font-family: var(--heading); font-weight: 700; margin-bottom: 8px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-family: var(--heading); font-weight: 700; font-size: 15px; }
.contact-form .req { font-weight: 400; font-size: 13px; opacity: 0.9; }
.contact-form input, .contact-form textarea {
  width: 100%; font: inherit; font-family: var(--body); font-size: 17px; color: var(--black);
  background: var(--blue); color: #fff; border: 1.5px solid #fff; border-radius: 999px; padding: 11px 18px;
}
.contact-form textarea { border-radius: 18px; resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(255,255,255,0.65); outline-offset: 2px; }
.contact-form input.is-invalid, .contact-form textarea.is-invalid { border-color: #ffd0d0; box-shadow: 0 0 0 3px rgba(255,120,120,0.35); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { margin: 0; font-weight: 600; min-height: 1.4em; }
.form-status.is-error { color: #ffe0e0; }

/* Footer */
.site-footer { padding: clamp(32px, 4vw, 56px) 0 clamp(40px, 5vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: start; }
.copyright { font-size: 15px; color: var(--muted); margin-top: 14px; }
.footer-links { display: flex; gap: 40px; padding-top: 6px; }
.footer-links a { text-decoration: none; font-size: 15px; }
.footer-links a:hover { text-decoration: underline; }
.footer-contact { justify-self: end; text-align: left; }
.footer-contact h2 { font-weight: 500; font-size: 26px; margin-bottom: 8px; }
.footer-contact a { text-decoration: none; }

/* Legal pages */
.legal { padding: clamp(40px, 6vw, 96px) 0; max-width: 46em; }
.legal h1 { font-size: clamp(36px, 4.6vw, 64px); }
.legal .notice { background: var(--grey); border-radius: var(--radius); padding: 20px 24px; }

/* Responsive */
@media (max-width: 1024px) {
  .stat dt { font-size: clamp(80px, 11vw, 150px); }
  .benefit-visual { min-height: 480px; }
}
@media (max-width: 860px) {
  .header-inner { min-height: 72px; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: flex-start; gap: 6px;
    background: #fff; padding: 12px var(--gutter) 20px; box-shadow: 0 16px 30px rgba(0,0,0,0.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 10px 0; font-size: 18px; }
  .site-nav a.btn { margin-top: 6px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-grid, .stats-grid, .two-col, .benefits-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 8px; }
  .hero-bottle { width: min(70%, 380px); }
  .notif { position: static; width: 100%; max-width: 440px; margin: 14px auto 0; }
  .two-col .copy { margin-left: 0; }
  .benefit-visual { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; }
  .benefit-store, .benefit-clip { position: static; width: 100%; }
  .sync { grid-template-columns: 1fr; justify-items: center; gap: 12px; }
  .sync-link { height: 40px; width: 40px; background: repeating-linear-gradient(to bottom, var(--black) 0 3px, transparent 3px 12px); -webkit-mask: none; mask: none; }
  .sync-items li { min-width: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { justify-self: start; }
}
@media (max-width: 520px) {
  body { font-size: 17px; }
  .contact-form .row { grid-template-columns: 1fr; }
  .benefit-visual { grid-template-columns: 1fr; }
  .benefit-store { width: 70%; margin-inline: auto; }
}
