
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:wght@500;700;800&family=Manrope:wght@400;500;600;700&display=swap');
:root {
  --bg: #f3f1eb;
  --surface: #fffdf7;
  --surface-alt: #e5ebe3;
  --text: #1b2b25;
  --muted: #65756d;
  --line: #cdd7cf;
  --accent: #315f4b;
  --accent-soft: #d5e5da;
  --accent-two: #b87436;
  --accent-three: #7a9b8a;
  --display-font: 'DM Serif Display', sans-serif;
  --body-font: 'Manrope', sans-serif;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 32px 80px rgba(16, 25, 40, 0.10);
  --shadow-sm: 0 12px 30px rgba(16, 25, 40, 0.06);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.topbar {
  padding: 0.75rem 0;
  background: var(--accent-three);
  color: white;
  font-size: 0.92rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}
.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--muted);
}
.nav a:hover,
.tool-link:hover {
  color: var(--accent);
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.pill {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}
.cart-button,
.button-primary,
.button-secondary {
  border: 0;
  cursor: pointer;
}
.cart-button,
.button-secondary {
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.button-primary {
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-two));
  color: white;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.hero {
  padding: 2rem 0 1rem;
}
.hero-shell,
.story-card,
.policy-shell,
.auth-shell,
.checkout-shell,
.account-shell {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-xl);
}
.hero-shell {
  padding: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 1.5rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.08;
  font-family: var(--display-font);
}
h1 {
  margin-top: 1rem;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
.hero-copy p,
.section-copy,
.muted {
  color: var(--muted);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero-stat {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--line);
}
.hero-stat strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--display-font);
}
.hero-products {
  display: grid;
  gap: 0.9rem;
}
.feature-card,
.product-card,
.category-card,
.signal-card {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: none;
}
.feature-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}
.feature-card img,
.product-image,
.category-card figure,
.product-visual {
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(0,0,0,0.03));
  border-radius: var(--radius-md);
}
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.section {
  padding: 1rem 0 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1rem;
}
.section-head p {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
}
.signal-card,
.story-card {
  padding: 1.25rem;
}
.product-card {
  overflow: hidden;
}
.product-card .product-body {
  padding: 1rem;
}
.product-image {
  aspect-ratio: 1 / 1;
  padding: 1.2rem;
}
.product-meta,
.price-row,
.proof-row,
.inline-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-row {
  justify-content: space-between;
  margin-top: 0.8rem;
}
.price strong {
  font-size: 1.22rem;
  font-family: var(--display-font);
}
.price span {
  margin-left: 0.5rem;
  color: var(--muted);
  text-decoration: line-through;
}
.proof-row,
.small-note,
.helper,
.policy-shell p,
.policy-shell li,
.checkout-shell p,
.checkout-shell li,
.auth-shell p,
.account-shell p {
  color: var(--muted);
  font-size: 0.95rem;
}
.badge {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}
.product-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.95rem;
}
.category-card {
  padding: 1rem;
}
.category-card figure {
  aspect-ratio: 1.2 / 1;
  padding: 1.4rem;
  margin: 0 0 1rem;
}
.story-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}
.policy-shell,
.checkout-shell,
.auth-shell,
.account-shell {
  padding: 1.6rem;
}
.hero-ledger {
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
}
.hero-ledger-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
}
.hero-ledger-item:last-child {
  border-bottom: 0;
}
.hero-ledger-item img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #fff;
}
.service-table {
  display: grid;
  border: 1px solid var(--line);
  background: var(--surface);
}
.service-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child {
  border-bottom: 0;
}
.department-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--surface);
}
.department-overview a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.department-overview a:nth-child(2n) {
  border-right: 0;
}
.department-overview figure {
  margin: 0;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  background: #fff;
}
.department-overview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.legal-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  margin-top: 1rem;
}
.legal-link-grid a {
  padding: 0.95rem 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}
