/* Boomerang Animal Bedding — hand-written stylesheet (no build step) */
:root {
  --orange: #fe7d01;
  --orange-dark: #d96900;
  --orange-soft: #ffe7cf;
  --cream: #fffaf4;
  --cream-dark: #f5ecdf;
  --ink: #1a1a1a;
  --ink-soft: #3a3633;
  --muted: #6b6560;
  --line: #e6dccd;
  --display: 'Fraunces', Georgia, serif;
  --sans: 'IBM Plex Sans', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--orange-soft); }
[hidden] { display: none !important; }

.container { max-width: 76rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.015em; line-height: 1.08; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-top: 1rem; }
h3 { font-size: 1.25rem; }
p { color: var(--ink-soft); }
.measure { max-width: 46rem; margin-top: 1.25rem; }
.center-block { text-align: center; padding: 3rem 0; }

.eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--orange); }
.eyebrow::before { content: ""; display: inline-block; width: 2rem; height: 2px;
  background: var(--orange); vertical-align: middle; margin-right: 0.6rem; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; font-size: 0.9rem;
  border-radius: 999px; padding: 0.6rem 1.3rem; text-decoration: none; border: 1px solid transparent;
  cursor: pointer; transition: background-color .2s, color .2s, border-color .2s, transform .15s; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light { border-color: rgba(255,250,244,.5); color: var(--cream); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); }
.btn-lg { padding: 0.8rem 1.7rem; font-size: 1rem; }
.text-link { display: inline-block; margin-top: 1rem; color: var(--orange); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.link-btn { background: none; border: none; color: var(--orange); font: inherit; font-size: .9rem;
  font-weight: 500; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; margin-top: 1rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,250,244,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 4.25rem; }
.logo-img { height: 2.6rem; width: auto; }
.footer-logo-img { height: 2.8rem; width: auto; }
.logo-text { font-family: var(--display); font-weight: 700; font-size: 1.2rem; }
.main-nav { display: none; gap: 1.6rem; }
.nav-link { font-size: 0.9rem; text-decoration: none; color: var(--ink-soft); transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--orange); }
.header-right { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: none; font-size: 0.9rem; font-weight: 600; text-decoration: none;
  align-items: center; gap: 0.4rem; color: var(--ink); }
.header-phone:hover { color: var(--orange); }
.header-cta { display: none; }
.nav-toggle { display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 2.6rem; height: 2.6rem; padding: 0 0.55rem; background: none;
  border: 1px solid var(--line); border-radius: 0.6rem; cursor: pointer; }
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { border-top: 1px solid var(--line); background: var(--cream); padding: 0.75rem 1.25rem 1.5rem; }
.mobile-link { display: block; padding: 0.8rem 0.25rem; font-size: 1.05rem; font-weight: 500;
  text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-link:hover { color: var(--orange); }
.mobile-nav-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; }
.mobile-phone { font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
@media (min-width: 1024px) {
  .main-nav { display: flex; }
.phone-ico { color: var(--orange); flex-shrink: 0; }
.footer-contact a[data-testid="footer-phone"] { display: inline-flex; align-items: center; gap: 0.35rem; }
.footer-contact a[data-testid="footer-phone"] .phone-ico { color: var(--orange); }
  .header-phone, .header-cta { display: inline-flex; }
  .nav-toggle, .mobile-nav { display: none; }
}

/* Hero */
.hero { padding: 4rem 0 5rem; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
.hero-copy h1 .accent { color: var(--orange); }
.hero-sub { margin-top: 1.5rem; font-size: 1.1rem; max-width: 34rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-actions.center { justify-content: center; }
.hero-media { position: relative; }
.hero-media img { border-radius: 1.25rem; aspect-ratio: 4/4.4; object-fit: cover; width: 100%; }
.hero-badge { position: absolute; left: -0.75rem; bottom: 1.5rem; max-width: 17rem; background: #fff;
  border: 1px solid var(--line); border-radius: 1rem; padding: 1rem 1.25rem;
  box-shadow: 0 12px 32px rgba(26,26,26,.12); }
.badge-value { display: block; font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--orange); }
.badge-text { font-size: 0.8rem; color: var(--muted); }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }

/* Trust strip */
.trust-strip { background: var(--ink); color: var(--cream); padding: 1rem 0; }
.trust-strip ul { display: flex; flex-wrap: wrap; gap: 0.5rem 2.5rem; list-style: none; }
.trust-strip li { font-size: 0.85rem; opacity: .85; }
.trust-strip li::before { content: "✓"; color: var(--orange); margin-right: 0.5rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--cream-dark); border-block: 1px solid var(--line); }
.split { display: grid; gap: 2.5rem; align-items: center; }
.split-media img { border-radius: 1.25rem; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
@media (min-width: 1024px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .media-split-r .split-media { order: 2; }
}
.page-hero { padding: 3.5rem 0 3rem; }

/* Product grid */
.product-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: 1rem; overflow: hidden; text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(26,26,26,.1); border-color: var(--orange); }
.product-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-dark); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.product-card-body p { font-size: 0.88rem; flex: 1; }
.product-card-link { color: var(--orange); font-size: 0.85rem; font-weight: 600; }

