/* ============================================================
   Covelli Premium Dough Products. Mockup build, BND FORGE.
   Tokens first: ACSS-mappable. One container, one gutter.
   Palette sampled from the real Covelli badge logo.
   ============================================================ */

:root {
  /* brand */
  --red: #c00010;
  --red-deep: #96000d;
  --red-bright: #e8213a;
  --ink: #1d1b1a;
  --char: #262220;
  --char-2: #322c28;
  --cream: #faf5ec;
  --cream-2: #f2e9d8;
  --flour: #fffdf8;
  --amber: #d98e32;
  --amber-deep: #b06a1a;
  --line: rgba(29, 27, 26, 0.12);
  --line-light: rgba(255, 253, 248, 0.16);

  /* type */
  --f-display: "Fraunces", "Georgia", serif;
  --f-body: "Archivo", "Helvetica Neue", sans-serif;
  --f-script: "Kaushan Script", cursive;

  /* rhythm */
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(64px, 9vw, 120px);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(29, 27, 26, 0.14);
  --shadow-lift: 0 18px 44px rgba(29, 27, 26, 0.22);

  --header-h: 88px;
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--flour);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4, .display { font-family: var(--f-display); line-height: 1.12; margin: 0; }

/* one container, one gutter token: nothing else pads the page edge */
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--char); color: var(--flour); }

/* labels */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--red); }
.section-dark .eyebrow { color: var(--amber); }
.section-dark .eyebrow::before { background: var(--amber); }
.script-note { font-family: var(--f-script); font-size: clamp(22px, 2.6vw, 30px); color: var(--red); }

.h2 { font-size: clamp(32px, 4.4vw, 52px); font-weight: 600; letter-spacing: -0.01em; }
.h3 { font-size: clamp(21px, 2.4vw, 26px); font-weight: 600; }
.lede { font-size: clamp(17px, 1.9vw, 20px); max-width: 62ch; }
.muted { color: rgba(29, 27, 26, 0.72); }
.section-dark .muted { color: rgba(255, 253, 248, 0.78); }

/* ---------- buttons: chunky, uppercase, real shadow ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-weight: 800; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  padding: 18px 30px; border-radius: 10px; border: 0; cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(192, 0, 16, 0.38); }
.btn-red:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(192, 0, 16, 0.45); }
.btn-white { background: var(--flour); color: var(--ink); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34); }
.btn-dark { background: var(--ink); color: var(--flour); box-shadow: 0 8px 22px rgba(29, 27, 26, 0.3); }
.btn-dark:hover { transform: translateY(-2px); background: var(--char-2); }
.btn svg { flex: none; }

/* ============================================================
   Utility bar
   ============================================================ */
.utility {
  background: var(--ink); color: rgba(255, 253, 248, 0.92);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.02em;
}
.utility .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.utility a { text-decoration: none; }
.utility a:hover { color: var(--amber); }
.utility-left, .utility-right { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.utility .dot { color: var(--amber); }
.utility .u-phone { font-weight: 800; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--flour);
  border-bottom: 2px solid var(--ink);
}
.header-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: var(--header-h); width: 100%;
}
.brand-seal {
  display: grid; place-items: center;
  width: 118px; height: 118px; padding: 12px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 50%;
  box-shadow: 0 10px 26px rgba(29, 27, 26, 0.18);
  align-self: start; margin-top: 12px; margin-bottom: -44px;
  position: relative; z-index: 5;
}
.brand-seal img { width: 100%; height: auto; }
.brand-seal::after {
  content: ""; position: absolute; inset: 5px; border-radius: 50%;
  border: 1.5px dashed rgba(192, 0, 16, 0.35); pointer-events: none;
}

.nav { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; }
.nav-left { justify-self: start; }
.nav-right { justify-self: end; }
.nav > li { list-style: none; position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 14px; font-weight: 800; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; border-radius: 8px; color: var(--ink);
}
.nav-link:hover { background: var(--cream-2); color: var(--red); }
.nav-link .car { width: 10px; height: 10px; transition: transform 0.18s; }
.nav > li:hover .car, .nav > li:focus-within .car { transform: rotate(180deg); }
.nav-cta { margin-left: 12px; padding: 14px 22px; font-size: 13px; }
.nav-right .drop { left: auto; right: 0; }
.header-call { display: none; }

