/* ============================================================================
 * Candymonium — site.css
 * Version: 1.27
 * Updated: 2026-04-25
 * Notes: reorganized, duplicate rules removed, one-line rule style, sample callout + CTA process fixed, footer decorative HR placed inside footer.
 * ============================================================================ */

:root {
  --cream: #F5EFE6;
  --cream-light: #FAF6EE;
  --cream-warm: #EFE5D2;
  --cream-deep: #E5D8C2;
  --chocolate: #1F100A;
  --chocolate-mid: #3A2418;
  --chocolate-soft: #4A3528;
  --gold: #B8924B;
  --gold-light: #D4AC68;
  --gold-deep: #8C6D2C;
  --text: #2A1810;
  --text-muted: #7A6552;
  --text-soft: #998273;
  --serif-brand: 'Marcellus SC', Georgia, serif;
  --serif: 'Marcellus', Georgia, serif;
  --serif-accent: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --container: 1440px;
}

/* ---------- reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); font-size: 17px; line-height: 1.68; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; text-transform: none; letter-spacing: 0.02em; }
.amp { font-family: var(--serif-accent) !important; font-weight: 400; letter-spacing: 0; font-style: normal; line-height: 1; }
.skip { position: absolute; top: -40px; left: 8px; background: var(--chocolate); color: var(--cream-light); padding: 8px 14px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; z-index: 1000; transition: top 0.2s; }
.skip:focus { top: 8px; }
.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; }
.icon-line { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
a:focus-visible, button:focus-visible, .btn:focus-visible, .nav-link:focus-visible, .nav-quote:focus-visible, .cat-card:focus-visible, .mobile-sticky-quote:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ---------- navigation ---------- */
.nav { background: var(--cream); border-bottom: 1px solid rgba(31,16,10,0.06); position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: var(--container); margin: 0 auto; padding: 9px 22px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo { display: flex; flex-direction: row; align-items: center; gap: 14px; }
.logo-img { height: 48px; width: 48px; object-fit: contain; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; justify-content: center; min-height: 48px; }
.logo-mark { font-family: var(--serif-brand); font-weight: 700; font-size: 32px; letter-spacing: 0.05em; color: var(--chocolate); text-transform: none; font-feature-settings: "ss01"; font-variation-settings: "opsz" 144; line-height: 48px; }
.logo-tag { font-size: 10px; letter-spacing: 0.20em; color: var(--text-muted); font-weight: 500; text-transform: uppercase; line-height: 1.2; }
.nav-links { display: flex; gap: 18px; margin-left: auto; font-size: 16px; letter-spacing: 0.08em; font-weight: 600; text-transform: uppercase; color: var(--chocolate); align-items: center; }
.nav-link { position: relative; padding-bottom: 2px; transition: color 0.2s; display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 0; font: inherit; color: inherit; text-transform: inherit; letter-spacing: inherit; cursor: pointer; }
.nav-link:hover { color: var(--gold-deep); }
.nav-link::after { content: ""; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.nav-link:hover::after, .nav-link[aria-current="page"]::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--gold-deep); }
.nav-item { position: relative; }
.nav-caret { font-size: 10px; line-height: 1; transition: transform 0.25s; color: var(--gold); }
.nav-has-menu:hover .nav-caret, .nav-has-menu:focus-within .nav-caret, .nav-has-menu.is-open .nav-caret { transform: rotate(180deg); }
.nav-menu { position: absolute; top: calc(100% + 14px); right: 0; min-width: 240px; background: var(--cream-light); border: 1px solid rgba(31,16,10,0.06); box-shadow: 0 12px 28px rgba(31,16,10,0.10); padding: 10px 0; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s; z-index: 50; }
.nav-has-menu:hover .nav-menu, .nav-has-menu:focus-within .nav-menu, .nav-has-menu.is-open .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s; }
.nav-menu a { padding: 11px 22px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--chocolate); white-space: nowrap; transition: background 0.2s, color 0.2s, padding-left 0.2s; position: relative; }
.nav-menu a:hover { background: var(--cream-warm); color: var(--gold-deep); padding-left: 26px; }
.nav-menu a[aria-current="page"] { color: var(--gold-deep); background: var(--cream-warm); }
.nav-menu a::after { display: none; }
.nav-link-cta { display: none; }
.nav-quote { font-size: 14px; letter-spacing: 0.08em; font-weight: 700; text-transform: uppercase; color: var(--cream-light); display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; background: var(--gold); border: 1px solid var(--gold); transition: background 0.25s, color 0.25s, border-color 0.25s; white-space: nowrap; }
.nav-quote span { transition: transform 0.25s; }
.nav-quote:hover { color: var(--cream-light); background: var(--gold-deep); border-color: var(--gold-deep); }
.nav-toggle { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.nav-burger { display: none; width: 28px; height: 22px; position: relative; cursor: pointer; flex-shrink: 0; }
.nav-burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--chocolate); border-radius: 1px; transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease; }
.nav-burger span:nth-child(1) { top: 2px; }
.nav-burger span:nth-child(2) { top: 10px; }
.nav-burger span:nth-child(3) { top: 18px; }
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { top: 10px; transform: rotate(-45deg); }
.nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; padding: 11px 16px; border: 1px solid var(--chocolate); background: var(--chocolate); color: var(--cream); transition: all 0.25s; white-space: nowrap; }
.btn:hover { background: transparent; color: var(--chocolate); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--cream-light); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--cream-light); }
.btn-ghost { background: transparent; color: var(--chocolate); }
.btn-ghost:hover { background: var(--chocolate); color: var(--cream-light); }
.btn-light { background: var(--cream-light); border-color: var(--cream-light); color: var(--chocolate); }
.btn-light:hover { background: transparent; color: var(--cream-light); border-color: var(--cream-light); }

