/* Koser Brona — shared stylesheet. Self-contained, no external fonts/CDN. */

:root {
  --bg: #FAF6EF;
  --text: #2C2A26;
  --muted: #57534A;
  --muted-2: #8A8272;
  --green-dark: #33513A;
  --green: #5C7F62;
  --green-pale-bg: #EDEFE6;
  --green-pale-border: #DFE3D6;
  --green-pale-2: #E3E7DA;
  --cream-card: #FFFDF9;
  --border: #E7DFD2;
  --border-light: #EFE7DA;
  --tan: #D9CFBD;
  --tan-bg: #F1EADD;
  --tan-bg-2: #E9E0D0;
  --blue-bg: #E4EEF3;
  --blue-bg-2: #D8E6ED;
  --blue-text: #6E93A6;
  --blue-text-dark: #3F5560;
  --gold: #C4903F;
  --footer-bg: #2F3A31;
  --footer-text: #DDE3D8;
  --footer-muted: #9DAA9B;
  --footer-border: #43503F;

  --font-serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', Palatino, serif;
  --font-sans: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
p { text-wrap: pretty; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); text-decoration: underline; }
img { max-width: 100%; display: block; }
::selection { background: #CFE3EC; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.container-md { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.container-article { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.container-about { max-width: 900px; margin: 0 auto; padding: 0 20px; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--green-dark);
  color: #EFF3EA;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 9px 20px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar span.sep { opacity: .6; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 249, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 26px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  flex-shrink: 0;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-card);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
}
.logo-text { line-height: 1.1; }
.logo-title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; letter-spacing: .01em; color: var(--text); }
.logo-sub { font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); letter-spacing: .08em; }

.main-nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 500;
}
.main-nav a {
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  color: var(--text);
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--green); color: var(--text); }

