/* ─── Template E — "Storm Front" ───────────────────────────────────────────
   Bold, rugged hot-sauce / loud-food-brand aesthetic (Jonny-Tornado-inspired).
   Charcoal + kraft paper canvas, amber-heat + ember-red accents, heavy Anton
   display, chunky hard-offset shadows (sticker/badge feel). Signature touches:
   a scrolling promo MARQUEE, an animated STORM-SWIRL behind the hero, a static
   HEAT-SCALE meter band, and a horizontal scroll-snap FLAVORS carousel. All
   motion is GPU transforms — ZERO blur, NO bg-position parallax.
   ──────────────────────────────────────────────────────────────────────────*/

:root {
  --brand:      #f5811f;   /* amber heat */
  --brand-2:    #d62828;   /* ember red */
  --accent:     #ffb703;   /* storm gold */
  --char:       #14110f;   /* near-black charcoal (dark bands / strong text) */
  --char-2:     #221c17;
  --navy:       #14110f;   /* alias kept so shared markup that reads "navy" works */
  --text:       #1a1512;
  --text-muted: #6b5d50;
  --bg:         #e9ddc4;   /* kraft paper */
  --bg-alt:     #ded0b2;   /* deeper kraft */
  --cream:      #fbf3e2;
  --border:     #cdbb98;

  --radius:     6px;
  --radius-lg:  12px;
  --radius-pill:999px;
  --shadow-hard:   5px 5px 0 var(--char);
  --shadow-hard-lg:8px 8px 0 var(--char);
  --shadow-sm:  0 10px 22px rgba(20, 17, 15, 0.14);
  --shadow:     0 22px 48px rgba(20, 17, 15, 0.24);
  --shadow-lg:  0 36px 80px rgba(20, 17, 15, 0.34);

  --display:    "Anton", "Arial Narrow", Impact, sans-serif;
  --body:       "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-w:      1240px;
  --gutter:     clamp(20px, 4vw, 56px);

  --dur-1:      .35s;
  --dur-2:      .6s;
  --ease:       cubic-bezier(.2, .7, .3, 1);
  --ease-soft:  cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.reduced-motion, html:not(.has-js) { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0; overflow-x: hidden;
  font-family: var(--body); color: var(--text); background: var(--bg);
  font-size: 17px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-2); text-decoration: none; transition: color var(--dur-1) var(--ease-soft); }
a:hover { color: var(--brand); }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.4rem; margin: 0 0 1rem; }

h1, h2, h3, h4 {
  font-family: var(--display); font-weight: 400; color: var(--char);
  text-transform: uppercase; letter-spacing: 0.01em; line-height: 0.98; margin: 0 0 .5em;
}
h1 { font-size: clamp(3rem, 8.5vw, 6.4rem); }
h2 { font-size: clamp(2.2rem, 5.2vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-size: 12.5px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--brand-2);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--brand); border-radius: 2px; }
.accent-word { color: var(--brand); }

/* ─── Layout ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(76px, 10vw, 130px) 0; position: relative; background: var(--bg); }
.section--alt { background: var(--bg-alt); }

/* ─── Scrolling promo marquee (sits above the header, site-wide) ─── */
.promo-marquee {
  background: var(--char); color: var(--accent); overflow: hidden; white-space: nowrap;
  border-bottom: 3px solid var(--brand);
}
.promo-marquee__track {
  display: inline-flex; gap: 0; padding: 9px 0;
  font-family: var(--body); font-weight: 800; font-size: 12.5px;
  letter-spacing: 2px; text-transform: uppercase;
  animation: marquee 26s linear infinite; will-change: transform;
}
.promo-marquee__track span { padding: 0 26px; position: relative; }
.promo-marquee__track span::after {
  content: "✦"; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); color: var(--brand);
}
@keyframes marquee { to { transform: translateX(-50%); } }
html.reduced-motion .promo-marquee__track { animation: none; }