/* ---------- hero ---------- */
.hero { background: var(--cream); position: relative; overflow: hidden; }
.hero-inner { max-width: var(--container); min-height: clamp(370px, 33vw, 505px); margin: 0 auto; position: relative; display: flex; align-items: center; }
.hero-image { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(to right, rgba(250,246,238,0.93) 0%, rgba(250,246,238,0.82) 18%, rgba(250,246,238,0.58) 32%, rgba(250,246,238,0.22) 48%, rgba(250,246,238,0.04) 66%), url("/images/hero-2060x800.jpg"); background-size: cover; background-position: center center; background-repeat: no-repeat; }
.hero-copy { width: min(455px, 42%); min-width: 0; padding: 24px 20px 24px 24px; position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.eyebrow-sub { font-size: 15px; color: var(--chocolate); line-height: 1.5; margin-bottom: 14px; font-style: italic; }
.hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 3.4vw, 58px); line-height: 0.98; letter-spacing: 0.01em; text-transform: none; color: var(--chocolate); margin-bottom: 8px; text-wrap: balance; }
.hero-subtitle { font-family: var(--serif); font-weight: 400; font-size: clamp(16px, 1.15vw, 20px); line-height: 1.25; letter-spacing: 0.08em; color: var(--chocolate); margin-bottom: 11px; text-wrap: balance; }
.hero p.lead { font-size: 18px; font-weight: 500; line-height: 1.65; color: var(--chocolate); margin-bottom: 16px; max-width: 390px; }
.hero-ctas { display: flex; justify-content: flex-start; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
margin: 0.5rem 0 1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.hero-note span.note-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold, #C49B50);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ---------- intro, trust strip & categories ---------- */
.category-intro { background: var(--cream-light); padding: 18px 16px 8px; }
.category-intro-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.category-intro h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2vw, 30px); letter-spacing: 0.02em; color: var(--chocolate); margin-bottom: 10px; text-wrap: balance; }
.category-intro p { font-size: 18px; line-height: 1.7; color: var(--text-muted); }
.trust-strip { background: var(--cream-light); padding: 8px 16px 12px; }
.trust-strip-inner { max-width: calc(var(--container) - 32px); margin: 0 auto; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.trust-strip span { display: inline-flex; align-items: center; justify-content: center; min-height: 32px; padding: 7px 11px; border: 1px solid rgba(31,16,10,0.08); background: var(--cream); color: var(--chocolate); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.categories { background: var(--cream-light); padding: 14px 16px 0; }
.cat-grid { max-width: calc(var(--container) - 32px); margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.cat-card { background: var(--cream-light); border: 1px solid rgba(31,16,10,0.08); padding: 0 0 10px 0; display: flex; flex-direction: column; transition: background 0.3s, transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer; min-height: 194px; position: relative; box-shadow: 0 0 0 rgba(31,16,10,0); }
.cat-card:hover, .cat-card:focus-visible { background: var(--cream-warm); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31,16,10,0.10); }
.cat-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.cat-img { aspect-ratio: 1.58/1; overflow: hidden; margin-bottom: 10px; }
.cat-img svg, .cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.cat-card:hover .cat-img svg, .cat-card:hover .cat-img img { transform: scale(1.04); }
.cat-title-row { display: flex; align-items: center; gap: 8px; margin: 0 14px 7px; }
.cat-icon { width: 17px; height: 17px; margin: 0; color: var(--gold-deep); flex: 0 0 17px; }
.cat-title { font-family: var(--serif); font-weight: 400; font-size: 16px; letter-spacing: 0.07em; text-transform: none; color: var(--chocolate); margin: 0; line-height: 1.2; }
.cat-desc { font-size: 15px; color: var(--text-muted); line-height: 1.5; margin: 0 14px 9px; }
.cat-link { font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; font-weight: 700; color: var(--chocolate); margin: auto 14px 0 auto; display: inline-flex; align-items: center; justify-content: flex-end; gap: 4px; transition: color 0.25s, gap 0.25s; }
.cat-link:hover { color: var(--gold-deep); gap: 10px; }

/* ---------- value strip ---------- */
.values { background: var(--cream-warm); padding: 10px 0; border-top: 1px solid rgba(31,16,10,0.05); }
.val-grid { max-width: var(--container); margin: 0 auto; padding: 0 16px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.val-item { display: flex; align-items: flex-start; gap: 7px; padding: 2px 6px; }
.val-icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold-deep); margin-top: 1px; }
.val-text { display: flex; flex-direction: column; gap: 2px; }
.val-title { font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; font-weight: 700; color: var(--chocolate); }
.val-sub { font-size: 15px; line-height: 1.5; color: var(--text-muted); }

/* ---------- how it works ---------- */
/* ---- Testimonials ---- */
.testimonials { background: var(--cream-light); padding: 80px 40px 90px; border-top: 1px solid rgba(31,16,10,0.06); border-bottom: 1px solid rgba(31,16,10,0.06); }
.testi-inner { max-width: var(--container); margin: 0 auto; }
.testi-head { text-align: center; margin-bottom: 56px; }
.testi-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.8vw, 42px); color: var(--chocolate); margin-top: 12px; letter-spacing: 0.01em; text-wrap: balance; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { background: var(--cream); border: 1px solid rgba(31,16,10,0.08); padding: 36px 32px 28px; display: flex; flex-direction: column; gap: 20px; margin: 0; position: relative; }
.testi-mark { width: 28px; height: 21px; fill: var(--gold); opacity: 0.55; flex-shrink: 0; }
.testi-card blockquote { flex: 1; margin: 0; }
.testi-card blockquote p { font-family: var(--serif-accent); font-size: clamp(16px, 1.2vw, 18px); line-height: 1.75; color: var(--chocolate-soft); font-weight: 400; margin: 0; }
.testi-card figcaption { display: flex; flex-direction: column; gap: 3px; padding-top: 16px; border-top: 1px solid rgba(31,16,10,0.07); }
.testi-name { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--chocolate); }
.testi-company { font-size: 14px; color: var(--text-muted); }
.testi-tag { display: inline-block; margin-top: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); background: rgba(184,146,75,0.10); padding: 3px 8px; align-self: flex-start; }

.how { background: var(--cream); padding: 100px 40px 110px; }
.how-inner { max-width: var(--container); margin: 0 auto; }
.how-head { text-align: center; margin-bottom: 72px; }
.how-head h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 4vw, 58px); line-height: 1; letter-spacing: -0.01em; text-transform: none; color: var(--chocolate); margin-top: 14px; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 56px; position: relative; }
.how-grid::before { content: ""; position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 1px; background: var(--gold); opacity: 0.5; z-index: 0; }
.how-step { position: relative; z-index: 1; text-align: center; }
.how-num { width: 54px; height: 54px; border-radius: 50%; background: var(--cream); border: 1.5px solid var(--gold); margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--gold-deep); }
.how-step h4 { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--chocolate); margin-bottom: 10px; }
.how-step p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