.nav-toggle {
  display: none;
  border: 1px solid var(--tan);
  background: var(--cream-card);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle-bars { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; }

.cart-btn {
  border: 1px solid var(--tan);
  background: var(--cream-card);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
}
.cart-btn:hover { background: #F1EADD; text-decoration: none; }
.cart-count {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0 6px;
}

/* ============ MAIN ============ */
main { flex: 1; }

/* ============ HERO ============ */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 20px 24px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: #7C9A82;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-muted {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.015em; margin: 0 0 22px; }
.hero h1 { font-size: 58px; line-height: 1.06; }
.hero p.lead { font-size: 18px; line-height: 1.65; color: var(--muted); margin: 0 0 14px; max-width: 52ch; }
.hero p.sub { font-size: 15px; line-height: 1.6; color: var(--muted-2); margin: 0 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 26px; margin-top: 36px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }

.hero-photo {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  background: var(--tan-bg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============ BUTTONS ============ */
.btn {
  border: 0;
  background: var(--green-dark);
  color: var(--cream-card);
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn:hover { background: var(--green); color: var(--cream-card); text-decoration: none; }
.btn-outline {
  border: 1px solid var(--green-dark);
  background: transparent;
  color: var(--green-dark);
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.btn-outline:hover { background: var(--green-pale-bg); text-decoration: none; }
.btn-sm {
  border: 0;
  background: var(--green-dark);
  color: var(--cream-card);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-sm:hover { background: var(--green); }
.btn-outline-sm {
  border: 1px solid var(--green-dark);
  background: transparent;
  color: var(--green-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-outline-sm:hover { background: var(--green-pale-bg); }
.chip {
  border: 1px solid var(--tan);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background: var(--cream-card);
  color: var(--text);
}
.chip.active { background: var(--green-dark); color: var(--cream-card); }

/* ============ SECTIONS / GRIDS ============ */
section.pad { max-width: 1180px; margin: 0 auto; padding: 40px 20px; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.section-head h2 { margin: 0; }
.section-head a.more { cursor: pointer; font-size: 15px; font-weight: 600; color: var(--green-dark); }
h2 { font-family: var(--font-serif); font-weight: 500; margin: 0 0 6px; }
h2.section-title { font-size: 36px; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.feature-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.feature-card .num { font-family: var(--font-serif); font-size: 30px; color: var(--green); }
.feature-card h3 { font-size: 16px; margin: 10px 0 8px; }
.feature-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ============ PHOTO BOXES ============ */
.ph { position: relative; overflow: hidden; background: var(--tan-bg); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph-square { aspect-ratio: 1/1; }
.ph-wide { aspect-ratio: 16/10; }
.ph-hero { aspect-ratio: 16/9; }

/* ============ CATEGORY TILES ============ */
.cat-tile { cursor: pointer; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); background: var(--cream-card); text-decoration: none; color: var(--text); display: block; }
.cat-tile:hover { border-color: var(--green); text-decoration: none; }
.cat-tile-body { padding: 16px; }
.cat-tile-name { font-weight: 600; font-size: 16px; }
.cat-tile-count { font-size: 13px; color: var(--muted-2); margin-top: 4px; }

/* ============ PRODUCT CARDS ============ */
.product-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--green); color: var(--cream-card);
  font-size: 11px; font-weight: 600; border-radius: 999px; padding: 4px 10px;
}
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--muted-2); text-transform: uppercase; }
.product-name { font-weight: 600; font-size: 15px; line-height: 1.35; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.product-stock { font-size: 12px; color: #7C9A82; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 8px; }
.product-price { font-family: var(--font-serif); font-size: 22px; }

/* ============ ARTICLE CARDS ============ */
.article-card { cursor: pointer; background: var(--cream-card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; text-decoration: none; color: var(--text); display: flex; flex-direction: column; }
.article-card:hover { border-color: var(--green); text-decoration: none; }
.article-card-body { padding: 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.article-card .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--muted-2); text-transform: uppercase; }
.article-card h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 500; margin: 0 0 8px; line-height: 1.25; }
.article-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }
.article-card .byline { margin-top: auto; padding-top: 10px; font-size: 13px; color: var(--muted-2); }

/* ============ CALCULATOR ============ */
.calc-section { background: var(--green-pale-bg); border-top: 1px solid var(--green-pale-border); border-bottom: 1px solid var(--green-pale-border); }
.calc-inner { max-width: 1180px; margin: 0 auto; padding: 52px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.calc-inner h2 { font-size: 34px; }
.calc-inner .lead-text { font-size: 16px; line-height: 1.65; color: #4C5A4E; margin: 0 0 10px; }
.calc-inner .fine { font-size: 14px; color: #6B7A6D; margin: 0; }
.calc-card { background: var(--cream-card); border: 1px solid var(--green-pale-border); border-radius: 20px; padding: 26px; display: flex; flex-direction: column; gap: 18px; }
.calc-card label.field { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 600; }
.calc-card input[type="range"] { width: 100%; accent-color: var(--green); }
.calc-results { border-top: 1px dashed var(--green-pale-border); padding-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-results .label { font-size: 13px; color: #6B7A6D; }
.calc-results .value { font-family: var(--font-serif); font-size: 28px; }
.calc-note { font-size: 12px; color: var(--muted-2); line-height: 1.5; }

/* ============ REVIEWS ============ */
.review-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 18px; padding: 24px; }
.review-stars { color: var(--gold); margin-bottom: 10px; }
.review-card p { font-size: 15px; line-height: 1.65; color: var(--muted); margin: 0 0 14px; }
.review-author { font-size: 13px; color: var(--muted-2); }

/* ============ FOOTER ============ */
.site-footer { background: var(--footer-bg); color: var(--footer-text); margin-top: 20px; }
.footer-grid { max-width: 1180px; margin: 0 auto; padding: 52px 20px 26px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand { font-family: var(--font-serif); font-size: 24px; color: var(--cream-card); margin-bottom: 10px; }
.footer-grid p { font-size: 14px; line-height: 1.7; color: #B9C4B6; margin: 0 0 14px; }
.footer-addr { font-size: 13px; color: var(--footer-muted); line-height: 1.7; }
.footer-col-title { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--footer-muted); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-links a { color: var(--footer-text); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input[type="email"] {
  flex: 1; min-width: 0; border: 1px solid #4A594B; background: #374338; color: #EFF3EA;
  border-radius: 999px; padding: 11px 15px; font-size: 14px;
}
.footer-newsletter-form button {
  border: 0; background: #CFE3EC; color: var(--footer-bg); border-radius: 999px;
  padding: 11px 18px; font-size: 14px; font-weight: 700; cursor: pointer;
}
.footer-fine { font-size: 12px; color: var(--footer-muted); margin-top: 10px; line-height: 1.55; }
.footer-bottom { border-top: 1px solid var(--footer-border); }
.footer-bottom-inner { max-width: 1180px; margin: 0 auto; padding: 18px 20px; display: flex; gap: 18px; flex-wrap: wrap; align-items: center; font-size: 13px; color: var(--footer-muted); }
.footer-bottom-inner a { color: var(--footer-muted); cursor: pointer; }
.footer-bottom-inner .push { margin-left: auto; }

/* ============ CART DRAWER ============ */
.cart-overlay { position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(44,42,38,.42); border: 0; padding: 0; cursor: pointer; }
.cart-panel { position: relative; width: min(460px, 100%); background: var(--bg); height: 100%; display: flex; flex-direction: column; box-shadow: -18px 0 44px rgba(44,42,38,.18); }
.cart-panel-head { padding: 20px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; background: var(--cream-card); }
.cart-panel-head h2 { font-family: var(--font-serif); font-size: 24px; margin: 0; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--muted-2); line-height: 1; border: 0; background: none; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-empty { text-align: center; padding: 50px 10px; color: var(--muted); }
.cart-empty h3 { font-family: var(--font-serif); font-size: 24px; margin-bottom: 10px; }
.cart-empty p { font-size: 15px; line-height: 1.65; margin: 0 0 18px; }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.cart-line-thumb { width: 64px; height: 64px; flex-shrink: 0; border-radius: 12px; background: var(--tan-bg); overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; }
.cart-line-name { font-weight: 600; font-size: 14.5px; line-height: 1.35; }
.cart-line-price { font-size: 13px; color: var(--muted-2); margin: 4px 0 8px; }
.cart-line-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--tan); background: var(--cream-card); border-radius: 8px; cursor: pointer; font-size: 15px; }
.cart-line-remove { margin-left: auto; font-size: 13px; color: var(--muted-2); cursor: pointer; text-decoration: underline; background: none; border: 0; }
.cart-line-total { font-family: var(--font-serif); font-size: 18px; white-space: nowrap; }
.cart-foot { border-top: 1px solid var(--border); background: var(--cream-card); padding: 20px 22px; display: flex; flex-direction: column; gap: 12px; }
.cart-foot-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.cart-progress-track { height: 6px; border-radius: 999px; background: var(--border-light); overflow: hidden; }
.cart-progress-fill { height: 100%; background: var(--green); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px dashed var(--border); padding-top: 12px; }
.cart-total-row .total-value { font-family: var(--font-serif); font-size: 26px; }
.cart-checkout-note { font-size: 12px; color: var(--muted-2); line-height: 1.55; }

/* ============ CONSENT BAR ============ */
.consent-bar { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 70; display: none; justify-content: center; }
.consent-bar.open { display: flex; }
.consent-box { max-width: 1080px; width: 100%; background: var(--cream-card); border: 1px solid var(--tan); border-radius: 18px; box-shadow: 0 18px 40px rgba(44,42,38,.16); padding: 22px; display: grid; grid-template-columns: 1.6fr auto; gap: 22px; align-items: center; }
.consent-box h3 { font-weight: 700; font-size: 16px; margin: 0 0 8px; }
.consent-box p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.consent-actions button { font-family: inherit; }
.btn-consent-outline { border: 1px solid var(--tan); background: transparent; color: var(--text); border-radius: 999px; padding: 12px 20px; font-size: 14px; font-weight: 600; cursor: pointer; }
.btn-consent-accept { border: 0; background: var(--green-dark); color: var(--cream-card); border-radius: 999px; padding: 12px 22px; font-size: 14px; font-weight: 700; cursor: pointer; }

/* ============ TOAST ============ */
.toast { position: fixed; bottom: 110px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 80; background: var(--footer-bg); color: #EFF3EA; padding: 13px 22px; border-radius: 999px; font-size: 14px; font-weight: 600; box-shadow: 0 10px 26px rgba(44,42,38,.22); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ PAGE HEADERS ============ */
.page-head { max-width: 1180px; margin: 0 auto; padding: 48px 20px 20px; }
.page-head h1 { font-size: 46px; margin: 0 0 14px; }
.page-head p.intro { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 70ch; margin: 0 0 26px; }

/* ============ FORMS ============ */
.field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
  border: 1px solid var(--tan); border-radius: 10px; padding: 12px; font-size: 15px; background: var(--cream-card); font-family: inherit; width: 100%;
}
.field textarea { resize: vertical; }
.checkbox-field { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 400; }
.checkbox-field input { margin-top: 3px; accent-color: var(--green); }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.form-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 20px; padding: 26px; height: fit-content; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success h2 { font-family: var(--font-serif); font-size: 28px; margin-bottom: 10px; }
.form-success p { font-size: 15px; line-height: 1.7; color: #4A473F; margin: 0; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ============ LEGAL / TEXT PAGES ============ */
.legal-section h1 { font-size: 42px; margin: 0 0 8px; }
.legal-section .updated { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); margin-bottom: 22px; }
.legal-section h2 { font-size: 26px; margin: 24px 0 10px; }
.legal-section p { font-size: 16px; line-height: 1.75; color: #4A473F; }
.legal-section ul, .legal-section ol { margin: 0; padding-left: 20px; font-size: 16px; line-height: 1.85; color: #4A473F; }
.legal-section li { margin-bottom: 4px; }
.legal-box { background: var(--cream-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; font-size: 16px; line-height: 1.85; color: #4A473F; }

.info-table { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--cream-card); }
.info-table .row { display: grid; gap: 0; font-size: 15px; }
.info-table .cell { padding: 14px 16px; border-top: 1px solid var(--border-light); }
.info-table .row:first-child .cell { border-top: 0; font-weight: 700; background: var(--tan-bg); }

/* ============ FAQ ============ */
.faq-item { background: var(--cream-card); border: 1px solid var(--border); border-radius: 14px; padding: 4px 22px; margin-bottom: 12px; }
.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--green); font-size: 20px; line-height: 1; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer { font-size: 15.5px; line-height: 1.7; color: #4A473F; padding-bottom: 18px; }

/* ============ ABOUT ============ */
.stat-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.stat-card .num { font-family: var(--font-serif); font-size: 34px; color: var(--green-dark); }
.stat-card .label { font-size: 14px; color: var(--muted); margin-top: 6px; }
.team-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.team-card .body { padding: 16px; }
.team-card .name { font-weight: 600; }
.team-card .role { font-size: 13px; color: var(--muted-2); margin-top: 4px; }

/* ============ GUIDE ============ */
.guide-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 18px; padding: 26px; }
.guide-card .stage { font-family: var(--font-mono); font-size: 11px; color: #7C9A82; letter-spacing: .1em; }
.guide-card h2 { font-size: 26px; margin: 10px 0 12px; }
.guide-card p { font-size: 15px; line-height: 1.7; color: #4A473F; margin: 0 0 12px; }
.guide-card ul { margin: 0; padding-left: 20px; font-size: 15px; line-height: 1.8; color: #4A473F; }
.guide-cta { background: var(--green-pale-bg); border: 1px solid var(--green-pale-border); border-radius: 20px; padding: 30px; display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.guide-cta .text { flex: 1; min-width: 280px; }
.guide-cta h2 { font-size: 28px; margin: 0 0 10px; }
.guide-cta p { font-size: 15px; line-height: 1.7; color: #4C5A4E; margin: 0; }

/* ============ VET BOX / ARTICLE ============ */
.vet-box { background: var(--blue-bg); border: 1px solid var(--blue-bg-2); border-radius: 16px; padding: 22px; margin: 34px 0; }
.vet-box .title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.vet-box p { font-size: 15px; line-height: 1.65; color: var(--blue-text-dark); margin: 0; }
.article-header .back { cursor: pointer; font-size: 14px; font-weight: 600; color: var(--green); }
.article-header .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--muted-2); text-transform: uppercase; margin: 22px 0 12px; }
.article-header h1 { font-size: 42px; line-height: 1.15; margin: 0 0 16px; }
.article-header .byline { font-size: 14px; color: var(--muted-2); margin-bottom: 26px; }
.article-hero { aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; margin-bottom: 30px; background: var(--tan-bg); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body p.lead-p { font-size: 19px; line-height: 1.7; color: #3E3B34; margin: 0 0 26px; }
.article-body .sec { margin-bottom: 26px; }
.article-body .sec h2 { font-size: 27px; margin: 0 0 12px; }
.article-body .sec p { font-size: 16.5px; line-height: 1.75; color: #4A473F; margin: 0 0 14px; }
.article-related { border-top: 1px solid var(--border); padding-top: 24px; }
.article-related .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--muted-2); text-transform: uppercase; margin-bottom: 14px; }
.related-card { background: var(--cream-card); border: 1px solid var(--border); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.related-card .name { font-weight: 600; font-size: 14px; line-height: 1.35; }
.related-card .price { font-family: var(--font-serif); font-size: 19px; }

/* ============ SR-ONLY / MISC ============ */
.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; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--green-dark); color: #fff; padding: 12px 18px; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero h1 { font-size: 42px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .calc-inner { grid-template-columns: 1fr; padding: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .consent-box { grid-template-columns: 1fr; }
  .consent-actions { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(300px, 84vw);
    background: var(--cream-card); flex-direction: column; padding: 90px 24px 24px;
    transition: right .25s ease; box-shadow: -12px 0 30px rgba(44,42,38,.18); z-index: 50;
    gap: 4px;
  }
  .main-nav.open { right: 0; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-toggle { display: block; }
  .nav-scrim { display: none; position: fixed; inset: 0; background: rgba(44,42,38,.4); z-index: 45; }
  .nav-scrim.open { display: block; }
  .header-inner { padding: 12px 16px; gap: 14px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 34px !important; }
  .hero h1 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 20px 20px; }
}
@media (max-width: 480px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}
