/* ==========================================================================
   Repel storefront core styles (shared by all brands)
   Theme files (theme-*.css) only set the CSS variables + a few flourishes.
   Mobile-first.
   ========================================================================== */

:root {
  --font-head: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-full: 999px;
  --container: 100%;
  --header-h: 92px;
  --ease: cubic-bezier(.2,.8,.2,1);

  /* Defaults (overridden by theme files) */
  --bg: #0b1220;
  --bg-alt: #0f172a;
  --surface: #131c2e;
  --surface-2: #1b2640;
  --border: rgba(255,255,255,0.10);
  --text: #f1f5f9;
  --text-muted: #9aa8bd;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --on-primary: #ffffff;
  --accent: #60a5fa;
  --success: #22c55e;
  --danger: #ef4444;
  --warn: #f59e0b;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.25);
  --hero-bg: radial-gradient(1200px 600px at 20% -10%, rgba(37,99,235,.35), transparent 60%), var(--bg);
  --announce-bg: var(--primary);
  --announce-text: #fff;
  --header-bg: rgba(11,18,32,.85);
  --footer-bg: #070c16;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; margin: 0 0 .5em; letter-spacing: .005em; text-transform: uppercase; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.1rem; color: var(--text-muted); }
.muted { color: var(--text-muted); }
.small { font-size: .875rem; }
.center { text-align: center; }
.r { text-align: right; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: clamp(16px, 1.4vw, 22px); padding-right: clamp(16px, 2vw, 28px); }
.container.narrow { max-width: none; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff; padding: 8px 12px; z-index: 1000; }
.skip-link:focus { left: 8px; top: 8px; }
.hp { position: absolute; left: -9999px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-full); border: 2px solid transparent;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; transition: transform .15s var(--ease), background .15s, box-shadow .15s, border-color .15s;
  text-decoration: none !important; white-space: nowrap; min-height: 44px;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 40%, transparent); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-link { background: none; color: var(--accent); padding-left: 0; padding-right: 0; }