/* ---------- pricing note & sample box callout ---------- */
.pricing-note { background: var(--cream); padding: 52px 20px; border-top: 1px solid rgba(31,16,10,0.06); }
.pricing-note-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.pricing-note h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 2.8vw, 42px); line-height: 1.08; letter-spacing: 0.01em; text-transform: none; color: var(--chocolate); margin: 12px 0 16px; }
.pricing-note p { font-size: 18px; line-height: 1.7; color: var(--text-muted); max-width: 680px; margin: 0 auto; }
.sample-callout { max-width: calc(var(--container) - 32px); margin: 0 auto 16px; padding: 28px; background: var(--cream-warm); border: 1px solid rgba(31,16,10,0.12); display: grid; grid-template-columns: minmax(390px, 46%) minmax(0, 1fr); align-items: center; gap: 30px; }
.sample-callout-image { overflow: hidden; border: 1px solid rgba(31,16,10,0.14); background: var(--cream-deep); box-shadow: 0 14px 34px rgba(31,16,10,0.10); }
.sample-callout-image img { display: block; width: 100%; height: 300px; object-fit: cover; object-position: center center; }
.sample-callout-copy { min-width: 0; max-width: 720px; }
.sample-callout-copy .eyebrow { display: block; margin-bottom: 8px; }
.sample-callout h3 { margin: 0 0 10px; font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 2.7vw, 42px); line-height: 1.05; text-transform: none; color: var(--chocolate); }
.sample-callout p { max-width: 720px; margin: 0 0 20px; font-size: 18px; line-height: 1.7; color: var(--text-muted); }
.sample-callout .btn { justify-self: start; }

/* ---------- FAQ ---------- */
.faq-section { background: linear-gradient(180deg, var(--cream-light), var(--cream)); padding: 80px 40px 90px; border-top: 1px solid rgba(31,16,10,0.06); }
.faq-wrap { max-width: 920px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 0; }
.faq-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.8vw, 42px); color: var(--chocolate); margin-top: 12px; letter-spacing: 0.01em; text-wrap: balance; }
.faq-list { display: grid; gap: 14px; margin-top: 28px; }
.faq-item { background: rgba(255,255,255,.62); border: 1px solid rgba(58,36,24,.14); border-radius: 22px; box-shadow: 0 18px 50px rgba(31,16,10,.06); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; position: relative; padding: 22px 58px 22px 24px; font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.25; color: var(--chocolate); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(184,146,75,.16); color: var(--gold-deep); font-family: var(--sans); font-size: 1.3rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-answer { padding: 0 24px 22px; color: var(--text-muted); }
.faq-answer p { margin: 0; max-width: 760px; line-height: 1.75; }
.faq-item[open] summary { padding-bottom: 12px; }
.faq-item summary:focus-visible { outline: 3px solid rgba(184,146,75,.42); outline-offset: 4px; border-radius: 18px; }
@media (max-width: 640px) { .faq-item summary { padding: 19px 52px 19px 20px; } .faq-answer { padding: 0 20px 20px; } }

/* ---------- CTA band + showcase ---------- */
.cta-band { background: var(--chocolate); display: grid; grid-template-columns: minmax(430px, 38%) minmax(0, 1fr); gap: 0; align-items: stretch; }
.cta-copy { padding: 42px 38px; display: flex; flex-direction: column; justify-content: center; background: var(--chocolate); }
.cta-copy .eyebrow { color: var(--gold-light); }
.cta-copy h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px, 3vw, 48px); line-height: 1.03; letter-spacing: -0.005em; text-transform: none; color: var(--cream-light); margin-bottom: 18px; }
.cta-copy p { font-size: 17px; line-height: 1.65; color: rgba(245,239,230,0.78); margin-bottom: 0; max-width: 470px; }
.cta-steps { list-style: none; margin: 24px 0 28px; padding: 0; display: grid; gap: 14px; max-width: 520px; }
.cta-steps li { position: relative; padding-left: 26px; color: rgba(250,246,238,0.86); }
.cta-steps li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; border-radius: 999px; background: var(--gold); box-shadow: 0 0 0 4px rgba(184,146,75,0.14); }
.cta-steps strong { display: block; margin-bottom: 3px; font-family: var(--serif); font-size: 19px; line-height: 1.2; font-weight: 400; color: var(--cream-light); }
.cta-steps span { display: block; font-size: 15px; line-height: 1.55; color: rgba(250,246,238,0.72); }
.cta-showcase { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; min-height: 100%; }
.cta-showcase .show-img { aspect-ratio: auto; min-height: 390px; overflow: hidden; position: relative; }
.cta-showcase svg, .cta-showcase img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s, filter 0.5s; }
.cta-showcase .show-img:hover img, .cta-showcase .show-img:hover svg { transform: scale(1.05); filter: brightness(1.1); }

/* ---------- legacy sample section ---------- */
.sample { background: var(--cream-warm); padding: 90px 40px; text-align: center; }
.sample-inner { max-width: 720px; margin: 0 auto; }
.sample h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 4.2vw, 62px); line-height: 1; letter-spacing: -0.01em; text-transform: none; color: var(--chocolate); margin: 14px 0 22px; }
.sample p { font-size: 18px; line-height: 1.75; color: var(--text-muted); margin-bottom: 36px; }
.sample-divider { width: 50px; height: 1px; background: var(--gold); margin: 0 auto 30px; }