.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px;
  background: var(--flour); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lift); padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.nav > li:hover .drop, .nav > li:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: block; padding: 11px 14px; border-radius: 9px;
  text-decoration: none; font-weight: 600; font-size: 15px;
}
.drop a { letter-spacing: 0; text-transform: none; }
.drop a small { display: block; font-weight: 500; font-size: 12.5px; color: rgba(29, 27, 26, 0.6); letter-spacing: 0; text-transform: none; }
.drop a:hover { background: var(--cream-2); color: var(--red); }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 10px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--flour); cursor: pointer;
}
.burger span { display: block; height: 3px; border-radius: 2px; background: var(--ink); transition: transform 0.22s, opacity 0.22s; }
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   Mobile drawer
   ============================================================ */
.scrim {
  position: fixed; inset: 0; background: rgba(29, 27, 26, 0.55); z-index: 70;
  opacity: 0; visibility: hidden; transition: opacity 0.24s, visibility 0.24s;
}
.scrim.on { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: var(--flour); z-index: 80; display: flex; flex-direction: column;
  transform: translateX(103%); visibility: hidden;
  transition: transform 0.28s ease, visibility 0s linear 0.28s;
}
.drawer.on { transform: translateX(0); visibility: visible; transition: transform 0.28s ease; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter); border-bottom: 1px solid var(--line); background: var(--cream);
}
.drawer-head img { height: 52px; }
.drawer-close {
  width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--flour); font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink);
}
.drawer-body { flex: 1; overflow-y: auto; padding: 8px var(--gutter) 24px; }
.acc { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: 0; padding: 17px 2px; cursor: pointer;
  font-family: var(--f-body); font-weight: 800; font-size: 17px; color: var(--ink);
}
.acc-head .car { transition: transform 0.2s; }
.acc.open .acc-head .car { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.26s ease; }
.acc-panel a { display: block; padding: 11px 8px; text-decoration: none; font-weight: 600; font-size: 15.5px; color: rgba(29, 27, 26, 0.85); }
.acc-panel a:hover { color: var(--red); }
.drawer-link { display: block; padding: 17px 2px; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 800; font-size: 17px; }
.drawer-foot { padding: 18px var(--gutter) 22px; background: var(--cream); border-top: 1px solid var(--line); }
.drawer-foot .btn { width: 100%; margin-bottom: 12px; }
.drawer-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: 20px; color: var(--red); text-decoration: none; margin-bottom: 10px;
}
.drawer-meta { text-align: center; font-size: 13.5px; color: rgba(29, 27, 26, 0.65); }

/* ============================================================
   Hero: charleene pattern. Script eyebrow, serif display,
   blended scrim, dual CTA, badge strip at the fold.
   ============================================================ */