/* Sector / delivery cards */
.sector-grid, .delivery-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } .delivery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .sector-grid { grid-template-columns: repeat(3, 1fr); } }
.sector-card, .delivery-card { background: #fff; border: 1px solid var(--line); border-radius: 1rem;
  padding: 1.4rem 1.5rem; transition: border-color .2s; }
.sector-card:hover, .delivery-card:hover { border-color: var(--orange); }
.sector-card p, .delivery-card p { font-size: 0.88rem; margin-top: 0.4rem; }
.location-note { margin-top: 1.25rem; font-weight: 600; }
.callout { background: var(--orange-soft); border: 1px solid rgba(254,125,1,.3); border-radius: 1.25rem;
  padding: 2.5rem; }
.callout h2 { max-width: 40rem; }
.callout p { margin-top: 0.75rem; font-weight: 500; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1.4rem; }
.stat-value { display: block; font-family: var(--display); font-size: 2.2rem; font-weight: 700; color: var(--orange); }
.stat-label { font-size: 0.82rem; color: var(--muted); }

/* FAQ */
.faq-section { background: var(--cream); }
.faq-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 2fr; gap: 4rem; } }
.faq-intro p { margin-top: 1rem; }
.faq-intro a { color: var(--orange); }
.faq-list { border: 1px solid var(--line); border-radius: 1rem; background: #fff; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 1.5rem; cursor: pointer; font-family: var(--display); font-weight: 600;
  list-style: none; transition: background-color .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream); }
.faq-item summary svg { flex-shrink: 0; color: var(--orange); transition: transform .25s; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { padding: 0 1.5rem 1.25rem; font-size: 0.92rem; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--cream); padding: 4.5rem 0; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(255,250,244,.7); margin-top: 0.75rem; max-width: 34rem; }
.cta-inner { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .cta-inner { grid-template-columns: 1.4fr 1fr; } }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Contact */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.6fr 1fr; gap: 4rem; } }
.contact-info { background: #fff; border: 1px solid var(--line); border-radius: 1.25rem;
  padding: 2rem; height: fit-content; }