.btn-lg { padding: 15px 30px; font-size: 1.15rem; }
.btn-sm { padding: 8px 14px; font-size: .9rem; min-height: 36px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.icon-btn { background: transparent; border: 1px solid var(--border); color: var(--text); width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: inline-flex; align-items: center; justify-content: center; }

/* ---------- Announcement + header ---------- */
.announce { background: var(--announce-bg); color: var(--announce-text); font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.announce-inner { display: flex; justify-content: center; align-items: center; gap: 16px; min-height: 34px; padding-top: 4px; padding-bottom: 4px; text-align: center; }
.announce-phone { color: inherit; display: none; white-space: nowrap; }
.site-header { position: sticky; top: 0; z-index: 60; background: var(--header-bg); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
/* Header runs edge to edge so the logo sits in the top-left corner of the screen,
   rather than being indented by the centred 1200px content container. */
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: var(--header-h); max-width: none; padding-left: clamp(16px, 1.4vw, 22px); padding-right: clamp(16px, 2vw, 28px); }
.brand { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; line-height: 0; }
.brand:hover { text-decoration: none; }
/* Slogan beside the mark — hidden on the narrowest phones where there is no room */
.brand-slogan { display: none; max-width: clamp(170px, 17vw, 232px); padding-left: clamp(12px, 1.1vw, 16px); border-left: 3px solid color-mix(in srgb, var(--accent) 55%, transparent); font-family: var(--font-head); font-weight: 700; font-size: clamp(.86rem, 1.15vw, 1.12rem); line-height: 1.2; letter-spacing: .05em; text-transform: uppercase; color: color-mix(in srgb, var(--text) 78%, var(--text-muted)); }
.brand-slogan-line { display: block; }
.brand img { height: 84px; width: auto; max-width: none; flex-shrink: 0; }
.main-nav { display: none; }
.main-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.main-nav a { display: block; padding: 10px 9px; border-radius: var(--radius-full); color: var(--text); font-weight: 600; font-size: .92rem; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { background: color-mix(in srgb, var(--primary) 18%, transparent); color: var(--accent); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-shop { display: none; }
.cart-btn { position: relative; background: transparent; border: 1px solid var(--border); color: var(--text); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--primary); color: var(--on-primary); font-size: .7rem; font-weight: 800; min-width: 20px; height: 20px; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 0 5px; }
.cart-count[data-count="0"] { display: none; }
.menu-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: transparent; cursor: pointer; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.menu-btn span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav { position: fixed; inset: 0; z-index: 70; visibility: hidden; opacity: 0; transition: opacity .2s, visibility .2s; background: rgba(0,0,0,.55); }
.mobile-nav.open { visibility: visible; opacity: 1; }
.mobile-nav-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 360px); background: var(--surface); border-left: 1px solid var(--border); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .25s var(--ease); }
.mobile-nav.open .mobile-nav-panel { transform: none; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-bottom: 1px solid var(--border); }
.mobile-nav-head img { height: 52px; width: auto; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 0; flex: 1; overflow-y: auto; }
.mobile-nav li a { display: block; padding: 14px 20px; font-family: var(--font-head); font-size: 1.35rem; text-transform: uppercase; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-nav-foot { padding: 16px; display: grid; gap: 10px; border-top: 1px solid var(--border); }

/* ---------- Sections ---------- */
.section { padding: clamp(26px, 4.2vw, 56px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { margin: 0 auto 26px; text-align: center; }
.section-head p { color: var(--text-muted); }
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; color: var(--accent); margin-bottom: 10px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(18px, 3vw, 28px); }
.two-col { display: grid; gap: 32px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 8px; }
.check-list li { padding-left: 26px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 800; }
.check-list.small { font-size: .92rem; color: var(--text-muted); margin-bottom: 0; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: var(--radius-full); border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: .9rem; font-weight: 600; }
.chip-row.big .chip { padding: 10px 16px; font-size: 1rem; }
.badge { display: inline-block; background: var(--primary); color: var(--on-primary); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-weight: 700; font-size: .8rem; padding: 4px 10px; border-radius: var(--radius-full); }
.notice { background: color-mix(in srgb, var(--accent) 12%, var(--surface)); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); border-radius: var(--radius-sm); padding: 14px 18px; margin: 20px 0; }
.notice.warn { background: color-mix(in srgb, var(--warn) 14%, var(--surface)); border-color: color-mix(in srgb, var(--warn) 50%, transparent); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); }
.spec-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.spec-table th, .spec-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.spec-table thead th { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; color: var(--text-muted); background: var(--surface-2); }
.spec-table tbody th { width: 34%; color: var(--text-muted); font-weight: 600; }
.spec-table tr:last-child td, .spec-table tr:last-child th { border-bottom: 0; }
.spec-table .yes { color: var(--success); font-weight: 800; text-align: center; }
.spec-table .no { color: var(--danger); font-weight: 800; text-align: center; }
/* Comparison table — fits its column, stacks instead of scrolling on phones */
.compare-wrap { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.spec-table.compare { min-width: 0; table-layout: fixed; }
.spec-table.compare th, .spec-table.compare td { padding: 12px 10px; }
.spec-table.compare thead th { text-align: center; font-size: .74rem; line-height: 1.25; white-space: normal; }
.spec-table.compare thead th:first-child { width: 38%; text-align: left; }
.spec-table.compare thead th.own { color: var(--accent); }
.spec-table.compare td.feat { font-weight: 600; }
.spec-table.compare td.own { background: color-mix(in srgb, var(--primary) 12%, transparent); }
.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; }
@media (max-width: 719px) {
  .spec-table.compare, .spec-table.compare tbody { display: block; }
  .spec-table.compare thead { display: none; }
  .spec-table.compare tr { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 14px; border-bottom: 1px solid var(--border); }
  .spec-table.compare tr:last-child { border-bottom: 0; }
  .spec-table.compare td { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 10px; border: 0; border-radius: var(--radius-sm); background: var(--surface-2); font-size: .85rem; }
  .spec-table.compare td::before { content: attr(data-label); color: var(--text-muted); font-weight: 600; }
  .spec-table.compare td.feat { grid-column: 1 / -1; display: block; background: none; padding: 0 0 2px; font-size: 1rem; font-weight: 700; }
  .spec-table.compare td.feat::before { content: none; }
}
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--hero-bg); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid { position: relative; display: grid; gap: 26px; padding-top: clamp(24px, 3.4vw, 44px); padding-bottom: clamp(24px, 3.4vw, 44px); align-items: center; }
.hero h1 { margin-bottom: 14px; }
.hero-bullets { list-style: none; padding: 0; margin: 0 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; font-weight: 600; font-size: .95rem; }
.hero-bullets li { display: flex; gap: 8px; align-items: flex-start; }
.hero-bullets .check { color: var(--success); font-weight: 900; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-ctas.center { justify-content: center; }
.hero-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 460px; }
.quick-add { display: grid; text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; color: var(--text); cursor: pointer; transition: border-color .15s, transform .15s; }
.quick-add:hover { border-color: var(--accent); transform: translateY(-2px); }
.quick-size { font-family: var(--font-head); text-transform: uppercase; font-weight: 700; font-size: 1.05rem; }
.quick-price { font-weight: 800; font-size: 1.2rem; color: var(--accent); }
.quick-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--surface); }
.hero-card img { width: 100%; height: auto; }
.hero-card-tag { position: absolute; left: 14px; bottom: 14px; background: rgba(0,0,0,.7); color: #fff; padding: 6px 12px; border-radius: var(--radius-full); font-family: var(--font-head); text-transform: uppercase; font-weight: 700; font-size: .85rem; letter-spacing: .06em; backdrop-filter: blur(6px); }

/* ---------- Trust bar ---------- */
.trust { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 16px; padding-bottom: 16px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-icon { font-size: 1.6rem; line-height: 1; }
.trust-item h4 { margin: 0 0 2px; font-size: 1rem; }
.trust-item p { margin: 0; font-size: .85rem; color: var(--text-muted); }

/* ---------- Products ---------- */
.product-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.product-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .2s var(--ease), border-color .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 50%, var(--border)); box-shadow: var(--shadow); }
.badge-product { position: absolute; top: 12px; left: 12px; z-index: 2; }
.product-media { display: block; aspect-ratio: 3 / 2; background: var(--surface-2); overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.product-size { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; color: var(--accent); font-weight: 700; }
.product-name { font-size: 1.5rem; margin: 4px 0 6px; }
.product-name a { color: var(--text); }
.product-sub { color: var(--text-muted); font-size: .92rem; margin-bottom: 12px; }
.product-features { list-style: none; padding: 0; margin: 0 0 14px; font-size: .88rem; color: var(--text-muted); display: grid; gap: 3px; }
.product-features li::before { content: '✓ '; color: var(--success); font-weight: 800; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-now { font-family: var(--font-head); font-weight: 800; font-size: 1.9rem; }
.price-was { color: var(--text-muted); text-decoration: line-through; font-size: .95rem; }
.price-save { background: color-mix(in srgb, var(--success) 20%, transparent); color: var(--success); font-weight: 700; font-size: .8rem; padding: 2px 8px; border-radius: var(--radius-full); }
.price-lg .price-now { font-size: 2.6rem; }
.guarantee-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.guarantee-strip div { display: grid; gap: 2px; }
.guarantee-strip strong { font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; }
.guarantee-strip span { font-size: .85rem; color: var(--text-muted); }

/* Product detail */
.crumbs { display: flex; gap: 8px; font-size: .85rem; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.crumbs a { color: var(--text-muted); }
.pd-grid { display: grid; gap: 28px; }
.pd-main { padding: 0; overflow: hidden; aspect-ratio: 3 / 2; background: var(--surface-2); }
.pd-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 8px; margin-top: 10px; }
.pd-thumb { width: 68px; height: 68px; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--border); background: var(--surface-2); padding: 0; cursor: pointer; }
.pd-thumb.active { border-color: var(--accent); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-info h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin: 8px 0; }
.stock { font-weight: 600; font-size: .9rem; }
.stock.in { color: var(--success); }
.stock.out { color: var(--danger); }
.pd-buy { display: flex; gap: 12px; align-items: center; margin: 16px 0 22px; flex-wrap: wrap; }
.qty { display: inline-flex; border: 1px solid var(--border); border-radius: var(--radius-full); overflow: hidden; background: var(--surface); }
.qty input { width: 56px; text-align: center; border: 0; background: transparent; color: var(--text); font-size: 1.05rem; font-weight: 700; -moz-appearance: textfield; }
.qty input::-webkit-inner-spin-button, .qty input::-webkit-outer-spin-button { -webkit-appearance: none; }
.qty-btn { width: 44px; height: 44px; border: 0; background: transparent; color: var(--text); font-size: 1.3rem; cursor: pointer; }
.qty-btn:hover { background: var(--surface-2); }
.pd-meta, .pd-trust { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .85rem; color: var(--text-muted); }
.pd-trust { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.pd-desc { margin-top: 40px; }
.pd-desc h2 { font-size: 1.8rem; }
.pd-desc h3 { font-size: 1.2rem; margin-top: 1.2em; }
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--surface); border-top: 1px solid var(--border); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: space-between; gap: 12px; transform: translateY(110%); transition: transform .25s var(--ease); }
.sticky-buy.show { transform: none; }
.sticky-buy div { display: grid; line-height: 1.2; }
.sticky-buy span { color: var(--accent); font-weight: 800; }