.hero { position: relative; isolation: isolate; color: var(--flour); }
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: clip; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 40%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(20, 16, 14, 0.88) 0%, rgba(20, 16, 14, 0.62) 38%, rgba(20, 16, 14, 0.18) 68%, rgba(20, 16, 14, 0.05) 100%),
    linear-gradient(to top, rgba(20, 16, 14, 0.55) 0%, rgba(20, 16, 14, 0) 30%);
}
.hero .container { display: flex; }
.hero-inner { max-width: 640px; padding-block: clamp(84px, 11vw, 160px); }
.hero-script {
  font-family: var(--f-script); font-size: clamp(24px, 3vw, 34px);
  color: var(--amber); display: block; margin-bottom: 14px;
  transform: rotate(-2deg); transform-origin: left;
}
.hero-kicker {
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255, 253, 248, 0.85); margin: 0 0 10px;
}
.hero-display {
  font-family: var(--f-display); font-size: clamp(40px, 6.2vw, 74px);
  font-weight: 600; line-height: 1.04; letter-spacing: -0.015em; margin: 0 0 20px;
}
.hero-display em { font-style: italic; color: var(--amber); }
.hero-sub { font-size: clamp(16.5px, 1.9vw, 19.5px); line-height: 1.65; color: rgba(255, 253, 248, 0.9); max-width: 56ch; margin: 0 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-micro { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px; font-weight: 600; color: rgba(255, 253, 248, 0.82); }
.hero-micro span { display: inline-flex; align-items: center; gap: 7px; }
.hero-micro svg { color: var(--amber); flex: none; }
.m-only { display: none; }

/* hero entrance + slow zoom */
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero-bg img { animation: heroZoom 9s ease-out both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-script { animation: fadeUp 0.7s ease 0.05s both; }
.hero-kicker { animation: fadeUp 0.7s ease 0.16s both; }
.hero-display { animation: fadeUp 0.7s ease 0.27s both; }
.hero-sub { animation: fadeUp 0.7s ease 0.38s both; }
.hero-ctas { animation: fadeUp 0.7s ease 0.49s both; }
.hero-micro { animation: fadeUp 0.7s ease 0.6s both; }

/* rotating heritage stamp */
.hero-stamp { position: absolute; right: clamp(24px, 5vw, 72px); bottom: 42px; width: 128px; height: 128px; z-index: 1; }
.hero-stamp svg { width: 100%; height: 100%; animation: stampSpin 26s linear infinite; overflow: visible; }
@keyframes stampSpin { to { transform: rotate(360deg); } }
.stamp-text { fill: rgba(255, 253, 248, 0.85); font-family: var(--f-body); font-size: 11.5px; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; }
.stamp-center { fill: var(--amber); font-size: 30px; }

/* badge strip at the fold */
.foldband { background: var(--ink); color: var(--flour); border-top: 3px solid var(--red); }
.foldband .container {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  padding-block: 22px;
}
.fold-item { display: flex; align-items: center; gap: 12px; justify-content: center; text-align: left; }
.fold-item img { height: 46px; width: auto; }
.fold-item .fi-ico {
  width: 44px; height: 44px; flex: none; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18); color: var(--amber);
}
.fold-item b { display: block; font-size: 14.5px; line-height: 1.25; }
.fold-item small { font-size: 12px; color: rgba(255, 253, 248, 0.6); letter-spacing: 0.04em; }

/* ============================================================
   Ticker
   ============================================================ */
.ticker { background: var(--flour); border-bottom: 1px solid var(--line); overflow: clip; }
.ticker-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  padding-block: 16px; animation: tickerSlide 30s linear infinite;
}
.ticker-track span {
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2.2vw, 25px); color: var(--ink); white-space: nowrap;
}
.ticker-track span:nth-child(4n + 3) { color: var(--red); }
.ticker-track i { font-style: normal; color: var(--amber); font-size: 22px; }
@keyframes tickerSlide { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ============================================================
   Product lines
   ============================================================ */
.prod-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 44px; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 4px 16px rgba(29, 27, 26, 0.07);
  display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.pcard-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.pcard:hover .pcard-media img { transform: scale(1.045); }
.pcard-flag {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff; font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px;
}
.pcard-flag.amber { background: var(--amber-deep); }
.prod-grid { counter-reset: card; }
.pcard { counter-increment: card; }
.pcard-body { position: relative; padding: 24px 26px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pcard-body::before {
  content: counter(card, decimal-leading-zero);
  position: absolute; top: 18px; right: 22px;
  font-family: var(--f-display); font-weight: 700; font-size: 30px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.2px rgba(192, 0, 16, 0.35);
}
.pcard-body .h3 { font-size: 22px; }
.pcard-body p { margin: 0; font-size: 15.5px; color: rgba(29, 27, 26, 0.75); }
.pcard-spec { font-size: 13.5px; font-weight: 700; color: var(--amber-deep); letter-spacing: 0.03em; }
.pcard-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--red); text-decoration: none; padding-top: 8px;
}
.pcard-link:hover { gap: 12px; }

/* ============================================================
   Heritage
   ============================================================ */