/* ---------- footer ---------- */
.decorative-hr { position: relative; height: 88px; margin: 0 -40px; padding-top: 12px; background: var(--chocolate); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.decorative-hr::before { content: ""; position: absolute; left: max(24px, calc((100vw - var(--container)) / 2 + 24px)); right: max(24px, calc((100vw - var(--container)) / 2 + 24px)); top: calc(50% + 6px); height: 2px; transform: translateY(-50%); background: linear-gradient(to right, transparent, rgba(184,146,75,0.75), rgba(212,172,104,1), rgba(184,146,75,0.75), transparent); }
.decorative-hr span { position: relative; top: 6px; z-index: 1; width: 40px; height: 40px; border-radius: 999px; background: var(--chocolate); border: 2px solid rgba(212,172,104,0.9); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 9px var(--chocolate); }
.decorative-hr span::before { content: "✦"; font-family: Georgia, serif; font-size: 18px; line-height: 1; color: var(--gold-light); }
.decorative-hr span::after { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(212,172,104,0.42); border-radius: 999px; }
.foot { background: var(--chocolate); color: rgba(245,239,230,0.72); padding: 0 40px 30px; }
.foot-inner { max-width: var(--container); margin: 0 auto; padding-top: 50px; }
.foot-newsletter { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 38px 0; border-top: 1px solid rgba(212,172,104,0.15); border-bottom: 1px solid rgba(212,172,104,0.15); margin-bottom: 50px; flex-wrap: wrap; }
.foot-nl-copy { flex: 1; min-width: 220px; }
.foot-nl-label { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--cream-light); margin-bottom: 5px; letter-spacing: 0.01em; }
.foot-nl-sub { font-size: 15px; color: rgba(245,239,230,0.62); line-height: 1.55; }
.foot-nl-form { display: flex; gap: 0; flex: 1; max-width: 460px; min-width: 260px; position: relative; }
.foot-nl-form input[type="email"] { flex: 1; padding: 11px 16px; font-family: var(--sans); font-size: 15px; background: rgba(255,255,255,0.07); border: 1px solid rgba(212,172,104,0.30); border-right: none; color: var(--cream-light); outline: none; min-width: 0; }
.foot-nl-form input[type="email"]::placeholder { color: rgba(245,239,230,0.38); }
.foot-nl-form input[type="email"]:focus { border-color: var(--gold); background: rgba(255,255,255,0.11); }
.foot-nl-form button { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 11px 18px; background: var(--gold); border: 1px solid var(--gold); color: var(--cream-light); cursor: pointer; white-space: nowrap; transition: background 0.2s, border-color 0.2s; }
.foot-nl-form button:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(212,172,104,0.15); }
.foot-brand-mark { font-family: 'Marcellus SC', Georgia, serif !important; font-weight: 400; font-size: 31px; line-height: 1.05; letter-spacing: 0.06em; color: var(--cream-light); text-transform: none; margin-bottom: 8px; }
.foot-brand-tag { font-size: 13px; line-height: 1.4; letter-spacing: 0.18em; color: var(--gold-light); margin-bottom: 18px; text-transform: uppercase; }
.foot-brand-blurb { font-size: 16px; line-height: 1.65; max-width: 340px; margin-bottom: 14px; }
.foot-contact { font-size: 16px; margin-bottom: 16px; }
.foot-contact a { color: var(--gold-light); transition: color 0.2s; }
.foot-contact a:hover { color: var(--cream-light); }
.foot-social { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 4px; }
.foot-social a { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: rgba(250,246,238,0.1); border: 1px solid rgba(250,246,238,0.18); transition: transform 0.2s, background 0.2s, border-color 0.2s; }
.foot-social a:hover { transform: translateY(-2px); background: rgba(250,246,238,0.16); border-color: rgba(250,246,238,0.34); }
.foot-social svg { width: 28px; height: 28px; display: block; }
.foot-col h3, .foot-col h4, .foot-col h5 { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 16px; transition: color 0.2s; }
.foot-col a:hover { color: var(--cream-light); }
.foot-bottom { padding-top: 26px; display: flex; justify-content: space-between; align-items: center; font-size: 15px; line-height: 1.55; letter-spacing: 0.055em; color: rgba(212,172,104,0.82); }
.mobile-sticky-quote { display: none; }

/* ---------- dev viewport indicator ---------- */
#vp-indicator { position: fixed; bottom: 16px; right: 16px; z-index: 9999; background: rgba(31,16,10,0.92); color: var(--cream-light); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; font-weight: 500; letter-spacing: 0.04em; padding: 8px 14px; border-radius: 999px; box-shadow: 0 4px 14px rgba(0,0,0,0.25); pointer-events: none; display: flex; align-items: center; gap: 10px; user-select: none; }
#vp-indicator #vp-w { color: var(--cream-light); }
#vp-indicator #vp-tier { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: rgba(184,146,75,0.25); color: var(--gold-light); }
#vp-indicator .tier-mobile { background: rgba(200,80,80,0.3); color: #f0c0c0; }
#vp-indicator .tier-mid-tier { background: rgba(184,146,75,0.3); color: var(--gold-light); }
#vp-indicator .tier-desktop { background: rgba(110,160,110,0.3); color: #c0e0c0; }