/* ─── Buttons — chunky, hard-offset shadow, press on click ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius);
  font-family: var(--body); font-weight: 800; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--brand); color: var(--char); border: 2.5px solid var(--char); cursor: pointer;
  text-decoration: none; box-shadow: var(--shadow-hard);
  transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard-lg); color: var(--char); background: var(--accent); }
.btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--char); }
.btn--accent { background: var(--brand-2); color: #fff; }
.btn--accent:hover { background: var(--accent); color: var(--char); }
.btn--ghost { background: var(--cream); color: var(--char); }
.btn--ghost:hover { background: #fff; color: var(--char); }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--char); border-bottom: 3px solid var(--brand);
  transition: padding var(--dur-2) var(--ease-soft);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; transition: padding var(--dur-2) var(--ease-soft); }
.site-header.is-scrolled .container { padding-top: 10px; padding-bottom: 10px; }
.site-header__logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.site-header__logo img { height: 48px; width: auto; transition: height var(--dur-2) var(--ease-soft); }
.site-header.is-scrolled .site-header__logo img { height: 40px; }
.site-header__brand { font-family: var(--display); font-weight: 400; color: #fff; font-size: 26px; line-height: 1; text-transform: uppercase; letter-spacing: .5px; }
.logo-fallback { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--radius); background: var(--brand); color: var(--char); border: 2.5px solid #fff; font-family: var(--display); font-size: 20px; }
.site-nav { display: flex; gap: 4px; align-items: center; }
.site-nav a { position: relative; color: #f3e9d6; font-weight: 700; font-size: 13.5px; letter-spacing: 1.2px; text-transform: uppercase; padding: 9px 14px; border-radius: var(--radius); transition: background var(--dur-1) var(--ease-soft), color var(--dur-1) var(--ease-soft); }
.site-nav a:hover { color: var(--char); background: var(--accent); }
.site-header__cta { display: flex; align-items: center; gap: 14px; }
.site-header__phone { font-family: var(--display); font-weight: 400; color: var(--accent); font-size: 20px; line-height: 1; letter-spacing: .5px; }

/* ─── Hero — dark storm band, swirl + heat overlay ─── */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: clamp(96px, 14vw, 170px) 0 clamp(90px, 11vw, 130px);
  background-color: var(--char);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  overflow: hidden; color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(105deg, rgba(20,17,15,0.92) 0%, rgba(20,17,15,0.6) 45%, rgba(214,40,40,0.34) 100%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__copy { max-width: 900px; }
.hero__copy .eyebrow { color: var(--accent); }
.hero__copy .eyebrow::before { background: var(--brand); }
.hero__copy h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 4px 0 rgba(0,0,0,.25); }
.hero__copy h1 .accent-word { color: var(--brand); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 600px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn--ghost { background: var(--cream); color: var(--char); border-color: var(--cream); }
.hero__rating { margin-top: 34px; display: inline-flex; align-items: center; gap: 14px; padding: 11px 20px; background: var(--cream); color: var(--char); border-radius: var(--radius); border: 2.5px solid var(--char); box-shadow: var(--shadow-hard); }
.hero__rating .stars { color: var(--brand); font-size: 18px; letter-spacing: 2px; }
.hero__rating .text { font-size: 13px; font-weight: 800; color: var(--char); text-transform: uppercase; letter-spacing: .5px; }

/* ─── Hero scene — layered props that fly in from different angles at
   staggered times, then idle-float; a tornado swirl wobbles + spins; the
   headline cycles color. All decorative, GPU transforms, behind the copy. ─── */
.hero-scene { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero-prop { position: absolute; will-change: transform, opacity; }
.hero-prop__inner { display: block; width: 100%; height: 100%; }
.hero-prop svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.38)); }

