:root {
  --forest-900: #16241c;
  --forest-800: #22362a;
  --forest-700: #2f4a39;
  --forest-600: #3d6049;
  --brass: #b8873f;
  --brass-dark: #8a6224;
  --brass-light: #e0b877;
  --chalk: #f7f4ed;
  --linen: #efe9dd;
  --paper: #ffffff;
  --ink: #1f241f;
  --muted: #61675d;
  --line: #ded6c6;
  --line-soft: #eae3d4;
  --warn: #8c3a1c;

  --radius: 4px;
  --radius-lg: 6px;
  --maxw: 1180px;

  --shadow-sm: 0 1px 2px rgba(22, 36, 28, .06);
  --shadow-md: 0 10px 26px -12px rgba(22, 36, 28, .34);
  --shadow-lg: 0 22px 48px -22px rgba(22, 36, 28, .45);

  --font-head: Candara, "Gill Sans Nova", "Gill Sans", Optima, "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Cascadia Mono", Consolas, "SF Mono", ui-monospace, "DejaVu Sans Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--chalk);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.14; font-weight: 700; }
h1 { font-size: clamp(2.05rem, 7vw, 3.5rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.65rem, 5vw, 2.5rem); letter-spacing: -.005em; }
h3 { font-size: 1.3rem; }

a { color: inherit; text-decoration: none; }
p a, .prose a { color: var(--brass-dark); text-decoration: underline; text-underline-offset: 3px; }
p a:hover, .prose a:hover { color: var(--forest-700); }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

strong { font-weight: 700; }

:focus-visible { outline: 3px solid var(--brass-dark); outline-offset: 2px; border-radius: 2px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.narrow { max-width: 780px; }

.skip {
  position: absolute; left: 8px; top: -60px; z-index: 400;
  background: var(--forest-800); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 700;
  transition: top .18s ease;
}
.skip:focus { top: 0; }

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.nowrap { white-space: nowrap; }

.section { padding: 58px 0; }
.section--tight { padding: 40px 0; }
.section--linen { background: var(--linen); border-block: 1px solid var(--line); }
.section--dark { background: var(--forest-800); color: rgba(238, 242, 232, .88); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--grid {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(47, 74, 57, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 74, 57, .055) 1px, transparent 1px);
  background-size: 26px 26px;
  border-block: 1px solid var(--line);
}

.head { max-width: 700px; margin-bottom: 30px; }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.head p { color: var(--muted); margin-top: 12px; font-size: 1.04rem; }
.section--dark .head p { color: rgba(238, 242, 232, .78); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: .74rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 700; color: var(--brass-dark); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--brass); flex: 0 0 22px; }
.section--dark .eyebrow { color: var(--brass-light); }
.section--dark .eyebrow::before { background: var(--brass-light); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--radius);
  font-family: inherit; font-weight: 700; font-size: .98rem; line-height: 1.2;
  cursor: pointer; border: 2px solid transparent; text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
  min-height: 46px;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: 0 0 auto; }