.heritage { position: relative; }
.heritage-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.heritage-media { position: relative; }
.heritage-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }
.heritage-seal {
  position: absolute; right: -22px; bottom: -26px; width: 148px; height: 148px;
  border-radius: 50%; background: var(--red); color: var(--flour);
  display: grid; place-items: center; text-align: center;
  box-shadow: 0 14px 34px rgba(150, 0, 13, 0.45);
  border: 2px dashed rgba(255, 253, 248, 0.5);
  rotate: -8deg;
}
.heritage-seal .s1 { font-family: var(--f-script); font-size: 22px; line-height: 1; }
.heritage-seal .s2 { font-family: var(--f-display); font-weight: 700; font-size: 34px; line-height: 1.05; }
.heritage-seal .s3 { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.timeline { margin: 30px 0 0; padding: 0; list-style: none; display: grid; gap: 0; }
.timeline li { position: relative; padding: 0 0 26px 34px; }
.timeline li::before {
  content: ""; position: absolute; left: 7px; top: 8px; bottom: -2px; width: 2px;
  background: var(--line);
}
.timeline li:last-child::before { display: none; }
.timeline li::after {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--flour); border: 4px solid var(--red);
}
.timeline b { font-family: var(--f-display); font-size: 20px; display: block; margin-bottom: 3px; }
.timeline p { margin: 0; font-size: 15.5px; color: rgba(29, 27, 26, 0.75); }

/* heritage ghost year + stat band */
.heritage { overflow: clip; }
.heritage::before {
  content: "1888"; position: absolute; top: 40px; right: -30px; z-index: 0;
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  font-size: clamp(180px, 26vw, 380px); line-height: 1; pointer-events: none;
  color: transparent; -webkit-text-stroke: 1.5px rgba(192, 0, 16, 0.07);
}
.heritage .container { position: relative; z-index: 1; }
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: clamp(48px, 7vw, 80px); padding-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--line); text-align: center;
}
.stat b {
  display: block; font-family: var(--f-display); font-weight: 700;
  font-size: clamp(40px, 5.4vw, 64px); line-height: 1; color: var(--red);
  font-variant-numeric: tabular-nums;
}
.stat span { display: block; margin-top: 10px; font-size: 13.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(29, 27, 26, 0.6); }

/* ============================================================
   Frozen vs scratch
   ============================================================ */
.versus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; margin-top: 46px; }
.benefits { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.benefit {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255, 253, 248, 0.05); border: 1px solid var(--line-light);
  border-radius: var(--radius); padding: 18px 20px;
}
.benefit .b-ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; background: var(--red); color: #fff;
  box-shadow: 0 8px 18px rgba(192, 0, 16, 0.35);
}
.benefit b { display: block; font-size: 16.5px; margin-bottom: 2px; }
.benefit p { margin: 0; font-size: 14.5px; color: rgba(255, 253, 248, 0.72); line-height: 1.55; }

.vs-table {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift);
  border: 1px solid var(--line-light); background: var(--char-2);
}
.vs-table table { width: 100%; border-collapse: collapse; font-size: 15px; }
.vs-table th { font-family: var(--f-display); font-size: 17px; padding: 16px 18px; text-align: left; }
.vs-table thead tr { background: rgba(0, 0, 0, 0.28); }
.vs-table th:nth-child(2) { background: var(--red); }
.vs-table td { padding: 13px 18px; border-top: 1px solid var(--line-light); color: rgba(255, 253, 248, 0.85); }
.vs-table td:first-child { font-weight: 600; }
.vs-table td .yes { color: #7fd98a; font-weight: 800; }
.vs-table td .no { color: rgba(255, 253, 248, 0.45); font-weight: 700; }
.vs-photo { position: relative; margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lift); }
.vs-photo img { width: 100%; height: clamp(220px, 32vw, 420px); object-fit: cover; }
.vs-caption {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(20, 16, 14, 0.72); color: var(--flour); backdrop-filter: blur(4px);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(255, 253, 248, 0.2);
}

/* ============================================================
   Pallet calculator
   ============================================================ */