/* tornado swirl — always present, spins + gently wobbles */
.hero-prop--swirl { top: 6%; right: -5vw; width: min(48vh, 480px); height: min(48vh, 480px); opacity: .5; mix-blend-mode: screen; }
.hero-prop--swirl .hero-prop__inner {
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 18%, rgba(245,129,31,.85) 32%, transparent 46% 68%, rgba(214,40,40,.8) 82%, transparent 96%);
  -webkit-mask: radial-gradient(closest-side, transparent 26%, #000 30% 86%, transparent 92%);
          mask: radial-gradient(closest-side, transparent 26%, #000 30% 86%, transparent 92%);
  animation: swirlSpin 16s linear infinite, swirlWobble 6s ease-in-out infinite;
}
/* chili (left) — flies in from the lower-left, then floats */
.hero-prop--left { left: 1vw; bottom: 6vh; width: clamp(90px, 13vw, 175px); height: clamp(90px, 13vw, 175px);
  animation: flyInLeft 1.1s cubic-bezier(.2,.8,.25,1) .35s both; }
.hero-prop--left .hero-prop__inner { animation: floatA 5.5s ease-in-out infinite; }
/* chili (right, mirrored) — flies in from the right a beat later */
.hero-prop--right { right: 5vw; top: 19vh; width: clamp(80px, 11vw, 150px); height: clamp(80px, 11vw, 150px);
  animation: flyInRight 1.15s cubic-bezier(.2,.8,.25,1) .6s both; }
.hero-prop--right .hero-prop__inner { animation: floatB 6.2s ease-in-out infinite; }
/* flake cluster — flies up into place last */
.hero-prop--flakes { right: 23vw; bottom: 11vh; width: clamp(110px, 17vw, 210px); height: clamp(110px, 17vw, 210px);
  animation: flyInUp 1s cubic-bezier(.2,.8,.25,1) .85s both; }
.hero-prop--flakes .hero-prop__inner { animation: floatA 7s ease-in-out .5s infinite; }

@keyframes flyInLeft  { from { opacity: 0; transform: translate(-55vw, 14vh) rotate(-34deg); } to { opacity: 1; transform: translate(0, 0) rotate(-10deg); } }
@keyframes flyInRight { from { opacity: 0; transform: translate(55vw, 16vh) rotate(34deg); }   to { opacity: 1; transform: translate(0, 0) rotate(10deg); } }
@keyframes flyInUp    { from { opacity: 0; transform: translate(8vw, 42vh) rotate(20deg); }     to { opacity: 1; transform: translate(0, 0) rotate(6deg); } }
@keyframes floatA { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(3deg); } }
@keyframes floatB { 0%, 100% { transform: scaleX(-1) translateY(0) rotate(0); } 50% { transform: scaleX(-1) translateY(-14px) rotate(-3deg); } }
@keyframes swirlSpin { to { transform: rotate(360deg); } }
@keyframes swirlWobble { 0%, 100% { scale: 1; } 50% { scale: 1.07; } }

/* headline cycles through the warm palette (legible tones only) */
html.has-js:not(.reduced-motion) .hero__copy h1 { animation: heroHue 9s linear infinite; }
@keyframes heroHue { 0%, 100% { color: #fff; } 30% { color: var(--accent); } 60% { color: var(--brand); } 80% { color: #ffd9a0; } }

/* ─── Cards (shared chunk markup: .service-card / .process-step / .work-card / .review-card) ─── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; margin-top: 8px; }
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; margin-top: 48px; }

.service-card, .process-step, .work-card, .review-card {
  background: var(--cream); border: 2.5px solid var(--char); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.process-step:hover, .review-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-lg); }

/* Flavors = horizontal scroll-snap CAROUSEL of bold bottle cards */
.services-grid {
  display: flex; gap: 22px; margin-top: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 22px; scroll-padding-left: 4px;
  scrollbar-width: thin; scrollbar-color: var(--brand) var(--bg-alt);
}
.services-grid::-webkit-scrollbar { height: 10px; }
.services-grid::-webkit-scrollbar-track { background: var(--bg-alt); border-radius: 999px; }
.services-grid::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 999px; }
.service-card {
  scroll-snap-align: start; flex: 0 0 clamp(260px, 32vw, 320px);
  padding: 0 0 30px; overflow: hidden; text-align: left;
}
.service-card::before {                         /* heat stripe lid */
  content: ""; display: block; height: 12px;
  background: repeating-linear-gradient(135deg, var(--brand) 0 14px, var(--brand-2) 14px 28px);
}
.service-card__num {
  font-family: var(--display); font-weight: 400; font-size: 1rem; color: var(--char);
  display: inline-flex; align-items: center; justify-content: center; min-width: 46px; height: 30px; padding: 0 10px;
  border-radius: 999px; background: var(--accent); border: 2px solid var(--char);
  margin: 22px 0 16px 28px; letter-spacing: 1px; text-transform: uppercase; }
.service-card h3 { margin: 0 28px 10px; }
.service-card p { color: var(--text-muted); margin: 0 28px; font-size: 15px; line-height: 1.65; }

.process-step { padding: 32px 28px; text-align: center; }
.process-step__num { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px;
  border-radius: var(--radius); background: var(--brand); color: var(--char); border: 2.5px solid var(--char);
  font-family: var(--display); font-weight: 400; font-size: 1.7rem; line-height: 1; margin-bottom: 16px; }
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 15px; margin: 0; line-height: 1.65; }