.btn-primary { background: var(--forest-700); color: #fff; }
.btn-primary:hover { background: var(--forest-900); }
.btn-brass { background: var(--brass); color: #24190a; }
.btn-brass:hover { background: var(--brass-light); }
.btn-outline { background: transparent; color: var(--forest-700); border-color: var(--forest-700); }
.btn-outline:hover { background: var(--forest-700); color: #fff; }
.btn-light { background: #fff; color: var(--forest-800); border-color: var(--line); }
.btn-light:hover { border-color: var(--forest-700); }
.btn-ghost-dark { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost-dark:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.btn-sm { padding: 9px 15px; min-height: 40px; font-size: .88rem; }
.btn-block { width: 100%; }

.site-head {
  position: sticky; top: 0; z-index: 100;
  background: var(--chalk);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.site-head.is-stuck { box-shadow: var(--shadow-md); }
.head-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; }

.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brand-txt { min-width: 0; }
.brand-name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.22rem; line-height: 1.05; color: var(--forest-900); letter-spacing: .01em; }
.brand-sub { display: block; font-size: .6rem; letter-spacing: .17em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 2px; }

.nav-links { display: none; align-items: center; gap: 22px; }
.nav-links a { font-size: .95rem; font-weight: 600; color: var(--forest-900); padding: 6px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { border-bottom-color: var(--brass); }
.nav-links a.is-active { border-bottom-color: var(--forest-700); }

.head-actions { display: flex; align-items: center; gap: 8px; }
.head-tel { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 12px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--forest-800); }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
  width: min(86vw, 330px); background: var(--forest-800); color: #fff;
  transform: translateX(102%); transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  padding: 76px 24px 28px; display: flex; flex-direction: column; gap: 2px;
  box-shadow: -18px 0 40px rgba(0, 0, 0, .3); overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a { color: #f1f5ec; font-size: 1.08rem; font-weight: 600; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .12); }

.drawer a.btn-brass { color: #24190a; }
.drawer .btn { margin-top: 20px; }
.drawer-close {
  position: absolute; top: 18px; right: 18px; width: 46px; height: 46px;
  background: rgba(255, 255, 255, .12); border: 0; color: #fff;
  font-size: 1.6rem; line-height: 1; border-radius: var(--radius); cursor: pointer;
}
.backdrop { position: fixed; inset: 0; background: rgba(15, 24, 18, .55); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.backdrop.open { opacity: 1; visibility: visible; }

.hero {
  background-color: var(--chalk);
  background-image:
    linear-gradient(rgba(47, 74, 57, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 74, 57, .05) 1px, transparent 1px);
  background-size: 26px 26px;
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 34px 0 40px; align-items: center; }
.hero-grid > * { min-width: 0; }
.hero-flag {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  background: var(--paper); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px; font-size: .8rem; font-weight: 600; color: var(--forest-800);
  margin-bottom: 16px;
}
.hero-flag b { color: var(--brass-dark); }
.hero h1 { color: var(--forest-900); }
.hero h1 em { font-style: normal; color: var(--brass-dark); }
.hero-lead { margin-top: 16px; font-size: 1.06rem; color: var(--muted); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 12px; margin-top: 30px; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-facts > div { min-width: 0; }
.hero-facts b { display: block; font-family: var(--font-mono); font-size: 1.5rem; color: var(--forest-700); line-height: 1.1; font-variant-numeric: tabular-nums; }
.hero-facts span { font-size: .82rem; color: var(--muted); }

.photo {
  position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #e9e4d6 0%, #dfe2d6 55%, #cfd8ca 100%);
  box-shadow: var(--shadow-md);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 14px 12px; color: #fff; font-size: .84rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(15, 26, 19, .86));
}
.r-16-9 { aspect-ratio: 16 / 9; }
.r-4-3 { aspect-ratio: 4 / 3; }
.r-3-2 { aspect-ratio: 3 / 2; }
.hero-photo { aspect-ratio: 4 / 3; }

.strip { background: var(--forest-800); color: rgba(238, 242, 232, .88); padding: 26px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 18px; }
.strip-grid > div { min-width: 0; display: flex; gap: 11px; align-items: flex-start; }
.strip svg { flex: 0 0 26px; color: var(--brass-light); margin-top: 2px; }
.strip h3 { font-family: var(--font-body); font-size: .95rem; color: #fff; margin-bottom: 2px; }
.strip p { font-size: .82rem; color: rgba(238, 242, 232, .72); line-height: 1.42; }

.cfg { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: start; }
.cfg > * { min-width: 0; }

.cfg-panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 20px 16px; box-shadow: var(--shadow-sm); }
.cfg-step { border: 0; padding: 0 0 22px; margin: 0 0 22px; border-bottom: 1px dashed var(--line); min-width: 0; }
.cfg-step:last-of-type { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.cfg-legend { display: block; padding: 0; margin-bottom: 10px; }
.cfg-legend .num { display: block; font-family: var(--font-mono); font-size: .72rem; color: var(--brass-dark); font-weight: 700; letter-spacing: .08em; }
.cfg-legend .cfg-h { display: block; font-family: var(--font-head); font-size: 1.12rem; font-weight: 700; color: var(--forest-900); line-height: 1.2; }
.cfg-hint { font-size: .84rem; color: var(--muted); margin-bottom: 12px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

.range-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.range-row input[type="range"] { flex: 1 1 200px; min-width: 0; height: 30px; accent-color: var(--forest-700); }
.range-out {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 1.32rem; font-weight: 700; color: var(--forest-800);
  background: var(--linen); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 5px 12px; white-space: nowrap;
}
.range-scale { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: .7rem; color: var(--muted); margin-top: 4px; }

.opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.opts.opts-3 { grid-template-columns: repeat(2, 1fr); }
.opts > * { min-width: 0; }
.opt { position: relative; display: block; }
.opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.opt span.box {
  display: flex; flex-direction: column; gap: 4px; height: 100%;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 11px 12px; cursor: pointer; background: var(--chalk);
  transition: border-color .16s ease, background-color .16s ease;
}
.opt:hover span.box { border-color: var(--forest-600); }
.opt input:checked + span.box { border-color: var(--forest-700); background: #fff; box-shadow: inset 0 0 0 1.5px var(--forest-700); }
.opt input:focus-visible + span.box { outline: 3px solid var(--brass-dark); outline-offset: 2px; }
.opt b { font-size: .92rem; font-weight: 700; color: var(--forest-900); line-height: 1.25; }
.opt small { font-size: .74rem; color: var(--muted); line-height: 1.35; display: block; }
.opt .price { font-family: var(--font-mono); font-size: .74rem; color: var(--brass-dark); font-weight: 700; }
.opt .shape-ico { width: 42px; height: 30px; color: var(--forest-700); }
.opt .chip { width: 100%; height: 16px; border-radius: 2px; border: 1px solid rgba(0, 0, 0, .16); }

.cfg-out { background: var(--forest-800); color: rgba(238, 242, 232, .9); border-radius: var(--radius-lg); padding: 20px 16px; border: 1px solid var(--forest-900); }
.cfg-out h3 { color: #fff; font-size: 1.1rem; }
.cfg-total { margin: 14px 0 4px; }
.cfg-total .lbl { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-light); font-weight: 700; }
.cfg-total .val { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: clamp(1.5rem, 6.5vw, 2.05rem); font-weight: 700; color: #fff; line-height: 1.15; margin-top: 4px; overflow-wrap: anywhere; }
.cfg-total .note { font-size: .8rem; color: rgba(238, 242, 232, .7); margin-top: 4px; }

.cfg-rows { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: .86rem; }
.cfg-rows th, .cfg-rows td { text-align: left; padding: 7px 0; border-bottom: 1px solid rgba(255, 255, 255, .13); vertical-align: top; }
.cfg-rows th { font-weight: 600; color: rgba(238, 242, 232, .82); font-size: .84rem; padding-right: 10px; }
.cfg-rows th small { display: block; font-weight: 400; color: rgba(238, 242, 232, .55); font-size: .74rem; }
.cfg-rows td { text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; white-space: nowrap; color: #fff; }
.cfg-rows tr.sum th, .cfg-rows tr.sum td { border-bottom: 0; border-top: 2px solid rgba(255, 255, 255, .3); font-weight: 700; padding-top: 10px; }

.cfg-meta { display: grid; gap: 10px; margin-top: 16px; }
.cfg-meta div { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); padding: 10px 12px; }
.cfg-meta .k { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-light); font-weight: 700; }
.cfg-meta .v { font-family: var(--font-mono); font-size: 1.05rem; color: #fff; font-weight: 700; }
.cfg-meta .d { font-size: .8rem; color: rgba(238, 242, 232, .72); margin-top: 2px; }

.cfg-notes { list-style: none; margin-top: 16px; display: grid; gap: 8px; }
.cfg-notes li { display: flex; gap: 8px; font-size: .84rem; color: rgba(238, 242, 232, .82); line-height: 1.45; }
.cfg-notes li::before { content: "→"; color: var(--brass-light); flex: 0 0 auto; font-weight: 700; }
.cfg-out .btn { margin-top: 18px; }
.cfg-legal { font-size: .76rem; color: rgba(238, 242, 232, .6); margin-top: 12px; line-height: 1.5; }

.cfg-cols { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
.cfg-cols > div { min-width: 0; background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--forest-700); border-radius: var(--radius); padding: 14px 16px; }
.cfg-cols h4 { font-size: .95rem; color: var(--forest-900); margin-bottom: 8px; }
.cfg-cols ul { list-style: none; display: grid; gap: 6px; }
.cfg-cols li { font-size: .87rem; color: var(--muted); padding-left: 18px; position: relative; }
.cfg-cols li::before { content: "✓"; position: absolute; left: 0; color: var(--forest-600); font-weight: 700; }
.cfg-cols div.minus { border-left-color: var(--brass); }
.cfg-cols div.minus li::before { content: "–"; color: var(--brass-dark); }

.sw-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sw-grid > * { min-width: 0; }
.sw {
  display: flex; flex-direction: column; text-align: left; gap: 0;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 0; cursor: pointer; overflow: hidden; font-family: inherit;
  transition: border-color .16s ease, transform .16s ease;
}
.sw:hover { border-color: var(--forest-600); transform: translateY(-2px); }
.sw[aria-pressed="true"] { border-color: var(--forest-700); box-shadow: inset 0 0 0 1.5px var(--forest-700); }
.sw-view { display: block; }
.sw-top { display: block; height: 16px; background: var(--top); border-bottom: 1px solid rgba(0, 0, 0, .22); }
.sw-view.stone .sw-top { background-image: linear-gradient(112deg, rgba(255, 255, 255, .5) 0 2px, transparent 2px 14px), linear-gradient(72deg, rgba(255, 255, 255, .3) 0 1px, transparent 1px 22px); }
.sw-doors { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(0, 0, 0, .25); height: 78px; }
.sw-doors i { display: block; background: var(--front); position: relative; }
.sw-view.wood .sw-doors i { background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, .07) 0 1px, transparent 1px 6px), repeating-linear-gradient(90deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px 17px); }
.sw-view.handle .sw-doors i::after { content: ""; position: absolute; top: 10px; width: 4px; height: 30px; background: rgba(255, 255, 255, .55); box-shadow: 0 0 0 1px rgba(0, 0, 0, .2); border-radius: 2px; }
.sw-view.handle .sw-doors i:first-child::after { right: 7px; }
.sw-view.handle .sw-doors i:last-child::after { left: 7px; }
.sw-view.groove .sw-doors i::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 7px; background: linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .05)); }
.sw-body { padding: 11px 12px 13px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.sw-body b { font-size: .9rem; color: var(--forest-900); line-height: 1.25; }
.sw-body small { font-size: .76rem; color: var(--muted); line-height: 1.35; }
.sw-body .priceVal { font-family: var(--font-mono); font-size: .8rem; font-weight: 700; color: var(--brass-dark); margin-top: 4px; }
.sw-pick { font-size: .74rem; font-weight: 700; color: var(--forest-700); margin-top: 6px; }
.sw[aria-pressed="true"] .sw-pick::before { content: "✓ "; }

.cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
.cards > * { min-width: 0; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-media { position: relative; aspect-ratio: 4 / 3; background: linear-gradient(140deg, #e9e4d6 0%, #dfe2d6 55%, #cfd8ca 100%); overflow: hidden; border: 0; padding: 0; width: 100%; cursor: default; display: block; }
button.card-media { cursor: zoom-in; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.035); }
.card-tag { position: absolute; top: 10px; left: 10px; background: rgba(34, 54, 42, .92); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 2px; }
.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 1.16rem; color: var(--forest-900); }
.card-place { font-size: .8rem; color: var(--brass-dark); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-top: 4px; }
.card-desc { font-size: .9rem; color: var(--muted); margin-top: 10px; }
.spec { list-style: none; margin-top: 14px; border-top: 1px solid var(--line-soft); }
.spec li { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--line-soft); font-size: .84rem; }
.spec li span { color: var(--muted); flex: 0 0 auto; }
.spec li b { font-family: var(--font-mono); font-variant-numeric: tabular-nums; color: var(--forest-800); text-align: right; min-width: 0; }
.card-price { margin-top: 14px; font-family: var(--font-mono); font-size: 1.25rem; font-weight: 700; color: var(--forest-700); }
.card-price small { display: block; font-family: var(--font-body); font-size: .74rem; color: var(--muted); font-weight: 400; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.filter-btn { background: var(--paper); border: 1.5px solid var(--line); color: var(--forest-800); border-radius: var(--radius); padding: 9px 16px; font-family: inherit; font-size: .9rem; font-weight: 700; cursor: pointer; min-height: 42px; transition: border-color .16s, background-color .16s, color .16s; }
.filter-btn:hover { border-color: var(--forest-600); }
.filter-btn[aria-pressed="true"] { background: var(--forest-700); border-color: var(--forest-700); color: #fff; }

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(12, 20, 15, .92); display: none; align-items: center; justify-content: center; padding: 18px; }
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 940px; width: 100%; }
.lightbox-inner img { width: 100%; height: auto; max-height: 72vh; object-fit: contain; border-radius: var(--radius); background: #1c2a20; }
.lightbox-cap { color: #fff; text-align: center; margin-top: 12px; font-weight: 600; font-size: .92rem; }
.lightbox-close { position: absolute; top: 14px; right: 14px; width: 46px; height: 46px; background: rgba(255, 255, 255, .14); border: 0; color: #fff; font-size: 1.6rem; line-height: 1; border-radius: var(--radius); cursor: pointer; }

.steps { list-style: none; display: grid; gap: 0; counter-reset: stepBox; }
.steps > li {
  position: relative; padding: 0 0 26px 52px; counter-increment: stepBox;
  border-left: 2px solid var(--line); margin-left: 17px;
}
.steps > li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps > li::before {
  content: counter(stepBox, decimal-leading-zero);
  position: absolute; left: -18px; top: 0; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--forest-700); color: #fff; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: .82rem; font-weight: 700;
}
.steps h3 { font-size: 1.14rem; color: var(--forest-900); }
.steps p { color: var(--muted); font-size: .93rem; margin-top: 6px; }
.step-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.step-meta span { font-family: var(--font-mono); font-size: .74rem; background: var(--linen); border: 1px solid var(--line); color: var(--forest-800); border-radius: 2px; padding: 3px 8px; }
.section--dark .steps > li { border-left-color: rgba(255, 255, 255, .18); }
.section--dark .steps p { color: rgba(238, 242, 232, .78); }
.section--dark .steps > li::before { background: var(--brass); color: #24190a; }
.section--dark .step-meta span { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); color: rgba(238, 242, 232, .9); }

.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
table.data { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .9rem; }
table.data th, table.data td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line-soft); }
table.data thead th { background: var(--linen); color: var(--forest-900); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
table.data td.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; white-space: nowrap; }
table.data tbody tr:last-child td { border-bottom: 0; }

.reviews { display: grid; grid-template-columns: 1fr; gap: 16px; }
.reviews > * { min-width: 0; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 20px; display: flex; flex-direction: column; }
.stars { color: var(--brass); letter-spacing: 2px; font-size: 1rem; }
.review blockquote { margin-top: 12px; font-size: 1rem; color: var(--ink); line-height: 1.6; }
.review-by { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 18px; }
.avatar { width: 42px; height: 42px; flex: 0 0 42px; border-radius: var(--radius); background: var(--forest-700); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.review-by b { display: block; font-size: .93rem; color: var(--forest-900); }
.review-by span { font-size: .8rem; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.contact-grid > * { min-width: 0; }
.info-list { list-style: none; display: grid; gap: 16px; margin-top: 22px; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; }
.info-list svg { flex: 0 0 22px; color: var(--brass-dark); margin-top: 3px; }
.info-list b { display: block; font-size: .93rem; color: var(--forest-900); }
.info-list span, .info-list a { font-size: .9rem; color: var(--muted); }
.info-list a { font-weight: 700; color: var(--forest-700); }
.info-list a:hover { color: var(--brass-dark); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 18px; box-shadow: var(--shadow-md); }
.form-card h3 { color: var(--forest-900); font-size: 1.28rem; }
.form-card .sub { color: var(--muted); font-size: .9rem; margin: 6px 0 18px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 14px; }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; min-width: 0; }
.field label { font-size: .85rem; font-weight: 700; color: var(--forest-900); }
.field .req { color: var(--warn); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 11px 12px; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fdfcf8; width: 100%; min-width: 0;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest-700); box-shadow: 0 0 0 3px rgba(47, 74, 57, .16); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--warn); background: #fdf5f2; }
.field .err { display: none; font-size: .8rem; color: var(--warn); font-weight: 600; }
.field .err.show { display: block; }
.field.check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.check input { width: auto; min-width: 0; margin-top: 4px; flex: 0 0 auto; }
.field.check label { font-weight: 500; font-size: .84rem; color: var(--muted); }
.field .fixed { background: var(--linen); font-family: var(--font-mono); font-size: .84rem; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 8px; }
.form-msg { display: none; margin-top: 14px; padding: 13px 15px; border-radius: var(--radius); background: #eef3ea; border: 1px solid var(--forest-600); color: var(--forest-900); font-size: .92rem; }
.form-msg.show { display: block; }

.site-foot { background: var(--forest-900); color: rgba(238, 242, 232, .78); padding: 44px 0 118px; }
.foot-warn { display: flex; gap: 10px; align-items: flex-start; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius); padding: 13px 16px; font-size: .85rem; color: rgba(238, 242, 232, .84); margin-bottom: 26px; line-height: 1.55; }
.foot-warn svg { flex: 0 0 20px; color: var(--brass-light); margin-top: 2px; }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
.foot-grid > * { min-width: 0; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-sub { color: rgba(238, 242, 232, .6); }
.foot-brand p { margin-top: 14px; font-size: .88rem; max-width: 44ch; }
.foot-col h4 { color: #fff; font-family: var(--font-body); font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.foot-col a, .foot-col p { display: block; font-size: .88rem; padding: 3px 0; color: rgba(238, 242, 232, .76); }
.foot-col a:hover { color: var(--brass-light); }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 28px; padding-top: 18px; font-size: .8rem; color: rgba(238, 242, 232, .58); }

.callbar {
  position: fixed; left: 0; right: 0; bottom: var(--frontage-h, 0px); z-index: 90;
  background: var(--forest-800); display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, .22);
  transition: bottom .15s ease;
}
.callbar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 8px; font-weight: 700; font-size: .95rem; color: #fff; min-height: 48px; }
.callbar a.call { background: var(--brass); color: #24190a; }
.callbar svg { width: 18px; height: 18px; flex: 0 0 18px; }

@media (min-width: 620px) {
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .sw-grid { grid-template-columns: repeat(3, 1fr); }
  .opts.opts-3 { grid-template-columns: repeat(3, 1fr); }
  .opts.opts-4 { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
  .hero-facts { grid-template-columns: repeat(4, 1fr); }
  .cfg-meta { grid-template-columns: 1fr 1fr; }
  .cfg-cols { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .cfg-panel, .cfg-out { padding: 26px 24px; }
  .form-card { padding: 28px 26px; }
}

@media (min-width: 940px) {
  .section { padding: 84px 0; }
  .section--tight { padding: 52px 0; }
  .wrap { padding: 0 26px; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .head-tel { display: inline-flex; }
  .callbar { display: none; }
  .site-foot { padding-bottom: 48px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 44px; padding: 56px 0 64px; }
  .hero-photo { aspect-ratio: 3 / 4; }
  .cfg { grid-template-columns: 1.25fr .95fr; gap: 26px; }
  .cfg-out { position: sticky; top: 92px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .sw-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: .85fr 1.15fr; }
  .steps { grid-template-columns: 1fr; }
  .steps.two-col { grid-template-columns: 1fr 1fr; column-gap: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

.photo figcaption { color: #202020; }
.review .stars { color: #986F34; }
.review-by .avatar { color: #AEB2AC; }
.steps h3 { color: #949B97; }
.steps p { color: #51564D; }