.legal-link-grid a:nth-child(3n) {
  border-right: 0;
}
.policy-doc-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.policy-doc-nav {
  position: sticky;
  top: 104px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 22px;
}
.policy-doc-nav h3 {
  margin: 0 0 14px;
  font: 700 13px/1 Arial, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #64748b;
}
.policy-doc-nav ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}
.policy-doc-nav li,
.policy-doc-nav a {
  font: 600 13px/1.6 Arial, sans-serif;
  color: var(--text);
}
.policy-doc {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 30px;
}
.policy-doc-intro {
  margin: 0 0 24px;
  font: 500 16px/1.85 Arial, sans-serif;
  color: #334155;
}
.policy-section {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
}
.policy-section:first-child {
  padding-top: 0;
  border-top: 0;
  margin-top: 0;
}
.policy-section-index {
  margin-bottom: 10px;
  font: 700 12px/1 Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #94a3b8;
}
.policy-section h2 {
  margin: 0 0 12px;
  font-size: 32px;
}
.policy-section h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  font-family: Arial, sans-serif;
}
.policy-section p {
  margin: 0 0 14px;
  font: 400 15px/1.92 Arial, sans-serif;
  color: #334155;
}
.policy-clause {
  margin-top: 16px;
}
.policy-legal-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font: 500 14px/1.8 Arial, sans-serif;
  color: #64748b;
}
.policy-shell ul,
.policy-shell ol,
.checkout-shell ul {
  padding-left: 1.2rem;
}
.shop-toolbar {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 0.9rem;
  margin: 1rem 0 1.4rem;
}
.field,
.textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
}
.product-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
}
.product-visual {
  padding: 1.8rem;
}
.detail-list {
  display: grid;
  gap: 0.75rem;
}
.detail-list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.mini-card {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.department-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.4rem 0 0.8rem;
}
.department-link {
  min-width: 180px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
}
.catalog-list {
  display: grid;
  gap: 0.85rem;
}
.product-row {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) 190px;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.product-row-image {
  aspect-ratio: 1 / 1;
  padding: 0.8rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(0,0,0,0.03));
}
.product-row h3 {
  margin-top: 0.35rem;
}
.rating-stars {
  color: var(--accent);
  letter-spacing: 0.05em;
  font-weight: 800;
}
.comparison-table,
.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}
.comparison-table th,
.comparison-table td,
.spec-table th,
.spec-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.comparison-table th,
.spec-table th {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-card {
  padding: 1rem;
  border: 1px solid var(--line);
  background: var(--surface);
}
.review-card blockquote {
  margin: 0.65rem 0 0;
  color: var(--muted);
}
.policy-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}
.policy-index a {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: rgba(255,255,255,0.98);
  box-shadow: -24px 0 48px rgba(15, 23, 42, 0.16);
  transform: translateX(100%);
  transition: transform 180ms ease;
  z-index: 40;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-head,
.cart-items,
.cart-foot {
  padding: 1rem 1.2rem;
}
.cart-head,
.cart-foot {
  border-bottom: 1px solid var(--line);
}
.cart-foot {
  margin-top: auto;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 0.5rem;
}
.footer {
  margin-top: 36px;
  padding: 0;
  background: #0f172a;
  color: #e2e8f0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1.2fr;
  gap: 22px;
  padding: 40px 0 24px;
}
.footer h3,
.footer h4 {
  color: #fff;
}
.footer h4 {
  margin: 0 0 14px;
  font: 700 12px/1 Arial, sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #94a3b8;
}
.footer p {
  margin: 0;
  font: 400 14px/1.7 Arial, sans-serif;
  color: #cbd5e1;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font: 400 14px/1.6 Arial, sans-serif;
}
.footer a {
  color: #e2e8f0;
}
.footer-brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  margin-bottom: 14px;
  font: 800 15px/1 Arial, sans-serif;
  letter-spacing: .12em;
}
.payments-strip {
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-top: 6px;
}
.payments-track {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 0;
}
.payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #e2e8f0;
}
.payment-chip img {
  width: 26px;
  height: 18px;
  flex: 0 0 auto;
}
.payment-chip span {
  font: 800 11px/1 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-bottom {
  padding: 14px 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font: 600 12px/1.4 Arial, sans-serif;
  color: #94a3b8;
}
.hero-shell,
.story-card,
.product-panel,
.checkout-shell,
.auth-shell,
.account-shell,
.policy-shell,
.policy-doc,
.policy-doc-nav,
.mini-card,
.review-card,
.hero-ledger,
.service-table,
.department-overview {
  box-shadow: none;
  border-radius: 0;
}
.hero-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9));
  border-color: var(--line);
}
.product-panel,
.story-card,
.checkout-shell,
.auth-shell,
.account-shell,
.policy-shell {
  background: var(--surface);
  border-color: var(--line);
}
.product-visual,
.product-row-image,
.feature-card img,
.product-image,
.category-card figure {
  border-radius: 0;
}
.hidden {
  display: none !important;
}
@media (max-width: 980px) {
  .hero-shell,
  .story-layout,
  .product-layout,
  .footer-grid,
  .shop-toolbar,
  .policy-doc-shell,
  .department-overview {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .product-row {
    grid-template-columns: 112px minmax(0, 1fr);
  }
  .product-row .product-actions,
  .product-row .price {
    grid-column: 1 / -1;
  }
  .policy-index {
    grid-template-columns: 1fr;
  }
  .department-overview a {
    border-right: 0;
  }
}
@media (max-width: 640px) {
  .header-inner,
  .header-tools {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav {
    gap: 0.7rem;
  }
  .grid-4,
  .grid-2,
  .split,
  .hero-stat-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    grid-template-columns: 1fr;
  }
  .product-actions {
    flex-direction: column;
  }
  .product-row {
    grid-template-columns: 1fr;
  }
  .service-row,
  .hero-ledger-item,
  .department-overview a {
    grid-template-columns: 1fr;
  }
  .legal-link-grid {
    grid-template-columns: 1fr;
  }
  .legal-link-grid a {
    border-right: 0;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: auto -12% -15% auto;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, rgba(0, 183, 168, 0.16), transparent 62%);
  pointer-events: none;
}
.hero-shell {
  overflow: hidden;
}
.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto -2rem -3rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  border: 1px solid rgba(34, 72, 255, 0.18);
}