.work-card { overflow: hidden; padding: 0; }
.work-card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-lg); }
.work-card__img { width: 100%; aspect-ratio: 4 / 3; background-size: cover; background-position: center;
  background-color: var(--bg-alt); border-bottom: 2.5px solid var(--char); transition: transform var(--dur-2) var(--ease); }
.work-card:hover .work-card__img { transform: scale(1.05); }
.work-card figcaption { padding: 22px 24px 26px; }
.work-card figcaption h3 { margin-bottom: 8px; }
.work-card figcaption p { color: var(--text-muted); font-size: 15px; margin: 0; }

/* ─── Promise band — "TAKE COVER" heat band, charcoal ─── */
.promise-band { position: relative; padding: clamp(90px, 12vw, 160px) 0; text-align: center;
  background-color: var(--char); background-size: cover; background-position: center; color: #fff; overflow: hidden;
  border-top: 4px solid var(--brand); border-bottom: 4px solid var(--brand); }
.promise-band::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, rgba(20,17,15,0.9), rgba(214,40,40,0.5)); }
.promise-band .container { position: relative; z-index: 1; max-width: 920px; }
.promise-band .eyebrow { color: var(--accent); justify-content: center; }
.promise-band h2 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 4.4rem); margin: 0 auto 18px; max-width: 860px; }
.promise-band p { color: rgba(255,255,255,0.9); font-size: 1.18rem; max-width: 640px; margin: 0 auto; }