/* ---------- Steps / pests / areas / zones ---------- */
.steps-grid { display: grid; gap: 14px; margin-bottom: 20px; }
.step-card { position: relative; padding: 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.step-num { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--accent); line-height: 1; display: block; margin-bottom: 4px; opacity: .9; }
.step-card h3, .step-card h2 { font-size: 1.35rem; }
.step-card p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.pest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pest-card { display: grid; justify-items: center; gap: 10px; padding: 18px 8px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); color: var(--text); transition: transform .2s, border-color .2s; }
.pest-card:hover { transform: translateY(-3px); border-color: var(--accent); text-decoration: none; }
.pest-icon { position: relative; width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--primary); display: grid; place-items: center; font-size: 1.8rem; background: var(--surface-2); }
.pest-icon::after { content: ''; position: absolute; width: 74%; height: 3px; background: var(--primary); transform: rotate(-45deg); border-radius: 2px; }
.pest-icon.lg { width: 84px; height: 84px; font-size: 2.4rem; margin-bottom: 12px; }
.pest-name { font-family: var(--font-head); text-transform: uppercase; font-weight: 800; letter-spacing: .06em; }
.pest-detail-grid { display: grid; gap: 16px; }
.pest-detail h2 { font-size: 1.6rem; }
.pest-detail p { margin: 0; color: var(--text-muted); }
.area-grid { display: grid; gap: 16px; }
.area-card { padding: 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.area-icon { font-size: 1.7rem; display: block; margin-bottom: 4px; line-height: 1; }
.area-card h3, .area-card h2 { font-size: 1.45rem; }
.area-card p { color: var(--text-muted); font-size: .95rem; }
/* Use-area cards link through to their own page */
.area-link { display: flex; flex-direction: column; color: var(--text); transition: transform .18s var(--ease), border-color .18s, box-shadow .18s; }
.area-link:hover, .area-link:focus-visible { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow); text-decoration: none; }
.area-link .check-list { margin-bottom: 12px; }
.area-go { margin-top: auto; padding-top: 4px; font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }
.area-head { display: flex; gap: 16px; align-items: flex-start; }
.area-head-icon { font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; }
.area-head h1 { margin-bottom: 6px; }
.area-cols { display: grid; gap: 16px; }
.area-size { margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--primary) 12%, transparent); border: 1px solid color-mix(in srgb, var(--primary) 34%, transparent); font-size: .9rem; }