/* BELLHAVEN FARM field-tech editorial override: deliberately distinct from
   the rounded marketplace rhythm used by the base 3C pack. */
:root { --bg:#e7e4da; --surface:#f8f5ee; --surface-alt:#d8e1d7; --text:#13261e; --muted:#53645a; --line:#9fb0a2; --accent:#163c2b; --accent-soft:#cddfce; --accent-two:#b85522; --accent-three:#7d9f82; --radius-xl:0; --radius-lg:0; --radius-md:0; --radius-sm:0; --shadow-lg:none; --shadow-sm:none; }
body { background:#e7e4da; background-image:linear-gradient(rgba(19,38,30,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(19,38,30,.045) 1px,transparent 1px); background-size:28px 28px; }
.container { width:min(1280px,calc(100% - 2.5rem)); }
.topbar { background:#163c2b; color:#f7f3e8; border-bottom:1px solid #d4b58f; letter-spacing:.025em; }
.header { background:#f7f3e8; backdrop-filter:none; border-bottom:2px solid #163c2b; }
.header-inner { min-height:78px; padding:.65rem 0; }
.nav { gap:1.25rem; color:#163c2b; font-size:.79rem; font-weight:800; letter-spacing:.085em; text-transform:uppercase; }
.nav a { position:relative; padding:.55rem 0; }
.nav a::after { content:""; position:absolute; left:0; bottom:.25rem; height:2px; width:0; background:var(--accent-two); transition:width .2s ease; }
.nav a:hover::after { width:100%; }
.pill { border-radius:0; background:#d7e2d3; border:1px solid #163c2b; text-transform:uppercase; letter-spacing:.08em; font-size:.66rem; }
.cart-button,.button-secondary { border-radius:0; box-shadow:none; border:1px solid #163c2b; background:transparent; }
.button-primary { border-radius:0; box-shadow:none; background:#163c2b; border:1px solid #163c2b; text-transform:uppercase; letter-spacing:.075em; font-size:.78rem; }
.button-primary:hover { background:#b85522; border-color:#b85522; }
.hero { padding:0 0 1.5rem; }
.hero-shell { border:0; box-shadow:none; border-radius:0; padding:0; gap:0; background:#163c2b; grid-template-columns:minmax(0,1.06fr) minmax(390px,.94fr); }
.hero-shell::after { display:none; }
.hero-copy { padding:clamp(2.4rem,6vw,6.5rem) clamp(1.6rem,5vw,5.6rem); color:#f8f5ee; border-right:1px solid rgba(248,245,238,.25); }
.hero-copy .muted,.hero-copy p { color:#d4ded4; max-width:43rem; font-size:1.05rem; }
.hero-copy h1 { color:#f8f5ee; font-size:clamp(3.1rem,6.2vw,6.3rem); letter-spacing:-.045em; max-width:12ch; }
.eyebrow { border-radius:0; background:transparent; border:1px solid #d4b58f; color:#f2c793; text-transform:uppercase; letter-spacing:.15em; font-size:.68rem; }
.hero-stat-grid { gap:0; border-top:1px solid rgba(248,245,238,.25); border-bottom:1px solid rgba(248,245,238,.25); }
.hero-stat { border:0; border-right:1px solid rgba(248,245,238,.25); border-radius:0; background:transparent; padding:1.15rem .85rem; }
.hero-stat:last-child { border-right:0; }
.hero-stat strong { color:#f2c793; font-family:var(--body-font); font-size:1.85rem; }
.hero-ledger { display:grid; gap:0; background:#d8e1d7; }
.hero-ledger-item { border-radius:0; border:0; border-bottom:1px solid #8fa28f; padding:.85rem 1.1rem; grid-template-columns:104px minmax(0,1fr); background:transparent; }
.hero-ledger-item:hover { background:#f2c793; }
.hero-ledger-item img { border-radius:0; aspect-ratio:1; object-fit:cover; }
.hero-ledger-item h3 { font-family:var(--body-font); font-size:.93rem; line-height:1.3; }
.badge { border-radius:0; background:#163c2b; color:#f8f5ee; font-size:.64rem; letter-spacing:.1em; text-transform:uppercase; }
.section { padding:clamp(3.8rem,7vw,7.8rem) 0; }
.section:nth-of-type(even) { background:rgba(248,245,238,.73); border-top:1px solid #9fb0a2; border-bottom:1px solid #9fb0a2; }
.section-head { align-items:end; gap:2rem; border-bottom:2px solid #163c2b; padding-bottom:1.25rem; margin-bottom:1.8rem; }
.section-head h2 { max-width:18ch; font-size:clamp(2.25rem,4vw,4.25rem); letter-spacing:-.035em; }
.section-head .eyebrow { color:#163c2b; border-color:#163c2b; }
.service-table { border:2px solid #163c2b; }
.service-row { padding:1.2rem 1.3rem; min-height:94px; }
.service-row strong { color:#163c2b; font-size:1.07rem; }
.department-strip { display:grid; grid-template-columns:repeat(5,1fr); gap:0; border-left:2px solid #163c2b; border-top:2px solid #163c2b; }
.department-link { border-radius:0; border:0; border-right:2px solid #163c2b; border-bottom:2px solid #163c2b; min-height:122px; padding:1rem; background:#f8f5ee; }
.department-link:nth-child(3n) { background:#d8e1d7; }
.department-link:hover { background:#f2c793; transform:none; }
.department-overview { grid-template-columns:repeat(2,minmax(0,1fr)); gap:0; border-left:1px solid #163c2b; border-top:1px solid #163c2b; }
.department-overview a,.department-overview a:nth-child(2n) { border-radius:0; border:0; border-right:1px solid #163c2b; border-bottom:1px solid #163c2b; background:#f8f5ee; padding:0; grid-template-columns:43% 1fr; }
.department-overview a:nth-child(3n) { background:#d8e1d7; }
.department-overview a > div { padding:1.35rem; }
.department-overview figure,.department-overview img { border-radius:0; }
.department-overview figure { min-height:230px; }
.catalog-list { border-top:2px solid #163c2b; }
.catalog-row { border-radius:0 !important; border-left:0 !important; border-right:0 !important; box-shadow:none !important; }
.catalog-row:nth-child(odd) { background:rgba(248,245,238,.78); }
.product-card,.feature-card,.category-card,.signal-card { border-radius:0; box-shadow:none; }
.footer { background:#102b20; border-top:6px solid #b85522; color:#e8eee4; }
.footer .muted,.footer p { color:#b7c5b9; }
.footer h3,.footer h4 { color:#f2c793; }
@media (max-width:960px) { .hero-shell { grid-template-columns:1fr; } .hero-copy { border-right:0; } .department-strip { grid-template-columns:repeat(2,1fr); } }
@media (max-width:650px) { .container { width:min(100% - 1.25rem,1280px); } .header-tools .pill,.header-tools .tool-link { display:none; } .hero-copy { padding:3.2rem 1.2rem; } .hero-copy h1 { font-size:clamp(2.8rem,15vw,4.1rem); } .hero-stat-grid,.department-strip,.department-overview { grid-template-columns:1fr; } .hero-stat { border-right:0; border-bottom:1px solid rgba(248,245,238,.25); } .department-overview a,.department-overview a:nth-child(2n) { grid-template-columns:40% 1fr; } }