/* ---------- motion accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .cat-card:hover, .cat-card:focus-visible, .cta-showcase .show-img:hover img, .cta-showcase .show-img:hover svg { transform: none; }
}

/* ---------- responsive: tablet ---------- */
@media (max-width: 1100px) {
  .nav-inner { padding: 12px 18px; gap: 16px; }
  .logo-img { height: 42px; width: 42px; }
  .logo-text { min-height: 42px; }
  .logo-mark { font-size: 28px; line-height: 42px; }
  .nav-links { gap: 12px; font-size: 14px; letter-spacing: 0.06em; }
  .hero-inner { min-height: 360px; }
  .hero-image { background-size: cover; background-position: center center; }
  .hero-copy { width: min(420px, 45%); padding: 18px 16px 20px 18px; }
  .hero h1 { font-size: 38px; }
  .hero-subtitle { font-size: 16px; }
  .hero p.lead { font-size: 17px; max-width: 360px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card:nth-child(3), .cat-card:nth-child(4), .cat-card:nth-child(5) { border: 1px solid rgba(31,16,10,0.08); }
  .val-grid { grid-template-columns: repeat(3, 1fr); row-gap: 8px; }
  .testimonials { padding: 60px 24px 70px; }
  .testi-grid { gap: 20px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .how-grid::before { display: none; }
  .sample-callout { grid-template-columns: minmax(330px, 45%) minmax(0, 1fr); gap: 24px; }
  .sample-callout-image img { height: 270px; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-copy { padding: 42px 32px; }
  .cta-copy p, .cta-steps { max-width: 760px; }
  .cta-showcase { grid-template-columns: repeat(5, 1fr); }
  .cta-showcase .show-img { min-height: 220px; }
  .foot-newsletter { gap: 24px; padding: 28px 0 32px; margin-bottom: 36px; }
  .foot-grid { grid-template-columns: repeat(4, 1fr); gap: 36px 28px; }
  .foot-grid > .foot-brand { grid-column: 1 / -1; max-width: 480px; }
}

/* ---------- responsive: mobile ---------- */
@media (max-width: 720px) {
  .nav-inner { padding: 16px 18px; gap: 12px; flex-wrap: nowrap; }
  .nav-burger { display: block; width: 36px; height: 28px; }
  .nav-burger span { height: 2.5px; }
  .nav-burger span:nth-child(1) { top: 3px; }
  .nav-burger span:nth-child(2) { top: 13px; }
  .nav-burger span:nth-child(3) { top: 23px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { top: 13px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { top: 13px; }
  .nav-quote { display: none; }
  .logo { gap: 10px; }
  .logo-img { height: 42px; width: 42px; }
  .logo-text { min-height: 42px; }
  .logo-mark { font-size: 26px; line-height: 42px; }
  .logo-tag { display: none; }
  .nav-links { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid rgba(31,16,10,0.1); box-shadow: 0 12px 24px rgba(31,16,10,0.08); max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 16px; align-items: stretch; }
  .nav-toggle:checked ~ .nav-links { max-height: 700px; padding: 8px 16px 18px; }
  .nav-item { width: 100%; }
  .nav-has-menu { display: flex; flex-direction: column; }
  .nav-trigger { padding: 16px 0 8px; font-size: 10px; letter-spacing: 0.2em; color: var(--text-muted) !important; cursor: default; text-align: left; pointer-events: none; }
  .nav-trigger::after { display: none !important; }
  .nav-caret { display: none; }
  .nav-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 4px 0; min-width: 0; background: transparent; display: flex; }
  .nav-menu a { padding: 8px 0; font-size: 14px; letter-spacing: 0.06em; }
  .nav-link { padding: 14px 0; font-size: 14px; letter-spacing: 0.08em; }
  .nav-link-cta { display: inline-flex; margin-top: 12px; justify-content: center; background: var(--gold); color: var(--cream-light) !important; padding: 12px 14px; }
  .hero-inner { min-height: 520px; align-items: flex-start; }
  .hero-image { background-image: linear-gradient(to bottom, rgba(250,246,238,0.97) 0%, rgba(250,246,238,0.88) 34%, rgba(250,246,238,0.42) 62%, rgba(250,246,238,0.08) 100%), url("/images/hero-2060x800.jpg"); background-size: cover; background-position: center bottom; }
  .hero-copy { width: 100%; padding: 28px 16px 18px; }
.hero h1 { font-size: clamp(42px, 11vw, 50px); line-height: 0.96; }
  .hero-subtitle { font-size: 16px; }
  .hero p.lead { font-size: 17px; line-height: 1.65; margin-bottom: 18px; max-width: 380px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .category-intro { padding: 16px 14px 8px; }
  .category-intro p { font-size: 17px; line-height: 1.65; text-align: left; }
  .trust-strip { padding: 8px 14px 12px; }
  .trust-strip-inner { justify-content: center; gap: 8px; }
  .trust-strip span { font-size: 10px; min-height: 30px; padding: 7px 9px; }
  .categories { padding: 14px 14px 0; }
  .cat-grid { max-width: none; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card { min-height: auto; border: 1px solid rgba(31,16,10,0.08); }
  .cat-title-row { gap: 7px; margin: 0 12px 7px; }
  .cat-icon { width: 16px; height: 16px; flex-basis: 16px; }
  .cat-title { font-size: 15px; letter-spacing: 0.06em; line-height: 1.25; }
  .cat-desc { font-size: 14px; line-height: 1.5; margin-left: 12px; margin-right: 12px; }
  .cat-link { font-size: 11px; margin-left: 12px; margin-right: 12px; }
  .val-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { padding: 52px 16px 60px; }
  .testi-head { margin-bottom: 36px; }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card { padding: 28px 22px 22px; }
  .how { padding: 72px 20px 82px; }
  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .pricing-note { padding: 42px 18px; }
  .pricing-note h3 { font-size: 28px; }
  .pricing-note p { font-size: 17px; line-height: 1.65; }
  .sample-callout { margin: 0 14px 14px; padding: 20px; grid-template-columns: 1fr; gap: 18px; }
  .sample-callout-image img { height: auto; aspect-ratio: 16 / 10; }
  .sample-callout p { font-size: 17px; line-height: 1.65; }
  .sample-callout .btn { width: 100%; justify-self: stretch; }
  .cta-copy { padding: 38px 22px; }
  .cta-copy h3 { font-size: 34px; }
  .cta-copy p { font-size: 16px; }
  .cta-steps { gap: 16px; }
  .cta-steps strong { font-size: 18px; }
  .cta-steps span { font-size: 14px; }
  .cta-showcase { grid-template-columns: repeat(2, 1fr); }
  .cta-showcase .show-img { min-height: 190px; }
  .sample { padding: 72px 20px; }
  .decorative-hr { height: 76px; margin: 0 -20px; padding-top: 8px; }
  .decorative-hr::before { top: calc(50% + 4px); }
  .decorative-hr span { top: 4px; }
  .foot { padding: 0 20px 92px; }
  .foot-inner { padding-top: 32px; }
  .foot-newsletter { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px 0 28px; margin-bottom: 28px; }
  .foot-nl-form { max-width: 100%; width: 100%; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .foot-brand-mark { font-size: 27px; }
  .foot-brand-tag { font-size: 12px; letter-spacing: 0.16em; }
  .foot-social a { width: 40px; height: 40px; }
  .foot-social svg { width: 26px; height: 26px; }
  .foot-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
    
.mobile-sticky-quote { display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90; justify-content: center; background: var(--gold-deep); color: var(--cream-light); padding: 14px 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--gold-deep); box-shadow: 0 4px 18px rgba(31,16,10,0.28), 0 0 0 4px rgba(255,255,255,0.08); }
  .mobile-sticky-quote:hover { background: var(--gold); border-color: var(--gold); }
    
  #vp-indicator { display: none; }
}

@media (max-width: 480px) {
.hero h1 { font-size: clamp(39px, 12vw, 46px); }
  .cat-grid { grid-template-columns: 1fr; }
  .cta-showcase { grid-template-columns: 1fr; }
  .cta-showcase .show-img { min-height: 220px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

.cta-button-row { display: flex; justify-content: center; align-items: center; max-width: 520px; margin-top: 4px; }

/* ============================================================================
 * QUOTE PAGE  — quote.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

/* ---- Page header (reusable across inner pages) ---- */
.page-header { background: var(--cream-light); border-bottom: 1px solid rgba(31,16,10,0.07); padding: 72px 48px 64px; text-align: center; }
.page-header-inner { max-width: 680px; margin: 0 auto; }
.page-header h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 3.4vw, 54px); line-height: 1.03; letter-spacing: 0.01em; color: var(--chocolate); margin: 10px 0 18px; }
.page-header-lead { font-size: 18px; color: var(--text-muted); line-height: 1.65; max-width: 560px; margin: 0 auto; }

/* ---- Quote page shell ---- */
.quote-page { padding: 72px 48px 96px; }
.quote-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: start; }

/* ---- Form column ---- */
.qform { display: flex; flex-direction: column; gap: 0; }
.qform-section { margin-bottom: 40px; }
.qform-section-title { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid rgba(31,16,10,0.10); padding-bottom: 10px; margin-bottom: 24px; }

/* ---- Individual field ---- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field:last-child { margin-bottom: 0; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--chocolate); }
.field-opt { font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--text-muted); font-size: 12px; }
.req { color: var(--gold); }
.field input, .field select, .field textarea { font-family: var(--sans); font-size: 16px; color: var(--text); background: var(--cream-light); border: 1px solid rgba(31,16,10,0.18); padding: 11px 14px; outline: none; transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none; appearance: none; border-radius: 0; width: 100%; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231F100A' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,75,0.15); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-soft); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field-hint { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.field-error { font-size: 13px; font-weight: 700; color: #b0260e; letter-spacing: 0.02em; }
.field-invalid input, .field-invalid select, .field-invalid textarea { border-color: #b0260e; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.field-row .field { margin-bottom: 0; }

/* ---- Form footer / submit ---- */
.qform-footer { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.qform-submit { width: 100%; justify-content: center; padding: 15px 24px; font-size: 14px; }
.qform-reassure { font-size: 13px; color: var(--text-muted); text-align: center; }
.qform-error-banner { background: rgba(176,38,14,0.07); border: 1px solid rgba(176,38,14,0.25); color: #7a1a07; font-size: 14px; font-weight: 600; padding: 12px 16px; margin-bottom: 16px; }

/* ---- Success state ---- */
.quote-success { padding: 52px 40px; background: var(--cream-light); border: 1px solid rgba(31,16,10,0.08); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.qs-icon { color: var(--gold); stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.quote-success h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.4vw, 36px); color: var(--chocolate); margin: 0; }
.quote-success p { font-size: 17px; color: var(--text-muted); line-height: 1.65; max-width: 480px; margin: 0; }
.qs-next { font-size: 15px; }

/* ---- Trust sidebar ---- */
.quote-trust { display: flex; flex-direction: column; gap: 32px; position: sticky; top: 100px; }
.qtrust-block { padding: 28px; background: var(--cream-light); border: 1px solid rgba(31,16,10,0.07); }
.qtrust-block .eyebrow { display: block; margin-bottom: 16px; }
.qtrust-steps { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.qtrust-step { display: flex; gap: 16px; align-items: flex-start; }
.qtrust-num { font-family: var(--serif-brand); font-size: 13px; letter-spacing: 0.12em; color: var(--gold); min-width: 26px; line-height: 1.6; }
.qtrust-copy strong { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--chocolate); margin-bottom: 5px; }
.qtrust-copy p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.qtrust-contact { display: flex; flex-direction: column; gap: 12px; }
.qtrust-contact p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.qtrust-contact-link { display: inline-flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; color: var(--chocolate); letter-spacing: 0.02em; transition: color 0.2s; }
.qtrust-contact-link:hover { color: var(--gold-deep); }
.qtrust-icon { stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.qtrust-pill-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.qtrust-pill-list li { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--chocolate); padding-left: 18px; position: relative; }
.qtrust-pill-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .quote-page { padding: 52px 24px 72px; }
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .quote-trust { position: static; }
}
@media (max-width: 600px) {
  .page-header { padding: 52px 20px 44px; }
  .quote-page { padding: 36px 16px 60px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .qtrust-block { padding: 22px 18px; }
  .quote-success { padding: 36px 20px; }
}

/* ============================================================================
 * PRODUCT PAGES  — chocolate-business-cards.asp + category pages
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

/* ---- Product split (image + details) ---- */
.prod-split { background: var(--cream-light); padding: 72px 48px 80px; border-bottom: 1px solid rgba(31,16,10,0.07); }
.prod-split-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 72px; align-items: start; }
.prod-image { overflow: hidden; border: 1px solid rgba(31,16,10,0.10); background: var(--cream-deep); box-shadow: 0 16px 40px rgba(31,16,10,0.10); }
.prod-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; display: block; }
.prod-details h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.1; color: var(--chocolate); margin: 10px 0 20px; }
.prod-details > p { font-size: 17px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }

/* ---- Spec list ---- */
.prod-specs { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.prod-specs li { display: flex; gap: 14px; align-items: flex-start; }
.ps-icon { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.prod-specs li > div { display: flex; flex-direction: column; gap: 2px; }
.prod-specs strong { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--chocolate); }
.prod-specs span { font-size: 15px; color: var(--text-muted); line-height: 1.55; }

/* ---- Product CTAs ---- */
.prod-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Use cases ---- */
.prod-use-section { background: var(--cream); padding: 88px 48px 96px; }
.prod-use-inner { max-width: 1160px; margin: 0 auto; }
.prod-use-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.prod-use-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 2.8vw, 44px); line-height: 1.08; color: var(--chocolate); margin: 10px 0 16px; }
.prod-use-head p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }
.prod-use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-use-card { background: var(--cream-light); border: 1px solid rgba(31,16,10,0.08); padding: 28px 24px 24px; display: flex; flex-direction: column; gap: 10px; }
.puc-icon { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 4px; }
.prod-use-card h3 { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--chocolate); margin: 0; }
.prod-use-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ---- Single product testimonial ---- */
.prod-testi { background: var(--cream-warm); padding: 72px 48px; border-top: 1px solid rgba(31,16,10,0.07); border-bottom: 1px solid rgba(31,16,10,0.07); }
.prod-testi-inner { max-width: 720px; margin: 0 auto; }
.prod-testi-card { background: var(--cream-light); border: 1px solid rgba(31,16,10,0.08); padding: 40px 40px 32px; display: flex; flex-direction: column; gap: 20px; }
.prod-testi-card .testi-mark { width: 28px; fill: var(--gold); opacity: 0.5; }
.prod-testi-card blockquote p { font-family: var(--serif-accent); font-size: clamp(18px, 1.4vw, 22px); line-height: 1.7; color: var(--chocolate-soft); font-weight: 400; margin: 0; }
.prod-testi-card figcaption { display: flex; flex-direction: column; gap: 3px; border-top: 1px solid rgba(31,16,10,0.08); padding-top: 18px; }

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .prod-split-inner { grid-template-columns: 1fr; gap: 40px; }
  .prod-use-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .prod-split { padding: 36px 16px 52px; }
  .prod-use-section { padding: 56px 16px 64px; }
  .prod-use-grid { grid-template-columns: 1fr; gap: 14px; }
  .prod-testi { padding: 48px 16px; }
  .prod-testi-card { padding: 28px 20px 24px; }
  .prod-ctas { flex-direction: column; }
  .prod-ctas .btn { justify-content: center; }
}