.contact-line { margin-top: 1.1rem; font-size: 0.92rem; }
.contact-line a { color: var(--orange); text-decoration: none; }
.contact-line a:hover { text-decoration: underline; }
.contact-delivery { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.contact-delivery p { font-size: 0.88rem; margin-top: 0.5rem; }

/* Quote form */
.quote-form { display: grid; gap: 1.4rem; }
.form-grid { display: grid; gap: 1.4rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.field label, .field legend { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.4rem; }
.req { color: var(--orange); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 0.95rem;
  padding: 0.65rem 0.9rem; border: 1px solid var(--line); border-radius: 0.6rem; background: #fff;
  color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none;
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(254,125,1,.15); }
fieldset.field { border: none; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.pill input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.pill span { display: inline-block; padding: 0.5rem 1.1rem; border: 1px solid var(--line);
  border-radius: 999px; background: #fff; font-size: 0.88rem; color: var(--ink-soft);
  cursor: pointer; transition: background-color .2s, color .2s, border-color .2s; }
.pill input:checked + span { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.pill span:hover { border-color: var(--ink); }
.field-error { color: #b91c1c; font-size: 0.8rem; margin-top: 0.35rem; }
.server-error { border: 1px solid #fecaca; background: #fef2f2; color: #b91c1c;
  border-radius: 0.6rem; padding: 0.8rem 1rem; font-size: 0.9rem; }
.form-note { font-size: 0.78rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; top: -9999px; }
.quote-success { border: 1px solid rgba(254,125,1,.35); background: var(--orange-soft);
  border-radius: 1.25rem; padding: 2rem; }
.quote-success h3 { font-size: 1.5rem; }
.quote-success p { margin-top: 0.6rem; max-width: 36rem; }
#quote-submit[disabled] { opacity: .65; cursor: not-allowed; }

/* Rich text / privacy / breadcrumbs / gallery */
.rich-text { margin-top: 1.25rem; display: grid; gap: 0.9rem; }
.rich-text a { color: var(--orange); }
.rich-text ul { padding-left: 1.3rem; color: var(--ink-soft); display: grid; gap: 0.4rem; }
.breadcrumbs { font-size: 0.8rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--orange); }
.privacy-body { max-width: 46rem; }
.privacy-section { margin-bottom: 2.5rem; }
.privacy-section h2 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.privacy-updated { font-size: 0.8rem; color: var(--muted); }
.gallery { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery img { border-radius: 1rem; }

/* Footer */
.site-footer { background: var(--ink); color: var(--cream); }
.footer-grid { display: grid; gap: 2.5rem; padding: 4rem 1.25rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; padding: 4rem 2rem; } }
.footer-about p { color: rgba(255,250,244,.7); font-size: 0.9rem; margin-top: 1.2rem; max-width: 28rem; }
.footer-contact p { margin-top: 0.3rem; font-size: 0.88rem; }
.footer-legal-name { color: var(--cream) !important; font-weight: 600; margin-top: 1.4rem !important; }
.footer-contact a { color: rgba(255,250,244,.85); text-decoration: none; }
.footer-contact a:hover { color: var(--orange); }
.footer-head { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,250,244,.55); }
.footer-col ul { list-style: none; margin-top: 1rem; display: grid; gap: 0.55rem; }
.footer-col a { color: rgba(255,250,244,.85); font-size: 0.9rem; text-decoration: none; }
.footer-col a:hover { color: var(--orange); }
.footer-bar { border-top: 1px solid rgba(255,250,244,.12); }
.footer-bar-inner { display: flex; flex-direction: column; gap: 0.5rem; padding-block: 1.4rem;
  font-size: 0.75rem; color: rgba(255,250,244,.6); }
.footer-bar-inner p { color: inherit; }
.footer-bar-inner a { color: inherit; }
.footer-bar-inner a:hover { color: var(--orange); }
@media (min-width: 768px) { .footer-bar-inner { flex-direction: row; justify-content: space-between; } }

/* WhatsApp FAB */
.wa-fab { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40; display: grid; place-items: center;
  width: 3.4rem; height: 3.4rem; border-radius: 999px; background: #25D366; color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.22); transition: transform .2s; }
.wa-fab:hover { transform: scale(1.07); }

/* ---- Page-specific components (v2 redesign) ---- */
.lead { font-size: 1.1rem; margin-top: 1.25rem; }
.page-hero .split > div > p { margin-top: 1rem; }
.section-tight { padding: 2.5rem 0; }
.hero-tinted { background: var(--cream-dark); border-bottom: 1px solid var(--line); padding-bottom: 3.5rem; }
.framed img { box-shadow: 0 20px 48px rgba(26,26,26,.14); }

/* Chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin-top: 1.25rem; padding: 0; }
.chip { display: inline-block; padding: 0.35rem 0.9rem; border: 1px solid var(--line); border-radius: 999px;
  background: #fff; font-size: 0.8rem; color: var(--ink-soft); }

/* Dark stats band (about + delivery) */
.stats-band { background: var(--ink); color: var(--cream); padding: 3rem 0; }
.stats-band-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 900px) { .stats-band-grid { grid-template-columns: repeat(4, 1fr); } }
.band-stat-value { display: block; font-family: var(--display); font-size: 2.6rem; font-weight: 700; color: var(--orange); }
.band-stat-label { font-size: 0.82rem; color: rgba(255,250,244,.65); }

/* Featured product card */
.feature-card { display: grid; background: var(--ink); color: var(--cream); border-radius: 1.25rem;
  overflow: hidden; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(26,26,26,.22); }
@media (min-width: 900px) { .feature-card { grid-template-columns: 1.1fr 1fr; } }
.feature-card-img { min-height: 16rem; }
.feature-card-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card-body { padding: 2.25rem; display: flex; flex-direction: column; gap: 0.9rem; justify-content: center; }
.feature-card-body h2 { color: var(--cream); margin-top: 0; }
.feature-card-body p { color: rgba(255,250,244,.75); }
.feature-tag { display: inline-block; width: fit-content; padding: 0.3rem 0.85rem; border-radius: 999px;
  background: var(--orange); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; }
.feature-card .chip { background: transparent; border-color: rgba(255,250,244,.25); color: rgba(255,250,244,.8); }
.feature-card .chip-row { margin-top: 0.25rem; }
.feature-card .product-card-link { margin-top: 0.5rem; }

/* Product detail side panel */
.product-side { display: grid; gap: 1.5rem; align-content: start; }
.glance { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1.5rem 1.6rem; }
.glance-head { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); }
.glance-row { margin-top: 1.1rem; }
.glance-row > span { display: block; font-size: 0.78rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.glance-row p { font-size: 0.85rem; }
.glance .chip-row { margin-top: 0.25rem; }
.glance .chip { background: var(--cream); }

/* Sector groups (editorial numbered list) */
.sector-groups { display: grid; gap: 3.5rem; }
.sector-group-head { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem; }
.sector-group-head h2 { margin-top: 0; }
.sector-group-head p { margin-top: 0.35rem; color: var(--muted); }
.group-num { font-family: var(--display); font-size: 2.6rem; font-weight: 700; color: var(--orange);
  line-height: 1; opacity: .85; }
.sector-rows { display: grid; gap: 0; border-top: 1px solid var(--line); }
.sector-row { display: grid; gap: 0.25rem; padding: 1.1rem 0.25rem; border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .sector-row { grid-template-columns: 16rem 1fr; gap: 2rem; align-items: baseline; } }
.sector-row p { font-size: 0.9rem; }
.sector-row:hover h3 { color: var(--orange); }

/* Delivery steps */
.steps-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 900px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 1.75rem;
  transition: border-color .2s, transform .2s; }
.step-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.step-card h3 { margin-top: 0.9rem; }
.step-card p { margin-top: 0.5rem; font-size: 0.9rem; }

/* Orange CTA variant */
.cta-band.orange { background: var(--orange); }
.cta-band.orange h2, .cta-band.orange .eyebrow { color: #fff; }
.cta-band.orange .eyebrow::before { background: #fff; }
.cta-band.orange p { color: rgba(255,255,255,.85); }
.cta-band.orange .btn-primary { background: var(--ink); }
.cta-band.orange .btn-primary:hover { background: #000; }
.hero-tinted .split { align-items: start; }
.hero-tinted { padding-top: 2.5rem; }


/* ---- v3: unique per-page layouts ---- */

/* About — editorial hero (no image, big statement) */
.editorial-hero { padding: 5rem 0 3rem; background:
  radial-gradient(1200px 400px at 10% -10%, var(--orange-soft), transparent 60%),
  var(--cream); border-bottom: 1px solid var(--line); }
.editorial-inner { display: grid; gap: 2rem; }
.editorial-h1 { font-size: clamp(2.4rem, 5vw, 4rem); max-width: 22ch; margin-top: .25rem; line-height: 1.05; }
.editorial-body { display: grid; gap: 1rem; max-width: 62ch; }
.editorial-body .lead { margin-top: 0; }
.editorial-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 800px) { .editorial-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-tile { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--orange);
  border-radius: .75rem; padding: 1.1rem 1.25rem; }
.stat-tile-value { display: block; font-family: var(--display); font-size: 1.9rem; font-weight: 700; color: var(--ink); }
.stat-tile-label { font-size: .78rem; color: var(--muted); }

/* About — timeline */
.timeline-section { background: #fff; }
.timeline-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .timeline-grid { grid-template-columns: 1fr 1.6fr; gap: 4rem; } }
.timeline-intro p { margin-top: 1rem; color: var(--muted); }
.tl-list { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.tl-row { display: grid; grid-template-columns: 6rem 1fr; gap: 1.25rem; padding: 0 0 2rem 1.5rem;
  position: relative; }
.tl-row::before { content: ""; position: absolute; left: -7px; top: .35rem; width: 12px; height: 12px;
  border-radius: 999px; background: var(--orange); box-shadow: 0 0 0 4px #fff; }
.tl-row:last-child { padding-bottom: 0; }
.tl-year { font-family: var(--display); font-weight: 700; font-size: 1.35rem; color: var(--orange); }
.tl-body h3 { margin: 0; }
.tl-body p { margin-top: .4rem; font-size: .95rem; }

/* About — credibility + values */
.credibility-head { max-width: 60rem; }
.measure-lg { max-width: 60ch; margin-top: 1rem; }
.chip-grid { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin-top: 2rem; }
.chip-grid .chip { padding: .55rem 1.1rem; font-size: .88rem; }
.values-section { background: var(--cream); }
.values-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 2rem 1.75rem;
  border-top: 3px solid var(--orange); }
.value-num { font-family: var(--display); font-size: 1.1rem; color: var(--orange); font-weight: 700;
  letter-spacing: .1em; }
.value-card h3 { margin-top: .5rem; }
.value-card p { margin-top: .6rem; font-size: .93rem; color: var(--ink-soft); }

/* About — retail store block */
.store-block { background: var(--ink); color: var(--cream); border-radius: 1.25rem; padding: 2.5rem; }
.store-block h2 { color: var(--cream); margin-top: .5rem; }
.store-block p { color: rgba(255,250,244,.78); margin-top: .75rem; max-width: 44rem; }
.store-block .btn-ghost { border-color: rgba(255,250,244,.4); color: var(--cream); }
.store-block .btn-ghost:hover { background: rgba(255,255,255,.08); }
.store-addr { font-weight: 600; color: var(--cream) !important; }
.store-block .eyebrow { color: var(--orange); }
.store-block .eyebrow::before { background: var(--orange); }

/* Delivery — coverage hero with counties grid */
.coverage-hero { padding: 4rem 0 3rem; background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  border-bottom: 1px solid var(--line); }
.coverage-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .coverage-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }
.coverage-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.75rem 0 1.5rem;
  padding: 1.25rem 0; border-block: 1px solid var(--line); }
.coverage-meta .cm-value { display: block; font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--orange); }
.coverage-meta .cm-label { font-size: .78rem; color: var(--muted); }
.counties-card { background: #fff; border: 1px solid var(--line); border-radius: 1.25rem; padding: 1.75rem;
  box-shadow: 0 20px 48px rgba(26,26,26,.06); }
.counties-head { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }
.county-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .4rem; list-style: none;
  padding: 0; margin: 1rem 0; }
@media (min-width: 480px) { .county-grid { grid-template-columns: repeat(3, 1fr); } }
.county-chip { font-size: .82rem; padding: .3rem .6rem; border-radius: .4rem; background: var(--cream);
  color: var(--ink-soft); border: 1px solid var(--line); text-align: center; }
.counties-foot { font-size: .8rem; color: var(--muted); margin-top: .75rem; }

/* Delivery — horizontal steps */
.hsteps { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: 1rem; }
@media (min-width: 900px) { .hsteps { grid-template-columns: repeat(4, 1fr); position: relative; } }
.hstep { display: grid; gap: .75rem; padding: 1.75rem 1.5rem; background: #fff; border: 1px solid var(--line);
  border-radius: 1rem; position: relative; }
.hstep-num { font-family: var(--display); font-weight: 700; font-size: 1.4rem; color: var(--orange); }
.hstep h3 { margin: 0; font-size: 1.05rem; }
.hstep p { margin: 0; font-size: .88rem; color: var(--ink-soft); }
@media (min-width: 900px) {
  .hstep::after { content: "→"; position: absolute; right: -.85rem; top: 50%; transform: translateY(-50%);
    color: var(--orange); font-weight: 700; z-index: 1; }
  .hstep:last-child::after { display: none; }
}

/* Delivery — formats table */
.table-wrap { margin-top: 2rem; overflow-x: auto; border: 1px solid var(--line); border-radius: 1rem; background: #fff; }
.formats-table { width: 100%; border-collapse: collapse; min-width: 40rem; }
.formats-table th, .formats-table td { text-align: left; padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--line);
  font-size: .92rem; vertical-align: top; }
.formats-table th { background: var(--cream); font-family: var(--display); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.formats-table tbody tr:last-child td { border-bottom: none; }
.formats-table tbody tr:hover { background: var(--cream); }
.fmt-sub { display: block; font-size: .78rem; color: var(--muted); font-weight: 400; margin-top: .15rem; }
.callout-sub { font-size: .88rem; color: var(--ink-soft); margin-top: .75rem !important; font-weight: 400 !important; }

/* Sectors — banner hero */
.banner-hero { padding: 4.5rem 0 3rem; background: var(--ink); color: var(--cream);
  border-bottom: 4px solid var(--orange); }
.banner-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-top: .5rem; max-width: 22ch; }
.banner-hero .lead { color: rgba(255,250,244,.8); max-width: 60ch; }
.banner-hero .eyebrow { color: var(--orange); }
.banner-hero .eyebrow::before { background: var(--orange); }
.banner-hero .location-note { color: rgba(255,250,244,.7); font-weight: 500; margin-top: 1.25rem; }
.banner-inner { max-width: 60rem; }
.trusted-strip { background: var(--cream); padding: 2rem 0; border-bottom: 1px solid var(--line); }
.trusted-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted);
  font-weight: 600; margin-bottom: .9rem; }
.chip-row.wrap { margin-top: 0; }