.calc {
  margin-top: 52px; background: var(--flour); color: var(--ink);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  padding: clamp(28px, 4.5vw, 52px);
}
.calc-head { max-width: 640px; }
.calc-head .script-note { color: var(--red); }
.calc-lede { margin: 8px 0 0; color: rgba(29, 27, 26, 0.7); font-size: 16px; }
.calc-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-top: 34px; align-items: start; }
.calc-field { margin-bottom: 26px; }
.calc-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px;
}
.calc-field output { font-family: var(--f-display); font-size: 26px; font-weight: 700; color: var(--red); letter-spacing: 0; text-transform: none; }
.calc-field input[type="range"] { width: 100%; accent-color: var(--red); height: 34px; }
.calc-field select {
  width: 100%; font-family: var(--f-body); font-size: 16px; font-weight: 600; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
}
.calc-out { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 28px; }
.co-row { display: flex; align-items: baseline; gap: 14px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.co-row:last-of-type { border-bottom: 0; }
.co-row b { font-family: var(--f-display); font-weight: 700; font-size: 34px; color: var(--ink); min-width: 96px; text-align: right; font-variant-numeric: tabular-nums; }
.co-row span { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(29, 27, 26, 0.6); }
.co-note { font-size: 14.5px; font-weight: 600; color: var(--red-deep); background: rgba(192, 0, 16, 0.07); border-radius: 10px; padding: 12px 14px; margin: 14px 0 18px; }
.calc-out .btn { width: 100%; }
.calc-fine { margin: 22px 0 0; font-size: 12.5px; color: rgba(29, 27, 26, 0.55); }

/* ============================================================
   Private label process
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px 28px;
  box-shadow: 0 4px 16px rgba(29, 27, 26, 0.06);
}
.step-num {
  font-family: var(--f-display); font-weight: 700; font-size: 52px; line-height: 1;
  color: var(--cream-2); -webkit-text-stroke: 1.5px var(--red);
  display: block; margin-bottom: 14px;
}
.step b { font-family: var(--f-display); font-size: 20px; display: block; margin-bottom: 8px; }
.step p { margin: 0; font-size: 14.5px; color: rgba(29, 27, 26, 0.72); }

/* ============================================================
   Industries
   ============================================================ */
.ind-strip {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px;
}
.ind {
  background: var(--flour); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center; transition: transform 0.18s, box-shadow 0.18s;
}
.ind:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ind-ico {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 16px;
  display: grid; place-items: center; background: var(--cream-2); color: var(--red);
}
.ind b { font-family: var(--f-display); font-size: 18px; display: block; margin-bottom: 6px; }
.ind p { margin: 0; font-size: 13.5px; color: rgba(29, 27, 26, 0.68); line-height: 1.5; }

/* ============================================================
   Testimonial
   ============================================================ */
.quote-wrap { max-width: 900px; margin-inline: auto; text-align: center; }
.quote-mark { font-family: var(--f-display); font-size: 110px; line-height: 0.6; color: var(--red); display: block; margin-bottom: 26px; }
.quote {
  font-family: var(--f-display); font-size: clamp(22px, 3vw, 32px);
  font-weight: 500; font-style: italic; line-height: 1.4; margin: 0 0 28px;
}
.quote-by b { display: block; font-size: 16px; }
.quote-by small { font-size: 13.5px; color: rgba(29, 27, 26, 0.6); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }

/* ============================================================
   Ordering band
   ============================================================ */
.order-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.order-card {
  background: rgba(255, 253, 248, 0.06); border: 1px solid var(--line-light);
  border-radius: var(--radius-lg); padding: 30px 28px;
}
.order-card .o-ico {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
  display: grid; place-items: center; background: var(--red); color: #fff;
}
.order-card b { font-family: var(--f-display); font-size: 21px; display: block; margin-bottom: 8px; }
.order-card p { margin: 0; font-size: 15px; color: rgba(255, 253, 248, 0.75); }
.order-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 860px; margin-top: 40px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: 0; padding: 20px 24px; cursor: pointer; text-align: left;
  font-family: var(--f-display); font-weight: 600; font-size: 18.5px; color: var(--ink);
}
.faq-head:hover { color: var(--red); }
.faq-x { position: relative; flex: none; width: 22px; height: 22px; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--red); border-radius: 2px;
  transition: transform 0.22s ease;
}
.faq-x::before { width: 14px; height: 2.5px; }
.faq-x::after { width: 2.5px; height: 14px; }
.faq-item.open .faq-x::after { transform: rotate(90deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.26s ease; }
.faq-panel p { margin: 0; padding: 0 24px 22px; font-size: 15.5px; line-height: 1.65; color: rgba(29, 27, 26, 0.75); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(36px, 5vw, 64px); align-items: start; margin-top: 46px; }
.form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: 13.5px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--flour);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red); }
.form .btn { width: 100%; }
.form-note { font-size: 13px; color: rgba(29, 27, 26, 0.55); text-align: center; margin: 12px 0 0; }