/* ============================================================================
 * HOW IT WORKS PAGE  — how-it-works.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

.hiw-steps { background: var(--cream-light); padding: 80px 48px 88px; border-bottom: 1px solid rgba(31,16,10,0.07); }
.hiw-steps-inner { max-width: 780px; margin: 0 auto; }

.hiw-step { display: grid; grid-template-columns: 64px 1fr; gap: 32px; align-items: start; }
.hiw-step-num { font-family: var(--serif-brand); font-size: 13px; letter-spacing: 0.18em; color: var(--gold); padding-top: 6px; line-height: 1; }
.hiw-step-body h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(22px, 2vw, 30px); color: var(--chocolate); margin-bottom: 14px; }
.hiw-step-body p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.hiw-step-body p:last-of-type { margin-bottom: 0; }
.hiw-step-body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.hiw-step-body a:hover { color: var(--chocolate); }

.hiw-tip { display: flex; gap: 10px; align-items: flex-start; background: var(--cream-warm); border-left: 3px solid var(--gold); padding: 12px 16px; margin-top: 16px; font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.hiw-tip-icon { flex-shrink: 0; stroke: var(--gold-deep); fill: none; stroke-width: 1.8; stroke-linecap: round; margin-top: 2px; }
.hiw-tip strong { color: var(--chocolate); font-weight: 700; }

.hiw-connector { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), rgba(184,146,75,0.2)); margin: 20px 0 20px 32px; }

/* ---- Timeline overview ---- */
.hiw-timeline { background: var(--cream); padding: 72px 48px 80px; border-top: 1px solid rgba(31,16,10,0.06); }
.hiw-timeline-inner { max-width: 900px; margin: 0 auto; }
.hiw-timeline-head { text-align: center; margin-bottom: 48px; }
.hiw-timeline-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); color: var(--chocolate); margin-top: 10px; }
.hiw-timeline-grid { display: flex; align-items: center; gap: 0; background: var(--cream-light); border: 1px solid rgba(31,16,10,0.08); }
.hiw-tl-item { flex: 1; padding: 24px 20px; text-align: center; display: flex; flex-direction: column; gap: 6px; }
.hiw-tl-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.hiw-tl-value { font-family: var(--serif); font-size: 17px; color: var(--chocolate); font-weight: 400; line-height: 1.3; }
.hiw-tl-divider { width: 1px; height: 56px; background: rgba(31,16,10,0.08); flex-shrink: 0; }
.hiw-timeline-note { text-align: center; font-size: 15px; color: var(--text-muted); margin-top: 20px; }