.zone-grid { display: grid; gap: 14px; }
.zone-card { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); align-items: start; }
.zone-num { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--on-primary); font-family: var(--font-head); font-weight: 900; font-size: 1.4rem; display: grid; place-items: center; }
.zone-card h3 { font-size: 1.25rem; grid-column: 2; margin: 4px 0 4px; }
.zone-card p { grid-column: 2; margin: 0; color: var(--text-muted); font-size: .92rem; }

/* ---------- Calculator ---------- */
.calc-section { background: var(--bg-alt); }
.calc-grid { display: grid; gap: 28px; align-items: center; }
.calc-box { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; font-size: .9rem; font-weight: 600; }
.field > span { color: var(--text-muted); }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface-2); color: var(--text); font: inherit; font-size: 16px; min-height: 46px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-muted) 50%), linear-gradient(135deg, var(--text-muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 36px; }
.calc-result { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; padding: 16px; border-radius: var(--radius-sm); background: color-mix(in srgb, var(--primary) 14%, var(--surface)); border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent); }
.calc-result > span { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); }
.calc-result > strong { font-family: var(--font-head); font-size: 1.6rem; text-transform: uppercase; }
.calc-result p { grid-column: 1 / -1; margin: 6px 0 0; font-size: .85rem; }

/* ---------- Application guide ---------- */
.guide-jump { display: grid; gap: 8px; grid-template-columns: 1fr; }
.guide-jump a { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); color: var(--text); font-weight: 600; transition: border-color .15s, transform .15s; }
.guide-jump a:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.guide-jump-num { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--accent); min-width: 28px; }