.nap-card { display: grid; gap: 22px; }
.nap {
  background: var(--char); color: var(--flour); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-lift);
}
.nap b.np { font-family: var(--f-display); font-size: 22px; display: block; margin-bottom: 16px; }
.nap-row { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; }
.nap-row svg { flex: none; color: var(--amber); margin-top: 3px; }
.nap-row a { text-decoration: none; font-weight: 700; }
.nap-row a:hover { color: var(--amber); }
.nap-row small { display: block; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 253, 248, 0.55); font-weight: 800; margin-bottom: 2px; }
.spec-card {
  background: var(--cream-2); border: 1px dashed rgba(176, 106, 26, 0.55); border-radius: var(--radius-lg);
  padding: 26px 28px; display: flex; gap: 18px; align-items: center;
}
.spec-card .o-ico { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--amber-deep); color: #fff; }
.spec-card b { display: block; font-family: var(--f-display); font-size: 19px; }
.spec-card p { margin: 2px 0 0; font-size: 14px; color: rgba(29, 27, 26, 0.7); }
.spec-card a { font-weight: 800; color: var(--red); }

/* ============================================================
   Footer
   ============================================================ */
.exit-cta { background: var(--red); color: #fff; }
.exit-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: 44px; flex-wrap: wrap; }
.exit-cta .h2 { font-size: clamp(26px, 3.4vw, 40px); }
.exit-cta .script-note { color: rgba(255, 253, 248, 0.9); }
.exit-cta .btn-white { color: var(--red); }

.footer { background: var(--ink); color: rgba(255, 253, 248, 0.85); font-size: 15px; }
.footer-trust { border-bottom: 1px solid var(--line-light); }
.footer-trust .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; padding-block: 24px; font-size: 13.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255, 253, 248, 0.7); }
.footer-trust img { height: 46px; width: auto; }
.footer-main .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-block: 56px; }
.footer h4 { font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--flour); margin-bottom: 18px; font-family: var(--f-body); font-weight: 800; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--amber); }
.footer-brand img { height: 96px; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; line-height: 1.65; color: rgba(255, 253, 248, 0.65); max-width: 34ch; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255, 253, 248, 0.08); border: 1px solid var(--line-light);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.coverage { border-top: 1px solid var(--line-light); }
.coverage .container { padding-block: 22px; font-size: 13.5px; color: rgba(255, 253, 248, 0.55); text-align: center; line-height: 1.7; }
.legal { border-top: 1px solid var(--line-light); }
.legal .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding-block: 20px; font-size: 13px; color: rgba(255, 253, 248, 0.5); }

.to-top {
  position: fixed; right: 20px; bottom: 92px; z-index: 55;
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--ink); color: var(--flour); box-shadow: var(--shadow-lift);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--red); }