/* Heat-scale meter (decorative; injected in the promise band on home) */
.heat-scale { max-width: 620px; margin: 38px auto 0; }
.heat-scale__bar { display: flex; height: 22px; border-radius: 999px; overflow: hidden; border: 2.5px solid #fff; box-shadow: var(--shadow-hard); }
.heat-scale__bar span { flex: 1; }
.heat-scale__bar span:nth-child(1) { background: #4caf50; }
.heat-scale__bar span:nth-child(2) { background: #cddc39; }
.heat-scale__bar span:nth-child(3) { background: var(--accent); }
.heat-scale__bar span:nth-child(4) { background: var(--brand); }
.heat-scale__bar span:nth-child(5) { background: var(--brand-2); }
.heat-scale__labels { display: flex; justify-content: space-between; margin-top: 10px;
  font-family: var(--display); font-size: 13px; letter-spacing: 1px; color: #fff; text-transform: uppercase; }

/* ─── Why us — kraft cards on charcoal ─── */
.why-us-diagonal { position: relative; overflow: hidden; background: var(--char-2); color: #fff; }
.why-us-diagonal .container { padding-top: clamp(82px, 11vw, 124px); padding-bottom: clamp(82px, 11vw, 124px); position: relative; z-index: 1; }
.why-us-diagonal .eyebrow { color: var(--accent); }
.why-us-diagonal h2 { color: #fff; margin-bottom: 42px; max-width: 820px; }
.why-us-diagonal .why-us__list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1040px; }
.why-us-diagonal .why-us__item { background: var(--cream); color: var(--char); border-radius: var(--radius-lg); padding: 26px;
  display: grid; grid-template-columns: 56px 1fr; gap: 18px; border: 2.5px solid var(--char); box-shadow: var(--shadow-hard);
  transition: transform var(--dur-1) var(--ease); }
.why-us-diagonal .why-us__item:hover { transform: translate(-3px, -3px); }
.why-us-diagonal .why-us__num { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: var(--radius); background: var(--brand); color: var(--char); border: 2.5px solid var(--char); font-family: var(--display); font-weight: 400; font-size: 1.5rem; }
.why-us-diagonal .why-us__item h3 { color: var(--char); font-size: 1.2rem; margin-bottom: 8px; }
.why-us-diagonal .why-us__item p { color: var(--text-muted); margin: 0; font-size: 15px; }

/* ─── Reviews ─── */
.review-card { padding: 32px 28px; }
.review-card__stars { color: var(--brand); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card__text { font-size: 16px; line-height: 1.7; margin-bottom: 16px; color: var(--text); }
.review-card__author { font-family: var(--display); font-weight: 400; font-size: 1.1rem; color: var(--brand-2); text-transform: uppercase; letter-spacing: .5px; }

/* ─── Service areas ─── */
.areas-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-top: 36px; }
.area-pill { padding: 14px 22px; background: var(--cream); border: 2.5px solid var(--char); border-radius: var(--radius);
  text-align: center; font-family: var(--display); font-weight: 400; color: var(--char); font-size: 17px; text-transform: uppercase; letter-spacing: .5px; box-shadow: var(--shadow-hard);
  transition: transform var(--dur-1) var(--ease), background var(--dur-1) var(--ease), color var(--dur-1) var(--ease); }
.area-pill:hover { background: var(--brand); color: var(--char); transform: translate(-2px, -2px); }
.area-card { box-shadow: var(--shadow-hard); transition: transform var(--dur-1) var(--ease) !important; }
.area-card:hover { transform: translate(-3px, -3px); }

/* ─── FAQ ─── */
.faq-list { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq-item { background: var(--cream); border: 2.5px solid var(--char); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hard); }
.faq-item details summary { padding: 22px 26px; font-family: var(--display); font-weight: 400; color: var(--char); font-size: 18px; text-transform: uppercase; letter-spacing: .5px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary::after { content: "+"; font-family: var(--display); font-size: 1.7rem; color: var(--brand-2); line-height: .6; transition: transform var(--dur-1) var(--ease); }
.faq-item details[open] summary::after { transform: rotate(45deg); }
.faq-item details .faq-answer { padding: 0 26px 24px; color: var(--text-muted); font-size: 16px; line-height: 1.7; }

/* ─── NAP ─── */
.nap-block { display: grid; gap: 6px; font-size: 15px; line-height: 1.6; }
.nap-block strong { color: var(--char); font-size: 17px; font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .5px; }
.nap-block a { color: var(--text-muted); font-weight: 600; }
.nap-block a:hover { color: var(--brand-2); }

/* ─── Contact CTA — "JOIN THE MAILING LIST" band ─── */
.contact-cta { position: relative; padding: clamp(86px, 12vw, 134px) 0; text-align: center; color: #fff; overflow: hidden;
  background-color: var(--char); background-size: cover; background-position: center; border-top: 4px solid var(--brand); }
.contact-cta::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, rgba(20,17,15,0.92), rgba(214,40,40,0.5)); }
.contact-cta .container { position: relative; z-index: 1; }
.contact-cta .eyebrow { color: var(--accent); justify-content: center; }
.contact-cta h2 { color: #fff; max-width: 820px; margin: 0 auto 16px; }
.contact-cta p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 30px; font-size: 1.1rem; }

/* Inline mailing-list signup (decorative form on home CTA) */
.signup-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.signup-form input { flex: 1; min-width: 220px; padding: 15px 18px; border: 2.5px solid #fff; border-radius: var(--radius);
  font-family: var(--body); font-size: 16px; background: var(--cream); color: var(--char); }
.signup-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,183,3,.4); }

/* ─── Contact form ─── */
.contact-form { display: grid; gap: 18px; max-width: 580px; }
.contact-form label { font-family: var(--display); font-size: 14px; font-weight: 400; color: var(--char); margin-bottom: 6px; display: block; letter-spacing: 1px; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border: 2.5px solid var(--char); border-radius: var(--radius);
  font-family: var(--body); font-size: 16px; background: var(--cream); color: var(--text); transition: box-shadow var(--dur-1) var(--ease-soft); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; box-shadow: 0 0 0 4px rgba(245,129,31,.22); }
.contact-form textarea { min-height: 160px; resize: vertical; }

/* ─── Article ─── */
.article h2 { margin-top: 1.4em; }
.article ul { margin-bottom: 1.2rem; }
.article a { text-decoration: underline; text-underline-offset: 3px; }

/* ─── Footer ─── */
.site-footer { background: var(--char); color: rgba(255,255,255,0.72); padding: 80px 0 30px; font-size: 15px; border-top: 4px solid var(--brand); }
.site-footer h4 { color: var(--accent); font-family: var(--display); font-size: 1.2rem; font-weight: 400; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; margin-bottom: 52px; }
.site-footer a { color: rgba(255,255,255,0.72); font-weight: 600; }
.site-footer a:hover { color: var(--accent); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.16); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .5px; }
.site-footer__logo img { height: 46px; margin-bottom: 16px; }
.site-footer__blurb { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; max-width: 360px; }
.social-icons a { transition: transform var(--dur-1) var(--ease), background var(--dur-1) var(--ease); }
.social-icons a:hover { transform: translateY(-3px); background: var(--brand) !important; }

/* ─── Dropdown ─── */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; padding-bottom: 16px; margin-bottom: -16px; }
.nav-dropdown__label { cursor: pointer; }
.nav-dropdown__menu { position: absolute; top: 100%; left: 0; min-width: 230px; max-width: 320px;
  background: var(--char-2); border: 2.5px solid var(--brand); border-radius: var(--radius); padding: 8px;
  display: flex; flex-direction: column; gap: 2px; box-shadow: var(--shadow); z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--dur-1) var(--ease-soft), transform var(--dur-1) var(--ease-soft), visibility var(--dur-1); }