@media (max-width: 960px) {
  .hiw-timeline-grid { flex-wrap: wrap; }
  .hiw-tl-item { min-width: 50%; border-bottom: 1px solid rgba(31,16,10,0.06); }
  .hiw-tl-divider { display: none; }
}
@media (max-width: 640px) {
  .hiw-steps { padding: 52px 20px 60px; }
  .hiw-step { grid-template-columns: 40px 1fr; gap: 18px; }
  .hiw-connector { margin-left: 20px; height: 36px; }
  .hiw-timeline { padding: 48px 20px 56px; }
  .hiw-tl-item { min-width: 100%; }
}

/* ============================================================================
 * FAQ PAGE  — faq.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

.faq-page-body { background: linear-gradient(180deg, var(--cream-light), var(--cream)); padding: 64px 48px 80px; }
.faq-page-inner { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }

.faq-group-title { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold-deep); border-bottom: 1px solid rgba(31,16,10,0.10); padding-bottom: 10px; margin-bottom: 18px; }

/* faq-list and faq-item styles already defined in site.css from homepage */

.faq-contact-cta { text-align: center; padding: 48px 0 8px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.faq-contact-cta p { font-family: var(--serif); font-size: clamp(22px, 2vw, 30px); color: var(--chocolate); }
.faq-contact-links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 640px) {
  .faq-page-body { padding: 44px 16px 60px; }
  .faq-page-inner { gap: 40px; }
  .faq-contact-links { flex-direction: column; align-items: stretch; }
  .faq-contact-links .btn { justify-content: center; }
}

/* ============================================================================
 * SAMPLE BOX PAGE  — sample-box.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

/* Credit note callout on product split */
.sbox-credit-note { display: flex; gap: 12px; align-items: flex-start; background: rgba(184,146,75,0.09); border: 1px solid rgba(184,146,75,0.30); padding: 14px 16px; margin: 0 0 28px; }
.scn-icon { flex-shrink: 0; stroke: var(--gold-deep); fill: none; stroke-width: 1.8; stroke-linecap: round; margin-top: 2px; }
.sbox-credit-note p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Order form section */
.sbox-form-section { background: var(--cream-light); padding: 80px 48px 96px; border-top: 1px solid rgba(31,16,10,0.07); }
.sbox-form-inner { max-width: 680px; margin: 0 auto; }
.sbox-form-head { text-align: center; margin-bottom: 48px; }
.sbox-form-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); color: var(--chocolate); margin: 10px 0 14px; }
.sbox-form-head p { font-size: 17px; color: var(--text-muted); line-height: 1.65; }

/* Three-column address row */
.field-row-3 { grid-template-columns: 2fr 1fr 1fr; }

@media (max-width: 640px) {
  .sbox-form-section { padding: 52px 16px 64px; }
  .field-row-3 { grid-template-columns: 1fr 1fr; }
  .field-row-3 .field:first-child { grid-column: 1 / -1; }
}

/* ============================================================================
 * ABOUT PAGE  — about.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

/* Brand story split */
.about-story { background: var(--cream-light); padding: 80px 48px 88px; border-bottom: 1px solid rgba(31,16,10,0.07); }
.about-story-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 72px; align-items: start; }
.about-story-image { overflow: hidden; border: 1px solid rgba(31,16,10,0.10); box-shadow: 0 16px 40px rgba(31,16,10,0.10); }
.about-story-image img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }
.about-story-copy h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.4vw, 38px); line-height: 1.12; color: var(--chocolate); margin: 10px 0 22px; }
.about-story-copy p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.about-story-copy p:last-child { margin-bottom: 0; }

/* Values grid */
.about-values { background: var(--cream); padding: 80px 48px 88px; }
.about-values-inner { max-width: 1160px; margin: 0 auto; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.aval-item { padding: 28px 24px; background: var(--cream-light); border: 1px solid rgba(31,16,10,0.07); display: flex; flex-direction: column; gap: 12px; }
.aval-icon { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.aval-item h3 { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--chocolate); margin: 0; }
.aval-item p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Products mini-grid */
.about-products { background: var(--cream-light); padding: 80px 48px 88px; border-top: 1px solid rgba(31,16,10,0.07); }
.about-products-inner { max-width: 1160px; margin: 0 auto; }
.about-products-head { max-width: 600px; margin: 0 auto 52px; text-align: center; }
.about-products-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); color: var(--chocolate); margin: 10px 0 14px; }
.about-products-head p { font-size: 17px; color: var(--text-muted); line-height: 1.65; }
.about-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ap-card { display: flex; flex-direction: column; background: var(--cream); border: 1px solid rgba(31,16,10,0.08); overflow: hidden; text-decoration: none; transition: box-shadow 0.22s, transform 0.22s; }
.ap-card:hover { box-shadow: 0 12px 36px rgba(31,16,10,0.13); transform: translateY(-2px); }
.ap-card-img { overflow: hidden; }
.ap-card-img img { width: 100%; display: block; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.4s; }
.ap-card:hover .ap-card-img img { transform: scale(1.04); }
.ap-card-copy { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.ap-card-copy h3 { font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--chocolate); margin: 0; }
.ap-card-copy p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; flex: 1; }
.ap-card-link { font-size: 12px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: var(--gold-deep); margin-top: 8px; }