/* mobile sticky CTA bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  display: none; grid-template-columns: 1fr 1.3fr 1fr;
  background: var(--ink); border-top: 2px solid var(--red);
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  gap: 8px;
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase;
  text-decoration: none; color: var(--flour); padding: 13px 4px; border-radius: 9px;
  white-space: nowrap;
}
.mobile-bar .mb-call { background: rgba(255, 253, 248, 0.1); }
.mobile-bar .mb-quote { background: var(--red); }
.mobile-bar .mb-spec { background: rgba(255, 253, 248, 0.1); }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img, .hero-script, .hero-kicker, .hero-display, .hero-sub, .hero-ctas, .hero-micro { animation: none; }
  .hero-stamp svg, .ticker-track { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: flex; justify-self: start; }
  .header-call {
    display: grid; place-items: center; justify-self: end;
    width: 46px; height: 46px; border: 1px solid var(--line);
    border-radius: 10px; color: var(--red); background: var(--flour);
  }
  .brand-seal { width: 92px; height: 92px; padding: 9px; margin-top: 10px; margin-bottom: -30px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .ind-strip { grid-template-columns: repeat(3, 1fr); }
  .foldband .container { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
  .footer-main .container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; --section: clamp(52px, 10vw, 72px); }
  body { padding-bottom: 74px; }
  .utility .utility-left .u-hide { display: none; }
  .utility .container { justify-content: center; }
  .utility-right .u-mail { display: none; }
  .brand-seal { width: 80px; height: 80px; padding: 8px; margin-top: 8px; margin-bottom: -22px; }

  /* photo-forward mobile hero: image breathes on top, copy anchors to a
     bottom scrim, compact side-by-side CTAs */
  .d-only { display: none; }
  .m-only { display: inline; }
  .hero-bg img { object-position: 72% 18%; }
  .hero::before {
    background:
      linear-gradient(to top, rgba(20, 16, 14, 0.93) 0%, rgba(20, 16, 14, 0.78) 34%, rgba(20, 16, 14, 0.28) 58%, rgba(20, 16, 14, 0.02) 78%),
      linear-gradient(100deg, rgba(20, 16, 14, 0.3) 0%, rgba(20, 16, 14, 0) 60%);
  }
  .hero-inner { padding-block: min(58vw, 320px) 56px; max-width: none; }
  .hero-script { font-size: 21px; margin-bottom: 10px; }
  .hero-display { font-size: clamp(36px, 10.5vw, 44px); margin-bottom: 14px; }
  .hero-sub { font-size: 16px; margin-bottom: 22px; }
  .hero-ctas { flex-wrap: nowrap; gap: 10px; margin-bottom: 18px; }
  .hero-ctas .btn { flex: 1; padding: 16px 8px; font-size: 13px; letter-spacing: 0.04em; white-space: nowrap; }
  .hero-micro { font-size: 12.5px; gap: 6px 14px; }
  .hero-kicker { font-size: 11.5px; letter-spacing: 0.14em; white-space: nowrap; }
  .hero-kicker .k-tail { display: none; }

  .foldband .container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline-start: var(--gutter); padding-block: 18px; gap: 22px; scrollbar-width: none; }
  .foldband .fold-item { scroll-snap-align: start; flex: none; }

  .prod-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .prod-grid { grid-template-columns: 1fr; gap: 20px; }
  .versus-grid { grid-template-columns: 1fr; }
  .heritage-grid { grid-template-columns: 1fr; }
  .heritage-seal { right: 10px; bottom: -22px; width: 120px; height: 120px; }
  .heritage-seal .s2 { font-size: 27px; }
  .steps { grid-template-columns: 1fr; }

  .ind-strip { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline-start: var(--gutter); gap: 14px; padding-bottom: 8px; margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); scrollbar-width: none; }
  .ind { flex: 0 0 240px; scroll-snap-align: start; }

  .order-grid { grid-template-columns: 1fr; }
  .hero-stamp { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .calc-grid { grid-template-columns: 1fr; }
  .co-row b { min-width: 74px; font-size: 28px; }
  .heritage::before { font-size: 150px; top: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main .container { grid-template-columns: 1fr; gap: 32px; }
  .exit-cta .container { flex-direction: column; align-items: flex-start; }
  .mobile-bar { display: grid; }
  .to-top { bottom: 150px; right: 14px; }
}

/* ============================================================
   Inner pages
   ============================================================ */
.page-hero { position: relative; isolation: isolate; color: var(--flour); }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; overflow: clip; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(20, 16, 14, 0.9) 0%, rgba(20, 16, 14, 0.66) 45%, rgba(20, 16, 14, 0.28) 100%),
    linear-gradient(to top, rgba(20, 16, 14, 0.5) 0%, rgba(20, 16, 14, 0) 40%);
}
.page-hero .container { padding-block: clamp(56px, 8vw, 100px) clamp(48px, 7vw, 84px); }
.page-hero-inner { max-width: 720px; }
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 253, 248, 0.65); margin-bottom: 16px;
}
.crumbs a { color: rgba(255, 253, 248, 0.85); text-decoration: none; }
.crumbs a:hover { color: var(--amber); }
.crumbs .sep { color: var(--amber); }
.page-hero h1 { font-size: clamp(34px, 4.8vw, 58px); font-weight: 600; letter-spacing: -0.01em; margin-bottom: 14px; }
.page-hero .lede { color: rgba(255, 253, 248, 0.88); }
.page-hero .hero-ctas { margin-top: 26px; margin-bottom: 0; }
.page-hero .script-note { color: var(--amber); display: block; margin-bottom: 6px; transform: rotate(-1.5deg); transform-origin: left; }