/* Card grid on the guide index — each card opens its own page */
.apply-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.apply-card { display: grid; grid-template-columns: 92px 1fr; gap: 14px; align-items: stretch; padding: 0; overflow: hidden; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); transition: transform .18s var(--ease), border-color .18s, box-shadow .18s; }
.apply-card:hover, .apply-card:focus-visible { transform: translateY(-3px); border-color: var(--accent); box-shadow: var(--shadow); text-decoration: none; }
.apply-card-media { position: relative; display: grid; place-items: center; background: var(--surface-2); color: var(--text-muted); overflow: hidden; }
.apply-card-media img { width: 100%; height: 100%; object-fit: cover; }
.apply-card-num { position: absolute; top: 6px; left: 6px; font-family: var(--font-head); font-weight: 800; font-size: .8rem; color: var(--on-primary); background: var(--primary); border-radius: var(--radius-full); padding: 1px 7px; }
.apply-card-body { display: flex; flex-direction: column; gap: 5px; padding: 14px 16px 14px 0; }
.apply-card-go { margin-top: auto; padding-top: 4px; }
.apply-card-title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 1.2rem; line-height: 1.1; }
.apply-card-where { font-size: .87rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.apply-card-go { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }

/* Prev / next between location pages */
.guide-pager { display: grid; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); align-items: center; }
.guide-pager-link { display: grid; gap: 2px; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); color: var(--text); }
.guide-pager-link:hover { border-color: var(--accent); text-decoration: none; }
.guide-pager-link span { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); font-weight: 700; }
.guide-pager-link strong { font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; }
.guide-pager-link.next { text-align: right; }

.guide-section { scroll-margin-top: calc(var(--header-h) + 12px); }
.guide-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.guide-num { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--on-primary); font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; display: grid; place-items: center; }
.guide-head h2 { margin-bottom: 6px; }
.guide-where { margin: 0; color: var(--text-muted); }
.guide-where strong { color: var(--text); }
.guide-summary { max-width: 90ch; margin: 0 0 20px; font-size: 1.05rem; }

.guide-media { display: grid; gap: 14px; margin-bottom: 20px; }
.guide-media figure { margin: 0; }
.guide-media figcaption { margin-top: 8px; font-size: .82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.guide-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #000; }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-placeholder { display: grid; place-content: center; justify-items: center; gap: 4px; aspect-ratio: 16 / 9; border-radius: var(--radius); border: 1px dashed color-mix(in srgb, var(--accent) 40%, var(--border)); background: var(--surface-2); text-align: center; padding: 16px; }
.media-placeholder-icon { opacity: .55; color: var(--text-muted); margin-bottom: 4px; }
.media-placeholder-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--text); }
.media-placeholder-sub { font-size: .82rem; color: var(--text-muted); }