/* About responsive */
@media (max-width: 1000px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .about-story { padding: 48px 16px 56px; }
  .about-values { padding: 52px 16px 60px; }
  .about-values-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-products { padding: 52px 16px 60px; }
  .about-products-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
 * CONTACT PAGE  — contact.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

.contact-page { padding: 72px 48px 96px; }
.contact-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 320px; gap: 72px; align-items: start; }

/* Sidebar blocks */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.ctrust-block { padding: 26px 24px; background: var(--cream-light); border: 1px solid rgba(31,16,10,0.07); }
.ctrust-block .eyebrow { display: block; margin-bottom: 16px; }

/* Contact info list */
.cinfo-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.cinfo-item { display: flex; gap: 12px; align-items: flex-start; }
.cinfo-icon { flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.cinfo-item > div { display: flex; flex-direction: column; gap: 2px; }
.cinfo-item strong { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.cinfo-item a, .cinfo-item span { font-size: 15px; color: var(--chocolate); font-weight: 600; }
.cinfo-item a:hover { color: var(--gold-deep); }

/* Quick links */
.contact-quick-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.contact-quick-links li a { font-size: 14px; font-weight: 600; color: var(--chocolate); text-decoration: none; transition: color 0.2s; }
.contact-quick-links li a:hover { color: var(--gold-deep); }

/* Note block */
.ctrust-note { display: flex; gap: 12px; align-items: flex-start; padding: 20px; }
.ctn-icon { flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; margin-top: 2px; }
.ctrust-note p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; font-style: italic; }

/* Contact responsive */
@media (max-width: 900px) {
  .contact-page { padding: 52px 24px 72px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-sidebar { position: static; }
}
@media (max-width: 600px) {
  .contact-page { padding: 36px 16px 60px; }
}

/* ============================================================================
 * PROSE PAGES  — shipping.asp, privacy.asp, terms.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

.prose-page { background: var(--cream-light); padding: 72px 48px 96px; }
.prose-inner { max-width: 780px; margin: 0 auto; }
.prose-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(31,16,10,0.07); }
.prose-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.prose-section h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 1.8vw, 26px); color: var(--chocolate); margin-bottom: 16px; }
.prose-section p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.prose-section p:last-child { margin-bottom: 0; }
.prose-section a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose-section a:hover { color: var(--chocolate); }
.prose-section strong { color: var(--chocolate); font-weight: 700; }
.prose-address { font-style: normal; font-size: 16px; color: var(--text-muted); line-height: 2; margin-top: 10px; }
.prose-address a { color: var(--gold-deep); text-decoration: underline; }
.prose-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.prose-legal .prose-section { margin-bottom: 40px; padding-bottom: 40px; }

/* Table for shipping timelines */
.prose-table-wrap { overflow-x: auto; margin: 20px 0; }
.prose-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose-table th { background: var(--cream-warm); color: var(--chocolate); font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-align: left; padding: 11px 16px; border: 1px solid rgba(31,16,10,0.10); }
.prose-table td { padding: 11px 16px; color: var(--text-muted); border: 1px solid rgba(31,16,10,0.08); vertical-align: top; }
.prose-table tr:nth-child(even) td { background: rgba(31,16,10,0.02); }

@media (max-width: 640px) {
  .prose-page { padding: 44px 16px 64px; }
  .prose-cta-row { flex-direction: column; }
  .prose-cta-row .btn { justify-content: center; }
}

/* ============================================================================
 * TRADE PAGE  — trade.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

.trade-benefits { background: var(--cream-light); padding: 80px 48px 88px; border-bottom: 1px solid rgba(31,16,10,0.07); }
.trade-benefits-inner { max-width: 1160px; margin: 0 auto; }
.trade-ben-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.trade-ben-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 2.6vw, 40px); color: var(--chocolate); margin: 10px 0 16px; }
.trade-ben-head p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }
.trade-ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trade-ben-card { background: var(--cream); border: 1px solid rgba(31,16,10,0.08); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.tbc-icon { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.trade-ben-card h3 { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--chocolate); margin: 0; }
.trade-ben-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.trade-who { background: var(--cream); padding: 72px 48px 80px; border-bottom: 1px solid rgba(31,16,10,0.07); }
.trade-who-inner { max-width: 780px; margin: 0 auto; }
.trade-who-inner h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.4vw, 36px); color: var(--chocolate); margin: 10px 0 32px; }
.trade-who-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.trade-who-list li { display: flex; gap: 16px; align-items: flex-start; }
.twl-icon { flex-shrink: 0; width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-top: 2px; }
.trade-who-list li > div { display: flex; flex-direction: column; gap: 3px; }
.trade-who-list strong { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--chocolate); }
.trade-who-list span { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

.trade-form-section { background: var(--cream-light); padding: 80px 48px 96px; }
.trade-form-inner { max-width: 680px; margin: 0 auto; }
.trade-form-head { text-align: center; margin-bottom: 48px; }
.trade-form-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px, 2.4vw, 36px); color: var(--chocolate); margin: 10px 0 14px; }
.trade-form-head p { font-size: 17px; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 1000px) { .trade-ben-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .trade-benefits { padding: 52px 16px 60px; }
  .trade-ben-grid { grid-template-columns: 1fr; gap: 14px; }
  .trade-who { padding: 52px 16px 60px; }
  .trade-form-section { padding: 52px 16px 64px; }
}

/* ============================================================================
 * SITEMAP PAGE  — sitemap.asp
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */

.sitemap-page { background: var(--cream-light); padding: 72px 48px 96px; }
.sitemap-inner { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }

.sm-group-title { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: 0.20em; text-transform: uppercase; color: var(--gold-deep); border-bottom: 1px solid rgba(31,16,10,0.10); padding-bottom: 12px; margin-bottom: 6px; }
.sm-icon { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--gold-deep); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.sm-group-desc { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

.sm-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.sm-list li { display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid rgba(31,16,10,0.05); }
.sm-list li:last-child { border-bottom: none; }
.sm-link { font-size: 15px; font-weight: 700; color: var(--chocolate); text-decoration: none; transition: color 0.2s; }
.sm-link:hover { color: var(--gold-deep); }
.sm-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 640px) {
  .sitemap-page { padding: 44px 16px 64px; }
  .sitemap-inner { gap: 40px; }
  .sm-list li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
}

/* ============================================================================
 * NEWSLETTER FOOTER STATES  — subscribed / error
 * Version: 1.0  Updated: 2026-04-27
 * ============================================================================ */
.foot-nl-copy--wide { max-width: 100%; }
.foot-nl-err { color: #c0392b; }