/* intro split */
.intro-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.intro-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); width: 100%; object-fit: cover; }

/* light spec table */
.table-scroll { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; margin-top: 40px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 640px; }
.spec-table th {
  font-family: var(--f-body); font-size: 12.5px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: left; padding: 16px 18px;
  background: var(--ink); color: var(--flour);
}
.spec-table td { padding: 13px 18px; border-top: 1px solid var(--line); }
.spec-table td:first-child { font-weight: 700; }
.spec-table tbody tr:hover { background: var(--cream); }
.spec-table .code { font-variant-numeric: tabular-nums; color: var(--red); font-weight: 800; }
.spec-group td {
  background: var(--cream-2); font-family: var(--f-display); font-size: 17px; font-weight: 600;
  padding: 12px 18px;
}
.table-note { font-size: 13.5px; color: rgba(29, 27, 26, 0.6); margin-top: 14px; }

/* light benefit cards */
.lcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.lcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: 0 4px 16px rgba(29, 27, 26, 0.06);
}
.lcard .o-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--red); color: #fff; margin-bottom: 18px; }
.lcard b { font-family: var(--f-display); font-size: 21px; display: block; margin-bottom: 8px; }
.lcard p { margin: 0; font-size: 15px; color: rgba(29, 27, 26, 0.72); }

/* cross-sell strip */
.xsell { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.xcard {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px 14px 14px; transition: transform 0.16s, box-shadow 0.16s;
}
.xcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.xcard img { width: 72px; height: 56px; object-fit: cover; border-radius: 9px; flex: none; }
.xcard b { font-family: var(--f-display); font-size: 16.5px; display: block; line-height: 1.2; }
.xcard small { font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); }

/* industries page rows */
.ind-row {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; margin-top: 22px; box-shadow: 0 4px 16px rgba(29, 27, 26, 0.05);
}
.ind-row .ind-ico { margin: 0; }
.ind-row h3 { font-size: 23px; margin-bottom: 8px; }
.ind-row p { margin: 0 0 12px; color: rgba(29, 27, 26, 0.75); }
.ind-row ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.ind-row li {
  font-size: 13px; font-weight: 700; background: var(--cream-2);
  border-radius: 999px; padding: 7px 14px; color: rgba(29, 27, 26, 0.8);
}

/* heritage page */
.big-quote {
  border-left: 4px solid var(--red); padding: 6px 0 6px 26px; margin: 36px 0;
  font-family: var(--f-display); font-style: italic; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.45;
}
.era { display: grid; grid-template-columns: 150px 1fr; gap: clamp(20px, 4vw, 48px); padding: 34px 0; border-top: 1px solid var(--line); }
.era-year { font-family: var(--f-display); font-weight: 700; font-size: clamp(30px, 3.6vw, 44px); color: var(--red); line-height: 1; }
.era h3 { font-size: 22px; margin-bottom: 8px; }
.era p { margin: 0; color: rgba(29, 27, 26, 0.75); }

@media (max-width: 900px) {
  .lcards, .xsell { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .intro-split { grid-template-columns: 1fr; }
  .lcards, .xsell { grid-template-columns: 1fr; }
  .ind-row { grid-template-columns: 1fr; }
  .era { grid-template-columns: 1fr; gap: 8px; }
  .page-hero .hero-ctas { flex-wrap: wrap; }
  .page-hero .hero-ctas .btn { flex: none; width: 100%; }
}