.nav-dropdown:hover .nav-dropdown__menu, .nav-dropdown:focus-within .nav-dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown__menu a { padding: 10px 13px; border-radius: var(--radius); font-size: 13px; font-weight: 700; color: #f3e9d6; text-transform: uppercase; letter-spacing: .5px; }
.nav-dropdown__menu a:hover { background: var(--brand); color: var(--char); }

/* ─── Mobile hamburger ─── */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--accent); border-radius: 2px; transition: transform .24s var(--ease-soft), opacity .24s var(--ease-soft); }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ═══ MOTION LAYER — reveal start states + reduced-motion / no-JS safety ═══ */
html.has-js:not(.reduced-motion) .hero__copy > * { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__copy > * { opacity: 1 !important; }
  .hero-prop, .hero-prop__inner, .promo-marquee__track { animation: none !important; }
  .hero-prop { opacity: 1 !important; }
}

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .why-us-diagonal .why-us__list { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-toggle { display: inline-flex; order: 2; margin-left: auto; }
  .site-header .container { flex-wrap: wrap; }
  .site-header__logo { order: 1; }
  .site-nav, .site-header__cta { order: 3; width: 100%; display: none; }
  .site-header.nav-open .site-nav { display: flex; flex-direction: column; align-items: stretch; gap: 4px; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.15); }
  .site-header.nav-open .site-nav a { padding: 12px 14px; }
  .site-header.nav-open .site-header__cta { display: flex; flex-direction: column; align-items: stretch; gap: 10px; padding: 10px 0 16px; }
  .site-header.nav-open .site-header__cta .btn { width: 100%; justify-content: center; }
  .nav-dropdown { flex-direction: column; align-items: stretch; padding: 0; margin: 0; }
  .site-header.nav-open .nav-dropdown__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: transparent; padding: 0 0 6px 14px; min-width: 0; max-width: none; }
}
@media (max-width: 640px) {
  .hero { min-height: 84vh; }
  .hero-prop--swirl { opacity: .3; right: -30vw; }
  .hero-prop--right, .hero-prop--flakes { display: none; }   /* keep mobile hero clean */
}
