/* ==========================================================================
   Squeezy Ghee - site styles
   Palette sampled directly from Docs/SqueezyGhee-label-mockup.png
   Structure: full-bleed colour-blocked bands, reveal-on-scroll.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Kaushan+Script&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;0,900;1,400&display=swap');

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Label palette */
  --cream:        #faf1da;
  --cream-deep:   #f3e6c4;
  --paper:        #fffbef;
  --butter:       #f7c948;
  --butter-lift:  #fbd968;
  --butter-deep:  #e8a81e;
  --gold:         #c98a06;
  --navy:         #10263d;
  --navy-soft:    #1b3a5c;
  --navy-line:    rgba(16, 38, 61, .18);

  /* Type */
  --display: 'Anton', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
  --script:  'Kaushan Script', 'Segoe Script', cursive;
  --body:    'Source Sans 3', -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Rhythm */
  --band-y:  clamp(72px, 9vw, 140px);
  --gutter:  clamp(20px, 5vw, 64px);
  --wrap:    1240px;
  --rule:    3px;

  /* Motion */
  --ease:    cubic-bezier(.22, .68, .16, 1);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

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

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

/* Keep anchored sections clear of the sticky header. */
:target,
section[id],
.band[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--body);
  font-size: clamp(17px, 1.05vw, 19px);
  line-height: 1.6;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
}