.guide-cols { display: grid; gap: 16px; }
.guide-col h3 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin-bottom: 12px; }
.guide-col-icon { display: inline-grid; place-items: center; min-width: 30px; height: 30px; padding: 0 8px; border-radius: var(--radius-full); font-family: var(--font-body); font-size: .8rem; font-weight: 800; }
.guide-col-icon.steps { background: color-mix(in srgb, var(--primary) 22%, transparent); color: var(--accent); }
.guide-col-icon.consider { background: color-mix(in srgb, var(--success) 22%, transparent); color: var(--success); }
.guide-col-icon.avoid { background: color-mix(in srgb, var(--danger) 20%, transparent); color: var(--danger); }
.guide-steps { margin: 0; padding-left: 20px; display: grid; gap: 10px; color: var(--text-muted); }
.guide-steps li { padding-left: 4px; }
.guide-steps li::marker { color: var(--accent); font-weight: 800; }
.guide-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; color: var(--text-muted); }
.guide-list li { padding-left: 26px; position: relative; }
.guide-list.consider li::before { content: '\2713'; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.guide-list.avoid li::before { content: '\2717'; position: absolute; left: 0; color: var(--danger); font-weight: 800; }
.guide-back { margin: 24px 0 0; font-size: .85rem; }
.guide-back a { color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.faq-item summary { cursor: pointer; padding: 16px 44px 16px 18px; font-weight: 700; font-size: 1.02rem; list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 18px 16px; color: var(--text-muted); }
.faq-answer p { margin: 0; }

/* Compact row on the home page pointing at the pages this content lives on */
.explore-grid { display: grid; gap: 10px; }
.explore-card { display: grid; grid-template-columns: 40px 1fr auto; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--text); transition: border-color .15s, transform .15s; }
.explore-card:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.explore-icon { font-size: 1.5rem; line-height: 1; text-align: center; }
.explore-body { display: grid; gap: 2px; min-width: 0; }
.explore-title { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 1.1rem; line-height: 1.15; }
.explore-note { font-size: .86rem; color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; }
.explore-go { color: var(--accent); font-size: 1.2rem; font-weight: 700; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 85%, #000), color-mix(in srgb, var(--primary) 55%, #000)); color: #fff; }
.cta-band .eyebrow { color: rgba(255,255,255,.75); }
.cta-band p { color: rgba(255,255,255,.85); }
.cta-inner { display: grid; gap: 24px; align-items: center; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band .btn-primary { background: #fff; color: color-mix(in srgb, var(--primary) 80%, #000); box-shadow: none; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.tier-grid { display: grid; gap: 16px; align-items: stretch; }
.tier-card { display: flex; flex-direction: column; gap: 10px; }
.tier-card .eyebrow { margin-bottom: 0; }
.tier-card h3 { margin: 0; }
.tier-size { font-weight: 700; margin: 0; }
/* Push the call to action to the foot of every card so they line up across the row */
.tier-card .check-list { margin-bottom: 0; }
.tier-card > .btn { margin-top: auto; }

/* ---------- Page hero / contact / forms ---------- */
.page-hero { padding: clamp(22px, 3.4vw, 40px) 0 6px; background: var(--hero-bg); }
.page-hero h1 { margin-bottom: 10px; }
.page-hero-grid { display: grid; gap: 24px; align-items: center; }
.page-hero-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
@media (min-width: 900px) { .page-hero-grid { grid-template-columns: 1.2fr .8fr; } }
.form-card { display: grid; gap: 14px; }
.form-card h2 { font-size: 1.6rem; margin: 0; }
.form-card h4 { margin: 8px 0 0; color: var(--text-muted); font-size: .85rem; letter-spacing: .1em; }
.form-row { display: grid; gap: 14px; }
.form-status { min-height: 1.4em; margin: 0; font-weight: 600; }
.form-status.ok { color: var(--success); }
.form-status.err { color: var(--danger); }
/* Contact: details as one aligned column beside the form */
.contact-grid { display: grid; gap: 24px; align-items: start; }
.contact-details h2 { font-size: 1.5rem; margin-bottom: 6px; }
.contact-details ul { list-style: none; margin: 0; padding: 0; }
.contact-details li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-details li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--primary) 16%, transparent); color: var(--accent); }
.contact-label { display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; font-weight: 700; color: var(--text-muted); margin-bottom: 3px; }
.contact-value { display: block; font-size: 1.05rem; font-weight: 600; color: var(--text); line-height: 1.35; }
a.contact-value:hover { color: var(--accent); }
.contact-note { display: block; font-size: .88rem; color: var(--text-muted); margin-top: 3px; }

/* ---------- Checkout ---------- */
.checkout h1 { margin-bottom: 12px; }
.checkout-grid { display: grid; gap: 24px; }
.checkout-form { display: grid; gap: 18px; }
.step-badge { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: var(--on-primary); font-size: 1rem; margin-right: 8px; vertical-align: middle; }
.ship-methods { border: 0; padding: 0; margin: 4px 0 0; display: grid; gap: 8px; }
.ship-methods legend { font-weight: 600; font-size: .9rem; color: var(--text-muted); margin-bottom: 6px; }
.radio { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-2); cursor: pointer; }
.radio:has(input:checked) { border-color: var(--accent); }
.radio input { accent-color: var(--primary); width: 18px; height: 18px; }
.radio span { flex: 1; font-size: .95rem; }
.radio em { font-style: normal; font-weight: 800; }
.order-summary { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
.summary-items { display: grid; gap: 12px; margin-bottom: 16px; }
.summary-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; }
.summary-item img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); }
.summary-item .qty-ctl { display: inline-flex; gap: 6px; align-items: center; font-size: .85rem; color: var(--text-muted); }
.summary-item .qty-ctl button { background: var(--surface-2); border: 1px solid var(--border); color: var(--text); width: 26px; height: 26px; border-radius: 6px; cursor: pointer; }
.summary-totals { display: grid; gap: 8px; border-top: 1px solid var(--border); padding-top: 12px; }
.summary-totals div { display: flex; justify-content: space-between; }
.summary-totals .grand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 4px; }
.summary-trust { display: grid; gap: 4px; font-size: .82rem; color: var(--text-muted); margin-top: 12px; }
.confirm-card { text-align: center; }
.confirm-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--success); color: #fff; font-size: 2.2rem; font-weight: 900; display: grid; place-items: center; margin: 0 auto 16px; }
.confirm-grid { display: grid; gap: 16px; text-align: left; margin: 24px 0; }
.confirm-grid h3 { font-size: 1.1rem; margin-bottom: 4px; }
.confirm-grid p { margin: 0 0 6px; }
.order-table { min-width: 0; margin-bottom: 20px; text-align: left; }
.order-table tfoot td { border-bottom: 0; color: var(--text-muted); }
.order-table .grand td { font-weight: 800; color: var(--text); font-size: 1.15rem; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }

