:root {
  color-scheme: light;
  --ink: #13211b;
  --muted: #5d6a63;
  --pine: #1f5b45;
  --pine-dark: #153d31;
  --brass: #b9853b;
  --sand: #f7f4ee;
  --surface: #ffffff;
  --line: #dcd6c9;
  --focus: #0b6fbd;
  --shadow: 0 18px 50px rgba(19, 33, 27, .14);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--sand); line-height: 1.6; overflow-x: hidden; }
[hidden] { display: none !important; }
main { overflow-x: clip; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button { font: inherit; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.scroll-progress { position: fixed; left: 0; top: 0; z-index: 30; width: 100%; height: 3px; background: var(--brass); transform: scaleX(0); transform-origin: left center; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 20; background: var(--surface); padding: .65rem 1rem; border-radius: 4px; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(247, 244, 238, .94); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(31, 91, 69, .16); transition: box-shadow .25s ease, background-color .25s ease; }
.site-header.scrolled { background: rgba(247, 244, 238, .98); box-shadow: 0 10px 32px rgba(19, 33, 27, .12); }
.top-strip { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem clamp(1rem, 4vw, 4rem); color: #eff7f2; background: var(--pine-dark); font-size: .88rem; }
.phone-reveal, .email-reveal { cursor: pointer; }
.top-phone, .footer-phone, .inline-phone, .footer-email, .inline-email { border: 0; background: transparent; color: inherit; padding: 0; font: inherit; font-weight: 800; text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .18em; }
.inline-phone, .inline-email { color: var(--pine); }
.nav-wrap { min-height: 72px; padding: .75rem clamp(1rem, 4vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; min-width: 0; }
.brand-mark { width: 44px; height: 44px; border-radius: 6px; display: grid; place-items: center; background: var(--pine); padding: 2px; overflow: hidden; }
.brand-mark img { width: 40px; height: 40px; object-fit: contain; }
.brand strong, .footer-brand { display: block; font-size: 1.02rem; }
.brand small { display: block; color: var(--muted); font-size: .78rem; }
.site-nav { display: flex; align-items: center; gap: .35rem; }
.site-nav a { text-decoration: none; padding: .65rem .85rem; border-radius: 4px; color: #26362f; }
.site-nav a:hover { background: rgba(31, 91, 69, .1); }
.menu-toggle { display: none; flex: 0 0 44px; width: 44px; height: 44px; margin-left: auto; border: 1px solid var(--pine); background: var(--pine); border-radius: 4px; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero { position: relative; min-height: 72svh; display: grid; align-items: end; overflow: hidden; background: var(--ink); color: #fff; }
.hero picture, .hero picture::after { position: absolute; inset: 0; }
.hero img { width: 100%; height: 100%; object-fit: cover; opacity: .68; transform: scale(1.04); animation: heroDrift 16s ease-out forwards; }
.hero picture::after { content: ""; background: linear-gradient(90deg, rgba(19,33,27,.92), rgba(19,33,27,.58) 45%, rgba(19,33,27,.15)); }
.hero-content { position: relative; width: 100%; max-width: min(860px, 100vw); padding: 5rem clamp(1rem, 5vw, 6rem) 3.5rem; animation: heroContent .7s cubic-bezier(.2,.8,.2,1) both; }
.eyebrow { margin: 0 0 .75rem; color: var(--brass); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; font-size: .78rem; }
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 4.6rem); max-width: 900px; overflow-wrap: break-word; text-wrap: balance; }
h2 { font-size: clamp(1.75rem, 3vw, 3rem); }
h3 { font-size: 1.2rem; }
.hero-content p:not(.eyebrow), .page-hero p, .product-hero p { max-width: 720px; font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: rgba(255,255,255,.9); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.btn { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; gap: .5rem; border-radius: 4px; padding: .75rem 1.1rem; font: inherit; font-weight: 800; line-height: 1.2; text-decoration: none; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(19, 33, 27, .18); }
.btn.primary { background: var(--brass); color: #161006; }
.btn.secondary { color: #fff; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.btn.light { color: #fff; border-color: rgba(255,255,255,.55); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; max-width: 680px; margin: 2rem 0 0; }
.hero-stats div { border-left: 3px solid var(--brass); padding-left: .8rem; }
.hero-stats dt { font-size: 1.6rem; font-weight: 900; }
.hero-stats dd { margin: 0; color: rgba(255,255,255,.78); }
.js.reveal-ready .reveal { opacity: 0; transform: translateY(24px); }
.js.reveal-ready .reveal.is-visible { animation: revealUp .7s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: var(--stagger, 0ms); }
.section { padding: clamp(2.25rem, 5vw, 4.25rem) clamp(1rem, 4vw, 4rem); max-width: 1280px; margin: 0 auto; }
.section + .section { padding-top: clamp(1.25rem, 3vw, 2rem); }
.intro-section { padding-top: clamp(1rem, 2vw, 1.5rem); }
.section-head { max-width: 780px; margin-bottom: 2rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.product-card, .post-card, .mini-grid article, .contact-panel { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.product-card:hover, .post-card:hover, .mini-grid article:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(31, 91, 69, .32); }
.product-card a, .post-card a { display: block; text-decoration: none; }
.product-card img, .post-card img, .mini-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.product-card:hover img, .post-card:hover img, .mini-grid article:hover img { transform: scale(1.04); }
.product-card span, .post-card h2, .mini-grid h3 { display: block; padding: 1rem 1rem 0; font-size: 1.15rem; font-weight: 900; }
.product-card p, .post-card p, .mini-grid p { padding: 0 1rem 1rem; color: var(--muted); margin: .55rem 0 0; }
.split, .product-hero, .product-details, .contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.split img, .product-hero img { border-radius: 8px; box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.check-list { padding: 0; list-style: none; display: grid; gap: .65rem; }
.check-list li { position: relative; padding-left: 1.7rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pine); font-weight: 900; }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
table { width: 100%; min-width: 720px; border-collapse: collapse; }
caption { text-align: left; padding: 1rem; color: var(--muted); }
th, td { padding: .9rem 1rem; text-align: left; border-top: 1px solid var(--line); }
th { background: #edf2ec; color: var(--pine-dark); }
tbody tr:nth-child(even) { background: #faf8f3; }
.after-table, .note { color: var(--muted); }
.calculator { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(320px, .85fr); gap: 1rem; align-items: start; }
.calculator-form, .calculator-results { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: clamp(1rem, 3vw, 1.5rem); box-shadow: 0 10px 28px rgba(19, 33, 27, .06); }
.calc-fieldset { margin: 0 0 1rem; padding: 0; border: 0; }
.calc-fieldset legend { margin-bottom: .65rem; font-weight: 900; }
.segmented { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .35rem; padding: .3rem; border: 1px solid var(--line); border-radius: 8px; background: #f2efe7; }
.segment { min-height: 42px; border: 0; border-radius: 6px; background: transparent; color: var(--ink); font: inherit; font-weight: 800; cursor: pointer; transition: background-color .2s ease, color .2s ease, transform .2s ease; }
.segment:hover { transform: translateY(-1px); }
.segment.active { background: var(--pine); color: #fff; box-shadow: 0 8px 18px rgba(31, 91, 69, .18); }
.calc-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
.calc-grid label { display: grid; gap: .35rem; color: var(--muted); font-weight: 800; }
.calc-grid input { width: 100%; min-height: 46px; border: 1px solid var(--line); border-radius: 6px; padding: .65rem .75rem; color: var(--ink); background: #fff; font: inherit; font-weight: 700; }
.calc-grid input:focus { border-color: var(--pine); outline: 3px solid rgba(31, 91, 69, .16); }
.calculator-results { position: sticky; top: 104px; display: grid; gap: .75rem; }
.calculator-results div { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.calculator-results span { color: var(--muted); font-weight: 800; }
.calculator-results strong { text-align: right; font-size: 1.2rem; }
.calculator-results p { margin: .25rem 0 0; color: var(--muted); }
.cta-band { margin: 0 clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem); padding: clamp(1.5rem, 4vw, 3rem); display: flex; justify-content: space-between; gap: 1rem; align-items: center; background: var(--pine-dark); color: #fff; border-radius: 8px; }
.cta-band p { color: rgba(255,255,255,.84); max-width: 680px; }
.page-hero { padding: clamp(6rem, 10vw, 9rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem); background: var(--pine-dark); color: #fff; }
.page-hero.compact { min-height: 360px; display: grid; align-content: end; }
.page-hero p { color: rgba(255,255,255,.86); }
.small-catalog .mini-grid, .post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.faq { max-width: 960px; }
details { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 1rem 1.2rem; margin: .75rem 0; }
summary { cursor: pointer; font-weight: 900; }
details[open] { box-shadow: 0 12px 30px rgba(19, 33, 27, .08); }
.product-hero { padding: clamp(6rem, 10vw, 8rem) clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem); background: linear-gradient(90deg, var(--pine-dark), #244c49); color: #fff; }
.product-details { align-items: start; }
.product-table { grid-column: 1 / -1; min-width: 0; }
.product-summary { max-width: 760px; }
.contact-panel { padding: 1.25rem; align-self: stretch; }
.contact-panel dl { display: grid; gap: .5rem; }
.contact-panel dt { font-weight: 900; }
.contact-panel dd { margin: 0 0 .7rem; color: var(--muted); }
.hours { grid-template-columns: 1fr auto; }
.hours dt, .hours dd { margin: 0; }
.map-panel { grid-column: 1 / -1; min-height: 420px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: var(--surface); }
.map-panel iframe { width: 100%; height: 420px; border: 0; display: block; }
.article { max-width: 860px; margin: 0 auto; padding: clamp(6rem, 10vw, 8rem) clamp(1rem, 4vw, 2rem); }
.article header img { width: 100%; border-radius: 8px; margin-top: 1.5rem; }
.article header p:not(.eyebrow), .article-body p { font-size: 1.12rem; color: var(--muted); }
.article-body { margin-top: 2rem; }
.post-card span { display: block; padding: 1rem 1rem 0; color: var(--brass); font-weight: 800; font-size: .9rem; }
.site-footer { padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem); background: #111b17; color: rgba(255,255,255,.78); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; max-width: 1280px; margin: 0 auto; }
.site-footer h2 { font-size: 1rem; color: #fff; }
.site-footer a, .footer-brand { color: #fff; }
.sticky-actions { position: fixed; right: 1rem; bottom: 1rem; display: flex; flex-direction: column; gap: .5rem; z-index: 9; }
.sticky-actions a, .sticky-actions button { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 8px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); text-decoration: none; font-weight: 900; color: var(--pine); cursor: pointer; padding: 0; font-size: 1rem; }
@keyframes heroContent {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroDrift {
  from { transform: scale(1.08) translateY(0); }
  to { transform: scale(1.02) translateY(-8px); }
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; inset: 100% 1rem auto 1rem; display: none; flex-direction: column; align-items: stretch; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: .5rem; box-shadow: var(--shadow); }
  .site-nav.open { display: flex; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .product-hero, .product-details, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .calculator { grid-template-columns: 1fr; }
  .calculator-results { position: static; }
  .small-catalog .mini-grid, .post-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .top-strip { display: none; }
  .brand small { display: none; }
  .hero-content { padding-top: 4rem; padding-bottom: 3rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .product-grid, .small-catalog .mini-grid, .post-grid { grid-template-columns: 1fr; }
  .segmented, .calc-grid { grid-template-columns: 1fr; }
  .calculator-results div { display: grid; gap: .2rem; }
  .calculator-results strong { text-align: left; }
  h1 { font-size: 2.1rem; }
  .sticky-actions { display: none; }
}
@media (max-width: 720px) {
  .table-scroll { overflow-x: visible; border: 0; background: transparent; }
  table { min-width: 0; }
  table, thead, tbody, tr, td { display: block; width: 100%; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  caption { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: 8px; margin-bottom: .75rem; }
  tr { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; margin-bottom: .75rem; overflow: hidden; }
  tbody tr:nth-child(even) { background: var(--surface); }
  td { display: grid; grid-template-columns: minmax(110px, 38%) minmax(0, 1fr); gap: .75rem; padding: .75rem .9rem; border-top: 1px solid var(--line); }
  td:first-child { border-top: 0; }
  td::before { content: attr(data-label); color: var(--muted); font-weight: 800; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .js.reveal-ready .reveal { opacity: 1; transform: none; }
}