h1 { font-size: clamp(58px, 9.5vw, 132px); }
h2 { font-size: clamp(42px, 6.4vw, 96px); }
h3 { font-size: clamp(22px, 2.2vw, 30px); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.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;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* --------------------------------------------------------------------------
   3. Shared layout helpers
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.band {
  position: relative;
  padding-block: var(--band-y);
}

.band--cream  { background: var(--cream); }
.band--paper  { background: var(--paper); }
.band--butter { background: var(--butter); }
.band--navy   { background: var(--navy); color: var(--cream); }

/* Pulls the first section below the hero up into the fold, so it is not a
   blank strip on tall windows. */
.band--tight { padding-block-start: clamp(44px, 4.5vw, 72px); }

.band--navy h2 em,
.band--navy .eyebrow { color: var(--butter); }

.band--butter .eyebrow { color: var(--navy); opacity: .72; }

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

h2 em, h1 em {
  font-style: normal;
  color: var(--gold);
}

/* Navy at reduced opacity goes olive on butter; a burnt gold reads as intentional. */
.band--butter h2 em { color: #8f6206; }

.lede {
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.5;
  max-width: 52ch;
}

.script {
  font-family: var(--script);
  text-transform: none;
  letter-spacing: 0;
}

.note {
  font-size: 13px;
  line-height: 1.5;
  opacity: .62;
  max-width: 62ch;
}

/* Buttons ---------------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  border: var(--rule) solid var(--navy);
  padding: 16px 30px;
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--butter-deep);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--butter-deep);
}
.button:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--butter-deep);
}

.button--butter {
  background: var(--butter);
  color: var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
}
.button--butter:hover { box-shadow: 9px 9px 0 var(--navy); }
.button--butter:active { box-shadow: 2px 2px 0 var(--navy); }

.text-link {
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 2px solid var(--butter-deep);
  padding-bottom: 2px;
}
.text-link:hover { border-bottom-color: var(--navy); }

/* --------------------------------------------------------------------------
   4. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: var(--rule) solid var(--navy);
  transition: box-shadow .25s var(--ease);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 16px;
  transition: padding .25s var(--ease);
}

.site-header.is-stuck { box-shadow: 0 6px 0 rgba(16, 38, 61, .08); }
.site-header.is-stuck .wrap { padding-block: 9px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
  transition: transform .3s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-12deg) scale(1.06); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 700;
}
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta):hover { color: var(--gold); }

.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 11px 18px;
  letter-spacing: .04em;
}
.nav-cta:hover { background: var(--navy-soft); }

@media (max-width: 760px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: var(--rule) solid var(--navy);
  background: var(--cream);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding-block: clamp(40px, 4.5vw, 76px);
  min-height: min(70svh, 700px);
}

.hero-copy { position: relative; z-index: 2; }

.hero h1 { margin-bottom: 22px; }

.hero-banner {
  display: inline-block;
  position: relative;
  background: var(--butter);
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(17px, 1.9vw, 25px);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 9px 30px;
  margin-bottom: 24px;
  border: 2px solid var(--navy);
  clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 50%, 100% 100%, 0 100%, 14px 50%);
}

.hero .lede { margin-bottom: 30px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Hero artwork ----------------------------------------------------------- */

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.sunburst {
  position: absolute;
  width: 132%;
  aspect-ratio: 1;
  background: repeating-conic-gradient(
    from 0deg,
    var(--butter) 0deg 5deg,
    transparent 5deg 12deg
  );
  -webkit-mask-image: radial-gradient(circle, #000 18%, rgba(0,0,0,.35) 45%, transparent 66%);
          mask-image: radial-gradient(circle, #000 18%, rgba(0,0,0,.35) 45%, transparent 66%);
  opacity: .5;
  animation: spin 120s linear infinite;
  pointer-events: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Sized by height, not width - the artwork is tall (bottle plus the pan it
   drips into), so height is what has to fit the hero. */
.bottle {
  position: relative;
  z-index: 2;
  height: clamp(380px, 70vh, 700px);
  width: auto;
  filter: drop-shadow(12px 16px 0 rgba(16, 38, 61, .12));
  will-change: transform;
}

/* The drop leaves the nozzle at y=566 and lands in the pan at y=620. */
.drip {
  transform-origin: center;
  transform-box: fill-box;
  animation: drip 3.8s var(--ease) infinite;
}

@keyframes drip {
  0%, 46%  { transform: translateY(0) scale(.4);     opacity: 0; }
  56%      { transform: translateY(0) scale(1);      opacity: 1; }
  84%      { transform: translateY(38px) scale(.95); opacity: 1; }
  100%     { transform: translateY(48px) scale(.45); opacity: 0; }
}

/* Sizzle wisps pulse just after the drop lands. */
.sizzle {
  transform-origin: center bottom;
  transform-box: fill-box;
  animation: sizzle 3.8s var(--ease) infinite;
}

@keyframes sizzle {
  0%, 82%  { opacity: 0; transform: translateY(6px) scaleY(.6); }
  90%      { opacity: .9; transform: translateY(0) scaleY(1); }
  100%     { opacity: 0; transform: translateY(-8px) scaleY(1.15); }
}

.doodle {
  position: absolute;
  font-family: var(--display);
  color: var(--butter-deep);
  font-size: clamp(18px, 2vw, 30px);
  pointer-events: none;
}
.doodle--a { top: 10%; left: 4%;   animation: bob 6s   ease-in-out infinite; }
.doodle--b { top: 32%; right: 1%;  animation: bob 7s   ease-in-out infinite .8s; }
.doodle--c { bottom: 12%; left: 8%; animation: bob 5.4s ease-in-out infinite .4s; }

@keyframes bob {
  50% { transform: translateY(-12px) rotate(8deg); }
}

@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
  }
  .hero-actions { justify-content: center; }
  .hero .lede, .hero .note { margin-inline: auto; }
  .hero-art { order: -1; min-height: 0; }
  .bottle { height: min(64vh, 500px); }
}

/* --------------------------------------------------------------------------
   6. Marquee ticker
   -------------------------------------------------------------------------- */

.ticker {
  background: var(--navy);
  color: var(--cream);
  border-bottom: var(--rule) solid var(--navy);
  padding-block: 16px;
  overflow: hidden;
  display: flex;
  user-select: none;
}

.ticker-track {
  display: flex;
  flex: none;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(14px, 1.5vw, 19px);
  letter-spacing: .1em;
  animation: marquee 38s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track b { color: var(--butter); font-size: .8em; }

@keyframes marquee { to { transform: translateX(-100%); } }

/* --------------------------------------------------------------------------
   7. Benefit roundels (format + flavour, not nutrition claims)
   -------------------------------------------------------------------------- */

.roundels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 56px);
  text-align: center;
}

.roundel svg {
  width: 76px;
  height: 76px;
  margin-bottom: 16px;
}

.roundel h3 {
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.roundel p {
  font-size: 15px;
  line-height: 1.5;
  max-width: 30ch;
  margin-inline: auto;
  opacity: .78;
}

@media (max-width: 700px) {
  .roundels { grid-template-columns: 1fr; gap: 40px; }
}

/* --------------------------------------------------------------------------
   8. Split (the faff) + method comparison
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.split-head h2 { margin-bottom: 20px; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
}

.methods {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(44px, 5vw, 72px);
}

.method {
  border: var(--rule) solid var(--navy);
  padding: clamp(24px, 3vw, 38px);
  background: var(--paper);
}

.method--new {
  background: var(--butter);
  box-shadow: 10px 10px 0 var(--navy);
  display: flex;
  flex-direction: column;
}

/* One step against five: let it sit centred in the space it wins. */
.method--new ol {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.method h3 {
  font-size: clamp(19px, 1.8vw, 25px);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--navy-line);
}

.method ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.method li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 9px 0;
  font-weight: 600;
}

.method li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 15px;
  color: var(--gold);
  flex: none;
  min-width: 26px;
}

.method--new li {
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  padding: 5px 0;
}
.method--new li::before { color: var(--navy); font-size: 15px; }

.method-verdict {
  display: block;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 2px solid var(--navy-line);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold);
}
.method--new .method-verdict { color: var(--navy); }