/* ---------- Cart drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 80; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(100vw, 420px); background: var(--surface); border-left: 1px solid var(--border); z-index: 90; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .25s var(--ease); }
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--border); }
.cart-head h3 { margin: 0; font-size: 1.5rem; }
.ship-meter { padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: .85rem; }
.ship-meter p { margin: 8px 0 0; color: var(--text-muted); }
.ship-meter-bar { height: 8px; border-radius: 4px; background: var(--surface-2); overflow: hidden; }
.ship-meter-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--primary), var(--success)); transition: width .3s; }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 18px; display: grid; gap: 12px; align-content: start; }
.cart-item { display: grid; grid-template-columns: 64px 1fr; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-name { font-weight: 700; font-size: .95rem; }
.cart-item-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.cart-item-price { font-weight: 800; }
.cart-qty { display: inline-flex; align-items: center; gap: 8px; }
.cart-qty button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface-2); color: var(--text); cursor: pointer; font-size: 1rem; }
.cart-remove { background: none; border: 0; color: var(--text-muted); font-size: .8rem; cursor: pointer; text-decoration: underline; padding: 0; margin-top: 4px; }
.cart-empty { text-align: center; padding: 40px 12px; color: var(--text-muted); }
.cart-foot { padding: 14px 18px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--border); display: grid; gap: 8px; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 1.1rem; }
.cart-note { margin: 0; font-size: .8rem; color: var(--text-muted); }
.cart-drawer .btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }

/* ---------- Dialog (wholesale application) ---------- */
.apply-band { display: grid; gap: 20px; align-items: center; }
.apply-band p { color: var(--text-muted); margin: 0; }
.apply-band h2 { margin-bottom: 8px; }
.apply-band-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.modal-dialog { width: min(94vw, 720px); max-height: 88vh; padding: 0; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--text); overflow: hidden auto; box-shadow: var(--shadow); }
.modal-dialog::backdrop { background: rgba(0, 0, 0, .62); }
.modal-dialog-bar { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; background: var(--surface); border-bottom: 1px solid var(--border); }
.modal-dialog-heading { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; }
.modal-dialog-body { border: 0; background: transparent; box-shadow: none; border-radius: 0; padding: 18px 16px 20px; }
.modal-dialog-body h4 { margin: 6px 0 0; color: var(--text-muted); font-size: .82rem; letter-spacing: .1em; }
.modal-dialog-foot { position: sticky; bottom: 0; margin: 6px -16px -20px; padding: 14px 16px calc(14px + env(safe-area-inset-bottom)); background: var(--surface); border-top: 1px solid var(--border); }
.modal-dialog-foot .form-status { margin-top: 8px; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--surface); color: var(--text); border: 1px solid var(--border); padding: 12px 18px; border-radius: var(--radius-full); box-shadow: var(--shadow); z-index: 100; opacity: 0; visibility: hidden; transition: all .25s var(--ease); font-weight: 600; max-width: calc(100vw - 32px); text-align: center; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Under construction ---------- */
.construction { display: grid; place-items: center; min-height: 100vh; text-align: center; background: var(--hero-bg); }
.construction-inner { display: grid; justify-items: center; gap: 6px; padding-top: 40px; padding-bottom: 40px; max-width: 640px; }
.construction-logo { height: clamp(84px, 12vw, 132px); width: auto; margin-bottom: 18px; }
.construction h1 { margin: 6px 0 10px; }
.construction .lead { margin-bottom: 24px; }
.construction-contact { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 22px; }
.construction-note { color: var(--text-muted); font-size: .95rem; max-width: 46ch; }
.construction-legal { color: var(--text-muted); font-size: .8rem; margin: 10px 0 0; }
.construction-banner { position: sticky; top: 0; z-index: 200; background: var(--warn); color: #1a1200; text-align: center; padding: 8px 16px; font-size: .88rem; font-weight: 600; }
.construction-banner a { color: #1a1200; text-decoration: underline; margin-left: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); border-top: 1px solid var(--border); padding: 34px 0 18px; font-size: .92rem; }
.footer-grid { display: grid; gap: 22px 24px; grid-template-columns: 1fr 1fr; }
.footer-brand { grid-column: 1 / -1; }
.footer-brand img { height: 64px; width: auto; }
.footer-brand p { color: var(--text-muted); margin-top: 10px; margin-bottom: 0; }
.footer-brand .footer-blurb { display: none; }
.footer-company { font-size: .85rem; }
.site-footer h4 { margin-bottom: 8px; letter-spacing: .06em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.site-footer li, .site-footer li a { color: var(--text-muted); }
.site-footer li a:hover { color: var(--accent); }
.footer-legal { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: .8rem; }
.footer-legal p { margin: 0 0 6px; }

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .brand-slogan { display: block; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .form-row.three { grid-template-columns: 2fr 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .zone-grid { grid-template-columns: 1fr 1fr; }
  .pest-detail-grid { grid-template-columns: 1fr 1fr; }
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .guide-media { grid-template-columns: 1fr 1fr; }
  .apply-grid { grid-template-columns: 1fr 1fr; }
  .guide-pager { grid-template-columns: 1fr auto 1fr; }
  .guide-jump { grid-template-columns: 1fr 1fr; }
  .confirm-grid { grid-template-columns: 1fr 1fr; }
  .announce-phone { display: inline; }
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr .9fr; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid { grid-template-columns: repeat(4, 1fr); }
  .area-grid.three { grid-template-columns: repeat(3, 1fr); }
  .zone-grid { grid-template-columns: repeat(3, 1fr); }
  .pest-grid { grid-template-columns: repeat(6, 1fr); }
  .pest-detail-grid { grid-template-columns: repeat(3, 1fr); }
  .calc-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1.4fr 1fr; }
  .apply-band { grid-template-columns: 1.5fr auto; }
  .apply-band-actions { justify-content: flex-end; }
  .cta-actions { justify-content: flex-end; }
  .tier-grid { grid-template-columns: repeat(4, 1fr); }
  .guide-cols { grid-template-columns: 1.2fr 1fr 1fr; }
  .area-cols { grid-template-columns: 1fr 1.1fr 1fr; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .apply-grid { grid-template-columns: repeat(4, 1fr); }
  .apply-card { grid-template-columns: 1fr; }
  .apply-card-media { aspect-ratio: 3 / 2; }
  .apply-card-body { padding: 14px 16px 16px; }
  .guide-jump { grid-template-columns: repeat(4, 1fr); }
  .guarantee-strip { grid-template-columns: repeat(4, 1fr); }
  .pd-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .checkout-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .contact-grid { grid-template-columns: minmax(300px, 380px) 1fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-brand .footer-blurb { display: block; }
  .sticky-buy { display: none; }
  .brand img { height: 104px; }
  :root { --header-h: 116px; }
  .header-shop { display: inline-flex; }
}
@media (min-width: 1340px) {
  .main-nav { display: block; }
  .menu-btn { display: none; }
  .header-shop { display: none; }
}
@media (min-width: 1280px) {
  .brand img { height: 120px; }
  :root { --header-h: 132px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
@media print {
  .announce, .site-header, .site-footer, .cart-drawer, .drawer-overlay, .mobile-nav, .sticky-buy, .toast, .confirm-actions { display: none !important; }
  body { background: #fff; color: #000; }
  .card { border-color: #ccc; }
}