@media (max-width: 820px) {
  .methods { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   9. One-ingredient card
   -------------------------------------------------------------------------- */

.ingredient {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.stamp {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border: var(--rule) solid var(--navy);
  border-radius: 50%;
  background: var(--navy);
  color: var(--butter);
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.06;
  letter-spacing: .04em;
  padding: 20px;
  transform: rotate(-8deg);
  transition: transform .4s var(--ease);
}
.stamp:hover { transform: rotate(4deg) scale(1.04); }

.ingredient h2 { margin-bottom: 20px; }
.ingredient .lede { margin-bottom: 22px; }

.no-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.no-list li {
  border: 2px solid var(--navy);
  padding: 7px 15px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .4);
}

@media (max-width: 820px) {
  .ingredient { grid-template-columns: 1fr; justify-items: start; }
  .stamp { width: 180px; }
}

/* --------------------------------------------------------------------------
   10. Uses grid + cook bar
   -------------------------------------------------------------------------- */

.uses-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  border: var(--rule) solid var(--butter);
}

/* Five columns, so keep the padding tight or the copy sets three words wide. */
.use {
  padding: clamp(22px, 2vw, 30px);
  border-right: var(--rule) solid var(--butter);
  transition: background .3s var(--ease);
}
.use:last-child { border-right: 0; }
.use:hover { background: rgba(247, 201, 72, .12); }

.use svg {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.use-index {
  display: block;
  font-family: var(--display);
  font-size: 14px;
  color: var(--butter);
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.use h3 { margin-bottom: 10px; }
.use p { font-size: 15px; line-height: 1.55; opacity: .85; }

@media (max-width: 900px) {
  .use { border-right: 0; border-bottom: var(--rule) solid var(--butter); }
  .use:last-child { border-bottom: 0; }
}

.cookbar {
  background: var(--navy);
  border-top: var(--rule) solid var(--butter);
  padding-block: clamp(18px, 2vw, 26px);
  text-align: center;
  font-family: var(--display);
  font-size: clamp(19px, 3vw, 40px);
  letter-spacing: .1em;
  color: var(--butter);
  text-transform: uppercase;
}
.cookbar span { color: var(--cream); }

/* --------------------------------------------------------------------------
   11. Temperature testing
   -------------------------------------------------------------------------- */

.testing {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.testing h2 { margin-bottom: 22px; }

/* Align the bar tops, not the column bottoms - the labels run to
   different line counts and would otherwise stagger the gauges. */
.temps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 20px);
  align-items: start;
}

.temp {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.temp-bar {
  position: relative;
  height: clamp(120px, 16vw, 210px);
  border: var(--rule) solid var(--navy);
  background: var(--paper);
  overflow: hidden;
  margin-bottom: 12px;
}

/* Filled by default so the gauges still read without JavaScript;
   only the scripted page starts them at zero and animates up. */
.temp-fill {
  position: absolute;
  inset: auto 0 0 0;
  height: var(--fill, 50%);
  background: linear-gradient(180deg, var(--butter-lift), var(--butter-deep));
  transition: height 1.1s var(--ease);
  transition-delay: calc(var(--i, 0) * 130ms);
}
.js .temp-fill { height: 0; }
.js .temp-bar.is-filled .temp-fill { height: var(--fill, 50%); }

.temp b {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.temp span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1.35;
  margin-top: 7px;
  opacity: .72;
  min-height: 3.2em;
}

@media (max-width: 900px) {
  .testing { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   12. About - things that already squeeze
   -------------------------------------------------------------------------- */

.about { text-align: center; }
.about h2 { margin-bottom: 24px; }
.about .lede { margin-inline: auto; margin-bottom: clamp(36px, 4vw, 56px); }

.squeezables {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 clamp(30px, 4vw, 48px);
  padding: 0;
  list-style: none;
}

.squeezables li {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 38px);
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 2px solid var(--navy);
  background: var(--paper);
  transform: rotate(var(--tilt, 0deg));
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.squeezables li:hover { transform: rotate(0deg) scale(1.05); background: var(--butter); }

.squeezables li.is-odd-one-out {
  background: var(--navy);
  color: var(--butter);
}

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */

.faq h2 { margin-bottom: clamp(34px, 4vw, 56px); }

.faq details { border-top: 2px solid var(--navy); }
.faq details:last-of-type { border-bottom: 2px solid var(--navy); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-size: clamp(19px, 1.9vw, 26px);
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }

/* The + that becomes a - when the answer opens. */
.faq summary .sign {
  position: relative;
  flex: none;
  width: 30px;
  height: 30px;
  border: 2px solid var(--navy);
  background: var(--butter);
}
.faq summary .sign::before,
.faq summary .sign::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--navy);
  transition: transform .3s var(--ease);
}
.faq summary .sign::before {
  width: 14px; height: 2.5px;
  transform: translate(-50%, -50%);
}
.faq summary .sign::after {
  width: 2.5px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq details[open] summary .sign::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq details p {
  max-width: 68ch;
  opacity: .85;
}
.faq details > *:last-child { margin-bottom: 26px; }

/* --------------------------------------------------------------------------
   14. Signup
   -------------------------------------------------------------------------- */

.signup {
  text-align: center;
  border-top: var(--rule) solid var(--navy);
  border-bottom: var(--rule) solid var(--navy);
}

.signup h2 { margin-bottom: 20px; }
.signup .lede { margin-inline: auto; }

.signup form {
  display: flex;
  max-width: 620px;
  margin: clamp(28px, 3vw, 40px) auto 14px;
}

.signup input {
  flex: 1;
  min-width: 0;
  padding: 17px 20px;
  border: var(--rule) solid var(--navy);
  border-right: 0;
  background: var(--paper);
  font: inherit;
  color: var(--navy);
}
.signup input::placeholder { color: rgba(16, 38, 61, .45); }

.signup button {
  flex: none;
  border: var(--rule) solid var(--navy);
  background: var(--navy);
  color: var(--cream);
  padding: 0 26px;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.signup button:hover { background: var(--navy-soft); }

/* Honeypot: off-screen rather than display:none, which bots skip. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  font-size: 13px;
  line-height: 1.5;
  max-width: 58ch;
  margin: 0 auto 14px;
  opacity: .78;
}
.consent a { font-weight: 700; }

.form-message {
  font-size: 15px;
  font-weight: 600;
  min-height: 3em;
  max-width: 46ch;
  margin-inline: auto;
}
.form-message.is-error { color: #8c2a12; }

.signup button[aria-busy='true'] { opacity: .7; cursor: progress; }

@media (max-width: 560px) {
  .signup form { flex-direction: column; }
  .signup input { border-right: var(--rule) solid var(--navy); }
  .signup button { padding: 16px; }
}

/* --------------------------------------------------------------------------
   14b. Legal prose (privacy)
   -------------------------------------------------------------------------- */

.legal { max-width: 74ch; }
.legal h2 { margin-bottom: 26px; }
.legal .lede { margin-bottom: 26px; }

.legal h3 {
  font-size: clamp(19px, 1.8vw, 25px);
  margin: 40px 0 14px;
  padding-top: 18px;
  border-top: 2px solid var(--navy-line);
}

.legal ul {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}
.legal li { margin-bottom: .4em; }
.legal .note { margin-bottom: 1.1em; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding-block: clamp(52px, 6vw, 84px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(250, 241, 218, .2);
}

.site-footer .brand { color: var(--cream); }

.footer-tagline {
  font-family: var(--script);
  font-size: clamp(26px, 3.4vw, 44px);
  color: var(--butter);
  line-height: 1.15;
  margin: 14px 0 0;
}

.footer-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  flex-wrap: wrap;
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--butter); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 26px;
  font-size: 13px;
  line-height: 1.5;
}
.footer-bottom small { opacity: .68; max-width: 62ch; }

.made-in {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  white-space: nowrap;
}
.made-in svg { width: 26px; height: 18px; flex: none; }

/* --------------------------------------------------------------------------
   16. Scroll reveal
   -------------------------------------------------------------------------- */

/* Everything here is scoped to .js (set by an inline script in <head>).
   Without JavaScript nothing adds .is-visible, so an unscoped opacity:0
   would leave the whole page blank. */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .75s var(--ease),
    transform .75s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.js [data-reveal='left']  { transform: translateX(-32px); }
.js [data-reveal='right'] { transform: translateX(32px); }
.js [data-reveal='scale'] { transform: scale(.93); }

/* --------------------------------------------------------------------------
   17. Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .temp-bar .temp-fill { height: var(--fill, 50%) !important; }
  .sunburst, .ticker-track, .doodle, .drip, .sizzle { animation: none !important; }
  .bottle { transform: none !important; }
  .drip { opacity: 1 !important; }
  .sizzle { opacity: .9 !important; }
}
