:root {
  --forest: #14342c;
  --forest-2: #1d4a3e;
  --moss: #2f6a57;
  --cream: #f4eee4;
  --paper: #fffaf2;
  --ink: #1c1712;
  --muted: #6e645a;
  --line: rgba(28, 23, 18, 0.1);
  --wood: #c17a32;
  --amber: #e3a54a;
  --blue: #2b74c2;
  --blue-deep: #163a66;
  --ember: #d3542c;
  --ok: #1f7a4d;
  --shadow: 0 24px 60px rgba(20, 52, 44, 0.16);
  --radius: 22px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; }
a { color: inherit; }

.vyshyvanka {
  background-image:
    linear-gradient(90deg, transparent 46%, rgba(196, 40, 40, .18) 46%, rgba(196, 40, 40, .18) 54%, transparent 54%),
    linear-gradient(0deg, transparent 46%, rgba(43, 116, 194, .12) 46%, rgba(43, 116, 194, .12) 54%, transparent 54%);
  background-size: 18px 18px;
}

/* SPLASH — silent 2s logo ident */
#splash {
  --t: 2s;
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  padding: max(28px, env(safe-area-inset-top)) 24px max(28px, env(safe-area-inset-bottom));
  background: radial-gradient(ellipse at 50% 42%, #1b4a38 0%, #14342c 58%, #0e241c 100%);
  overflow: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
#splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
}
.splash-ident {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; color: #f4eee4;
}
.splash-mark {
  width: clamp(56px, 18vw, 76px); height: auto;
  display: block;
  transform-origin: 50% 55%;
  animation: markIn var(--t) cubic-bezier(.2,.8,.2,1) both;
}
.mark-house {
  fill: none;
  stroke: #e3a54a;
  stroke-width: 3.2;
  stroke-linejoin: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: houseDraw var(--t) ease both;
}
.mark-log {
  fill: #c17a32;
  opacity: 0;
  animation: logIn var(--t) ease both;
}
.mark-log-b { animation-delay: .06s; }
.splash-word {
  font-family: var(--display);
  font-size: clamp(28px, 8vw, 44px);
  letter-spacing: -.04em;
  margin: 14px 0 0;
  font-weight: 700;
  animation: wordIn var(--t) ease both;
}
.splash-drova { color: #f4eee4; }
.splash-home { color: #e3a54a; }
.splash-tag {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c9d6c8;
  animation: tagIn 2.4s ease both;
}
@keyframes markIn {
  0% { transform: scale(.72); opacity: 0; }
  35%, 100% { transform: scale(1); opacity: 1; }
}
@keyframes houseDraw {
  0% { stroke-dashoffset: 240; }
  35%, 100% { stroke-dashoffset: 0; }
}
@keyframes logIn {
  0%, 12% { opacity: 0; transform: translateY(4px); }
  35%, 100% { opacity: 1; transform: none; }
}
@keyframes wordIn {
  0%, 30% { opacity: 0; transform: translateY(10px); }
  80%, 100% { opacity: 1; transform: none; }
}
@keyframes tagIn {
  0%, 58% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .splash-mark, .mark-house, .mark-log, .splash-word, .splash-tag {
    animation: none !important; opacity: 1; transform: none;
  }
  .mark-house { stroke-dashoffset: 0; }
  #splash { transition: opacity .2s ease, visibility .2s ease; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 22px 10px 16px;
  background: rgba(244, 238, 228, .86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; align-self: stretch; }
.brand-mark { width: 56px; height: 56px; flex: none; }
.brand b { font-family: var(--display); font-size: 17px; letter-spacing: -.03em; display: block; }
.brand small { color: var(--muted); font-size: 11px; }
.nav-links { display: flex; gap: 18px; font-weight: 600; font-size: 14px; }
.nav-links a { text-decoration: none; opacity: .78; }
.nav-links a:hover { opacity: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-director {
  display: flex; align-items: center; gap: 10px;
  border: 0; background: transparent; padding: 0; margin: 0 4px 0 0;
  cursor: pointer; color: inherit; text-align: left; font: inherit;
}
.nav-director:hover .nav-director-photo { box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(20, 52, 44, .22); }
.nav-director-photo {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  object-fit: cover; object-position: 50% 16%;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(20, 52, 44, .14);
}
.nav-director-meta b {
  display: block; font-size: 12px; line-height: 1.2; font-weight: 800;
}
.nav-director-meta small {
  display: block; font-size: 11px; color: var(--muted); line-height: 1.25;
}
.nav-contact { padding: 10px 16px; }
.nav-cart {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: 6px 12px 6px 8px;
  cursor: pointer; text-align: left; color: inherit;
}
.nav-cart[hidden] { display: none !important; }
.nav-cart-ico { font-size: 16px; line-height: 1; }
.nav-cart b { display: block; font-size: 12px; line-height: 1.2; }
.nav-cart small { display: block; font-size: 11px; color: var(--muted); line-height: 1.2; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; text-decoration: none;
  border-radius: 999px; padding: 12px 20px; font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(180deg, #3b8be0, #1f5fa8);
  color: #fff; box-shadow: 0 10px 24px rgba(31, 95, 168, .35);
}
.btn-wood {
  background: linear-gradient(180deg, #e8b15a, #c17a32);
  color: #2a1a08; box-shadow: 0 10px 24px rgba(193, 122, 50, .35);
}
.btn-ghost { background: #fff; border: 1px solid var(--line); color: var(--ink); }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* HERO */
.hero {
  position: relative; min-height: min(92dvh, 920px);
  display: grid; place-items: end stretch;
  overflow: hidden; color: #fff;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); animation: ken 18s ease-in-out infinite alternate;
}
@keyframes ken { to { transform: scale(1.14) translate(-1.5%, -1%); } }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,20,18,.25) 0%, rgba(10,20,18,.15) 35%, rgba(10,20,18,.72) 100%),
    linear-gradient(90deg, rgba(14,40,34,.55), transparent 55%);
}
.hero-ornament {
  position: absolute; left: 0; right: 0; top: 0; height: 14px; opacity: .55;
}
.hero-copy {
  position: relative; z-index: 1; padding: 48px 6vw 56px;
  max-width: 920px;
}
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
  animation: fadeUp .7s .1s both;
}
.hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 6vw, 68px); line-height: 1.05;
  letter-spacing: -.04em; margin: 14px 0 12px;
  animation: fadeUp .7s .2s both;
}
.hero p.lead { font-size: clamp(16px, 2vw, 20px); max-width: 640px; opacity: .92; animation: fadeUp .7s .32s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; animation: fadeUp .7s .42s both; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px; margin-top: 28px; max-width: 720px; animation: fadeUp .7s .52s both;
}
.stat {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; padding: 12px 14px; backdrop-filter: blur(8px);
}
.stat b { font-family: var(--display); font-size: 22px; display: block; }
.stat span { font-size: 12px; opacity: .8; }

.duel {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: stretch;
  margin: 18px 0 8px; max-width: 560px; animation: fadeUp .7s .28s both;
}
.duel-col {
  border-radius: 18px; padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.duel-col small { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .75; }
.duel-col b { font-family: var(--display); font-size: clamp(22px, 4vw, 32px); line-height: 1.1; }
.duel-col span { font-size: 12px; opacity: .85; }
.duel-col em { font-style: normal; font-weight: 800; color: #b7e3c8; }
.duel-col.dull {
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.12);
  opacity: .78; text-decoration: line-through; text-decoration-color: rgba(255,80,60,.7);
}
.duel-col.hot {
  background: rgba(227,165,74,.22); border: 2px solid #e3a54a;
  box-shadow: 0 8px 28px rgba(227,165,74,.25);
}
.duel-vs {
  align-self: center; font-family: var(--display); font-size: 18px; font-weight: 700;
  background: #e3a54a; color: #1a1714; border-radius: 999px;
  width: 54px; height: 54px; display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.why-row {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px;
  max-width: 560px; margin-top: 14px; animation: fadeUp .7s .36s both;
}
.why {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px; padding: 10px 12px; backdrop-filter: blur(8px);
  display: grid; grid-template-columns: auto 1fr; gap: 2px 8px; align-items: center;
}
.why i { font-style: normal; font-size: 22px; grid-row: span 2; }
.why b { font-size: 13px; }
.why span { font-size: 11px; opacity: .8; grid-column: 2; }

.pipe {
  display: flex; align-items: stretch; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.pipe-step {
  flex: 1; min-width: 160px; background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 18px 16px; text-align: center;
  box-shadow: 0 10px 30px rgba(20,52,44,.06);
}
.pipe-step.on { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,116,194,.18); }
.pipe-ico { font-size: 32px; line-height: 1; margin-bottom: 8px; }
.pipe-step b { display: block; font-family: var(--display); font-size: 18px; }
.pipe-step span { display: block; margin-top: 6px; font-size: 13px; color: var(--muted); }
.pipe-arrow { align-self: center; font-size: 28px; color: var(--moss); font-weight: 800; }

.vs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.vs-card {
  border-radius: 22px; padding: 18px 20px; border: 1px solid var(--line);
}
.vs-card small { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.vs-card p { margin: 8px 0 10px; font-size: 14px; }
.vs-card b { font-family: var(--display); font-size: 26px; display: block; }
.vs-card.bad { background: #f6ece6; color: #6a3a32; }
.vs-card.bad p { text-decoration: line-through; opacity: .7; }
.vs-card.good { background: #e8f4ea; color: #14342c; border-color: #b7d9be; }
.vs-row-slim {
  margin-top: 6px; gap: 6px;
  min-height: 0;
}
.vs-row-slim .vs-card {
  padding: 5px 8px 6px; border-radius: 10px;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.vs-row-slim .vs-card p { margin: 0; font-size: 10px; }
.vs-row-slim .vs-card b { font-size: 13px; }
.vs-row-slim .vs-card small { font-size: 9px; }

.stage-card {
  --stage-h: min(42dvh, 340px);
  height: var(--stage-h, min(42dvh, 340px));
  min-height: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: 0 10px 30px rgba(20,52,44,.06);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.stage-card h2 { font-size: clamp(18px, 4vw, 26px); margin: 4px 0 8px; }
#origin.block { padding: 36px 0; }
.origin-stage {
  text-align: center;
  height: auto;
  min-height: 0;
  padding: 10px 12px 8px;
}
.origin-stage h2 { font-size: clamp(16px, 3.4vw, 22px); margin: 2px 0 4px; }
.origin-stage .pipe {
  flex: 0 0 auto;
  margin: 6px 0 0;
  align-items: center;
  gap: 6px;
}
.origin-stage .pipe-step {
  padding: 8px 10px 9px;
  min-width: 0;
  border-radius: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: none;
}
.origin-stage .pipe-ico { font-size: 16px; margin-bottom: 2px; }
.origin-stage .pipe-step b { font-size: 13px; }
.origin-stage .pipe-step span {
  font-size: 12px;
  line-height: 1.25;
  margin-top: 2px;
  color: var(--muted);
  flex: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.origin-stage .pipe-arrow { font-size: 16px; }

.director-dlg .director-card {
  max-width: 560px;
  width: min(560px, 100%);
  padding: 0 0 24px;
  text-align: left;
}
.director-full {
  margin: 0;
  background: #1a1714;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.director-full img {
  width: 100%;
  height: auto;
  max-height: min(58dvh, 620px);
  object-fit: contain;
  object-position: center top;
  margin: 0 auto;
}
.director-bio { padding: 18px 24px 0; }
.director-bio .kicker { margin: 0 0 4px; }
.director-bio h3 {
  font-family: var(--display);
  margin: 0 0 12px;
  padding: 0 36px 0 0;
  text-align: left;
}
.director-bio p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.director-bio p:last-child { margin-bottom: 0; }

.catalog-stage .muted { font-size: 13px; margin: 0 0 10px; }
.wood-rail {
  display: flex; gap: 12px; overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  flex: 1; padding-bottom: 6px;
}
.wood-rail .wood {
  flex: 0 0 62%; max-width: 240px; scroll-snap-align: start;
  display: flex; flex-direction: column;
  min-height: 0;
}
.wood-rail .wood img {
  flex: 7 0 0;
  height: 0;
  min-height: 0;
  object-fit: cover;
}
.wood-rail .wood div {
  flex: 3 0 0;
  min-height: 0;
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.wood-rail .wood strong { font-size: 15px; display: block; line-height: 1.2; }
.wood-rail .wood p {
  display: block;
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.35;
}
.reviews-stage .reviews {
  display: flex; gap: 12px; overflow-x: auto; flex: 1;
  scroll-snap-type: x mandatory; margin-top: 8px;
}
.reviews-stage .reviews .card {
  flex: 0 0 78%; max-width: 280px; scroll-snap-align: start;
  padding: 14px; font-size: 14px;
}
.reviews-stage .reviews .card p { margin: 8px 0; }
#book-go { width: 100%; margin-top: 16px; }
#book-go[disabled] { opacity: .45; cursor: not-allowed; }

.why-card { text-align: center; }
.why-card b {
  font-family: var(--display); font-size: 32px; display: block; color: var(--moss); margin-bottom: 4px;
}

.marquee-wrap { overflow: hidden; background: var(--forest); color: #efe6d6; padding: 12px 0; }
.marquee { display: flex; gap: 40px; width: max-content; animation: slide 28s linear infinite; font-weight: 700; letter-spacing: .04em; }
.marquee span { white-space: nowrap; }
@keyframes slide { to { transform: translateX(-50%); } }

.wrap { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
section.block { padding: 84px 0; scroll-margin-top: 88px; }
.reveal { opacity: 0; transform: translateY(28px); animation: none; }
.reveal.in { animation: fadeUp .7s both; }
.kicker { color: var(--moss); font-weight: 800; letter-spacing: .14em; font-size: 12px; text-transform: uppercase; }
h2 {
  font-family: var(--display); letter-spacing: -.03em;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.12; margin: 8px 0 12px;
}
.muted { color: var(--muted); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.photo-card {
  position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.badge-float {
  position: absolute; left: 18px; bottom: 18px;
  background: #fff; color: var(--ink); border-radius: 16px; padding: 12px 14px;
  box-shadow: var(--shadow); font-weight: 700; animation: bob 2.2s ease-in-out infinite alternate;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: 0 10px 30px rgba(20,52,44,.06);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon-dot {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(180deg, #3b8be0, #1f5fa8); color: #fff; font-size: 22px; margin-bottom: 12px;
}

.wood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wood {
  border: 0; text-align: left; cursor: pointer; padding: 0; overflow: hidden;
  border-radius: 24px; background: #fff; box-shadow: 0 12px 30px rgba(20,52,44,.08);
  position: relative; color: var(--ink);
}
.wood img { height: 180px; width: 100%; object-fit: cover; }
.wood div { padding: 16px 16px 18px; }
.wood.on { outline: 3px solid var(--blue); transform: translateY(-4px); }
.price-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(20, 52, 44, .9); color: #fff; border-radius: 16px;
  padding: 8px 12px; font-size: 12px; font-weight: 800;
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px; line-height: 1.15;
}
.price-tag s { opacity: .65; font-weight: 600; font-size: 11px; }
.price-tag b { font-family: var(--display); font-size: 16px; font-weight: 700; }
.save-chip {
  position: absolute; top: 12px; left: 12px;
  background: #e3a54a; color: #1a1714; border-radius: 999px;
  padding: 5px 9px; font-size: 12px; font-weight: 800;
}
.truck .per {
  display: block; font-style: normal; font-family: var(--display);
  font-size: 16px; margin-top: 4px; color: var(--moss);
}
.truck-cubes {
  display: block; font-size: 12px; color: var(--muted); font-weight: 600;
}

.truck-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.truck {
  border: 2px solid var(--line); background: #fff; border-radius: 22px; padding: 7px 12px 8px;
  cursor: pointer; text-align: left; color: inherit;
  display: flex; flex-direction: column; gap: 2px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.truck-art {
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 39px; margin: 0 0 4px;
  background: linear-gradient(180deg, transparent 60%, rgba(193,122,50,.08));
  border-radius: 12px;
}
.truck-svg { display: block; height: auto; max-width: 84px; max-height: 32px; }
.truck-svg-8 { width: 32%; }
.truck-svg-12 { width: 39%; }
.truck-svg-16 { width: 45%; }
.truck-svg-20 { width: 50%; }
.truck strong { font-family: var(--display); font-size: 16px; letter-spacing: -.02em; }
.truck-cubes { display: block; font-size: 12px; color: var(--muted); margin: 2px 0 0; }
.truck-hint { font-size: 12px; }
.truck.on {
  border-color: #c17a32;
  background: #fff4e4;
  box-shadow: 0 0 0 3px rgba(193, 122, 50, .28);
}
.truck.on .truck-bed { fill: #7a4018; }
.truck.on .truck-log { filter: brightness(1.08); }

.calc-step-fleet {
  background: linear-gradient(180deg, #fff8ee 0%, #fff 72%);
  border: 2px solid rgba(193, 122, 50, .4);
  border-radius: 22px;
  padding: 16px 16px 18px;
  box-shadow: 0 10px 28px rgba(193, 122, 50, .1);
}
.calc-step-fleet .calc-n {
  background: linear-gradient(180deg, #e8b15a, #c17a32);
  color: #2a1a08;
}

/* CALCULATOR */
.calc-shell {
  display: flex; flex-direction: column;
  background: #fff; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.calc-body { padding: 22px 22px 8px; }
.calc-step { margin-bottom: 22px; }
.calc-step-head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.calc-step-head h3 { font-family: var(--display); font-size: 20px; margin: 0; letter-spacing: -.02em; }
.calc-n {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--forest); color: #fff; font-weight: 800; font-size: 13px;
}
.calc-hint { margin: 0 0 12px 38px; font-size: 13px; }
.wood-picks { display: flex; flex-wrap: wrap; gap: 8px; }
.wood-pick {
  border: 1px solid var(--line); background: #fffaf2; border-radius: 999px;
  padding: 10px 14px; cursor: pointer; text-align: left; color: inherit;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.wood-pick b { font-size: 14px; }
.wood-pick small { font-size: 12px; color: var(--moss); font-weight: 700; }
.wood-pick.on { border-color: var(--blue); background: #eef5fd; box-shadow: 0 0 0 3px rgba(43,116,194,.18); }
.place-tools { display: flex; gap: 8px; align-items: stretch; margin-bottom: 10px; }
.place-tools .search-box { flex: 1; min-width: 0; }
.place-tools #findme { flex: none; white-space: nowrap; }
.map-pane {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: #e8efe8;
}
#map { height: 180px; min-height: 160px; max-height: 220px; width: 100%; }
.search-box { position: relative; }
.search-box input {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px;
  background: #fffaf2; font-size: 15px;
}
.suggest {
  position: absolute; left: 0; right: 0; top: 48px; z-index: 800;
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); display: none; max-height: 260px; overflow-y: auto;
}
.suggest button {
  display: block; width: 100%; text-align: left; border: 0; background: #fff;
  padding: 10px 12px; cursor: pointer; font-size: 13px;
}
.suggest button:hover { background: var(--cream); }
.calc-err {
  margin: 10px 0 0; color: #a33a22; font-weight: 700; font-size: 14px;
}
#calc-go { width: 100%; margin-top: 14px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.quote {
  padding: 22px; background: linear-gradient(180deg, #163a66, #10263d); color: #fff;
}
.quote h3 { font-family: var(--display); margin: 0 0 8px; }
.quote .btn { width: 100%; margin-top: 16px; }
.quote-total { border: 0; padding-top: 12px; font-size: 18px; }
.quote-total b { font-family: var(--display); font-size: 28px; }
.row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.big-price { font-family: var(--display); font-size: 34px; margin: 10px 0 4px; }
.save { color: #b7e3c8; font-weight: 700; }
.hub-chip { font-size: 13px; opacity: .85; margin-bottom: 10px; }
.split-bill {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center;
  margin: 4px 0 8px;
}
.bill-wood, .bill-road {
  background: rgba(255,255,255,.08); border-radius: 16px; padding: 12px;
  text-align: center;
}
.bill-wood small, .bill-road small { display: block; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.bill-wood b, .bill-road b { font-family: var(--display); font-size: 20px; display: block; margin: 4px 0; }
.bill-wood span, .bill-road span { font-size: 11px; opacity: .75; }
.bill-plus { font-size: 22px; font-weight: 800; opacity: .6; }
.bill-road { outline: 1px dashed rgba(227,165,74,.7); }

/* CALENDAR */
.cal-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px; gap: 10px; max-width: 520px;
}
.cal-nav strong { text-transform: capitalize; font-family: var(--display); }
.cal-nav .btn[disabled] { opacity: .35; cursor: not-allowed; transform: none; }
.cal-wrap { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 520px; }
.month {
  background: #fff; border-radius: 22px; padding: 16px; border: 1px solid var(--line);
}
.month head, .month-head { display: flex; justify-content: space-between; align-items: center; font-weight: 800; }
.dow, .days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.dow { color: var(--muted); font-size: 11px; margin: 10px 0 6px; font-weight: 700; }
.days button {
  border: 0; background: #f6f1e8; border-radius: 12px; padding: 10px 0 8px;
  cursor: pointer; min-height: 54px; position: relative;
}
.days button[disabled] { opacity: .3; cursor: not-allowed; background: transparent; }
.days button .d { font-weight: 800; display: block; }
.days button .p { font-size: 10px; color: var(--moss); }
.days button.on { background: var(--blue); color: #fff; }
.days button.on .p { color: #d7ecff; }
.days button.busy { background: #f3d7b0; }
.month-head { margin-bottom: 8px; }
.cal-slots {
  margin: 0 0 12px;
  padding: 10px 10px 8px;
  background: #f6f1e8;
  border-radius: 14px;
}
.cal-slots-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--moss);
}
.cal-slots.wait { opacity: .72; }
.cal-slots.ready { opacity: 1; outline: 2px solid rgba(20, 52, 44, .12); }
.slots { display: flex; gap: 6px; flex-wrap: nowrap; margin-top: 0; }
.slots button {
  flex: 1; min-width: 0;
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 6px; cursor: pointer; font-weight: 700; font-size: 12px;
}
.slots button:disabled { cursor: default; }
.slots button.on { background: var(--forest); color: #fff; border-color: transparent; }

.checkout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  background: #fff; border-radius: 28px; padding: 22px; border: 1px solid var(--line);
}
.checkout-under {
  grid-template-columns: 1fr;
  margin-top: 18px;
  gap: 0;
}
#book h2 { font-family: var(--display); margin: 0 0 14px; }
#book[hidden] { display: none !important; }
label { display: block; font-weight: 700; font-size: 13px; margin: 12px 0 6px; }
input[type=text], input[type=tel], input[type=file], textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; background: #fffaf2;
}
input[type=file] { padding: 10px 12px; }
.addr-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}
.shot-preview {
  margin: 8px 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}
.shot-preview[hidden] { display: none; }
.shot-preview img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  background: #111;
}
.shot-preview-ok {
  margin: 0;
  padding: 8px 12px;
  font-weight: 700;
  color: var(--ok);
  font-size: 13px;
  background: #e8f4ea;
}
.shot-preview-ok[hidden] { display: none; }
.pays { display: grid; gap: 8px; }
.pay {
  display: flex; gap: 10px; align-items: flex-start; justify-content: space-between; text-align: left;
  border: 1px solid var(--line); background: #fff; border-radius: 16px; padding: 12px; cursor: pointer;
}
.pay em { font-style: normal; font-family: var(--display); font-weight: 700; white-space: nowrap; }
.pay.on { border-color: var(--blue); background: #eef5fd; }
.pay-box {
  margin-top: 14px; padding: 14px; border-radius: 16px;
  background: #f6f1e8; border: 1px dashed rgba(28, 23, 18, .16);
}
.pay-explain { margin: 0 0 10px; font-size: 14px; }
.req { margin: 0; display: grid; gap: 8px; }
.req > div { display: grid; grid-template-columns: 110px 1fr auto; gap: 8px; align-items: start; font-size: 14px; }
.req dt { color: var(--muted); font-weight: 600; }
.req dd { margin: 0; font-weight: 700; word-break: break-all; }
.req-copy {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  white-space: nowrap;
  align-self: start;
}
.req-copy:hover { background: #eef5fd; border-color: var(--blue); color: var(--blue-deep); }
.req-copy[hidden] { display: none; }
.pay-missing { margin: 10px 0 0; color: #a33a22; font-weight: 700; font-size: 13px; }
#order-btn { width: 100%; margin-top: 16px; }

.request-grid {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 18px; align-items: start;
}
.tg-card { text-decoration: none; display: flex; flex-direction: column; gap: 8px; }
.tg-card .btn { align-self: flex-start; margin-top: 8px; }
.lead-teaser { display: none; }
.lead-form { grid-template-columns: 1fr; }
.contact-ways {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px;
}
.contact-way {
  border: 1px solid var(--line); background: #fff; border-radius: 14px;
  padding: 10px 6px; cursor: pointer; font-weight: 700; font-size: 13px;
}
.contact-way.on { border-color: var(--blue); background: #eef5fd; color: var(--blue-deep); }
.lead-ok {
  background: #e8f4ea; border: 1px solid #b7d9be; border-radius: 22px;
  padding: 22px; text-align: center;
}
.lead-ok h3 { font-family: var(--display); font-size: 22px; margin: 0 0 8px; }
.lead-ok .btn { margin-top: 12px; }
footer.site a { color: inherit; text-decoration: none; }
footer.site a:hover { text-decoration: underline; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.stars { color: #d4a017; letter-spacing: 2px; }

.faq details {
  background: #fff; border-radius: 16px; padding: 14px 16px; margin: 8px 0; border: 1px solid var(--line);
}
.faq summary { cursor: pointer; font-weight: 800; }

footer.site {
  background: var(--forest); color: #efe6d6; padding: 12px 0 10px; margin-top: 8px;
}
.foot-slim {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 13px;
}
.foot-slim strong { font-family: var(--display); font-size: 14px; }
.foot-slim span, .foot-slim a { opacity: .88; }
.toast {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 90;
  background: var(--forest); color: #fff; padding: 14px 16px; border-radius: 16px;
  box-shadow: var(--shadow); display: none; max-width: 320px;
}
.field-hint { margin: 0 0 4px; font-size: 12px; color: var(--muted); font-weight: 600; }
#confirm-err { margin: 12px 0 0; }
#confirm-btn { width: 100%; margin-top: 16px; }
.confirm-actions {
  position: sticky; bottom: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 14px);
  padding-bottom: 2px;
}
.ok-modal {
  position: fixed; inset: 0; z-index: 70; background: rgba(10,20,18,.55);
  display: none; place-items: center; padding: 20px;
}
.ok-modal.show { display: grid; }
.ok-card {
  background: #fff; border-radius: 24px; padding: 28px; max-width: 460px; text-align: center;
  animation: fadeUp .4s both;
}
.ok-card img { width: 120px; margin: 0 auto 8px; }
.dlg-card {
  position: relative;
  max-width: 520px; width: min(520px, 100%); text-align: left;
  max-height: min(92dvh, 860px); overflow: auto;
}
.dlg-card h3 { font-family: var(--display); margin: 0 0 6px; text-align: center; padding: 0 40px; }
.dlg-back {
  position: absolute; top: 16px; left: 16px;
  appearance: none; border: 0; background: transparent;
  width: 40px; height: 40px; padding: 0; margin: 0;
  border-radius: 50%; cursor: pointer; color: var(--ink);
  font-size: 22px; line-height: 1; font-weight: 700;
  display: grid; place-items: center;
}
.dlg-back:hover { background: rgba(28, 23, 18, .06); }
.dlg-sum { text-align: center; margin: 0 0 12px; }
.dlg-form { padding: 0; border: 0; background: transparent; }
.dlg-form .btn-ghost { width: 100%; margin-top: 8px; }
.cart-sheet-card { text-align: center; }
.cart-sheet-card h3 { padding: 0 40px; }
.cart-sheet-card .muted { margin: 0 0 12px; }
.cart-timer {
  font-family: var(--display); font-size: clamp(28px, 7vw, 40px);
  font-weight: 700; letter-spacing: -.03em; margin: 8px 0 6px; color: var(--forest);
}
.cart-timer[hidden], .cart-timer-note[hidden] { display: none !important; }
.cart-timer-note { margin: 8px 0 16px; font-weight: 700; color: #a33a22; }
#cart-continue { width: 100%; margin-top: 12px; }
#cart-continue[hidden] { display: none !important; }
#cart-sheet-close { width: 100%; margin-top: 8px; }
.nav-cart.wait-pay { border-color: rgba(193, 122, 50, .45); background: #fff8ee; }
.nav-cart.pay-expired { border-color: rgba(163, 58, 34, .35); background: #f8eee8; }

@media (max-width: 960px) {
  .nav { padding: 8px 8px; gap: 6px; }
  .nav-links { display: none; }
  .nav-actions { gap: 5px; min-width: 0; }
  .nav-actions .btn { padding: 8px 10px; font-size: 12px; }
  .brand { gap: 6px; min-width: 0; }
  .brand-mark { width: 36px; height: 36px; }
  .brand b { font-size: 13px; }
  .brand small { display: none; }
  .nav-director { margin: 0; }
  .nav-director-meta { display: none; }
  .nav-director-photo { width: 32px; height: 32px; }
  .request-grid { grid-template-columns: 1fr 1fr; gap: 10px; align-items: stretch; }
  .contact-ways { grid-template-columns: 1fr 1fr; }
  .split, .cal-wrap, .checkout, .wood-grid, .grid-3 { grid-template-columns: 1fr; }
  #origin.block { padding: 22px 0; }
  .director-card { max-width: 100%; }
  .director-full img { max-height: min(48dvh, 420px); }
  .director-bio { padding: 14px 16px 0; }
  .director-bio p { font-size: 14px; }
  .origin-stage .pipe-step span { white-space: normal; }
  .vs-row { grid-template-columns: 1fr 1fr; }
  .truck-grid { grid-template-columns: 1fr 1fr; }
  .truck { padding: 6px 10px 7px; }
  .truck-art { min-height: 35px; }
  .place-tools { flex-direction: column; }
  .calc-hint { margin-left: 0; }
  .calc-step-fleet { padding: 14px 12px 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .why-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px; margin-top: 10px;
  }
  .why {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 8px 6px; gap: 2px;
  }
  .why i { font-size: 18px; grid-row: auto; }
  .why b { font-size: 11px; }
  .why span { font-size: 10px; grid-column: auto; }
  .duel { max-width: none; gap: 6px; margin: 10px 0 4px; }
  .duel-col { padding: 8px 8px 10px; }
  .duel-col b { font-size: 18px; }
  .duel-vs { width: 40px; height: 40px; font-size: 14px; }
  .pipe-arrow { display: none; }
  #map { height: 168px; min-height: 160px; max-height: 200px; }
  section.block { padding: 48px 0; }
  .hero { min-height: 0; }
  .hero-copy { padding: 16px 16px 20px; }
  .hero h1 { font-size: clamp(24px, 7vw, 34px); margin: 10px 0 8px; }
  .hero-bg { animation: none; transform: none; object-position: 70% 50%; }
  .hero-actions { flex-direction: column; margin-top: 12px; gap: 8px; }
  .hero-actions .btn { width: 100%; padding: 13px 18px; }
  .eyebrow { font-size: 12px; padding: 5px 10px; }
  .marquee-wrap { padding: 8px 0; }
  .marquee { font-size: 13px; gap: 28px; }
  .tg-card, .lead-teaser {
    padding: 14px 12px; gap: 6px; min-width: 0; height: 100%;
  }
  .lead-teaser {
    display: flex; flex-direction: column;
    width: 100%; margin: 0; border: 1px solid var(--line);
    background: var(--paper); border-radius: var(--radius);
    text-align: left; color: inherit; font: inherit; cursor: pointer;
    box-shadow: 0 10px 30px rgba(20,52,44,.06);
  }
  .tg-card b, .lead-teaser b {
    font-family: var(--display); font-size: 14px; line-height: 1.25; letter-spacing: -.02em;
  }
  .tg-card p, .lead-teaser p {
    margin: 0; font-size: 12px; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .tg-card .btn, .lead-teaser .btn {
    align-self: stretch; justify-content: center; margin-top: auto;
    padding: 8px 10px; font-size: 13px;
  }
  .lead-form { display: none; }
  .request-grid.lead-open .lead-form {
    display: grid; grid-column: 1 / -1;
  }
  .slots button { font-size: 11px; padding: 8px 4px; }
  .wrap { width: min(1160px, calc(100% - 24px)); }
  input[type=text], input[type=tel], input[type=file], textarea, .search-box input { font-size: 16px; }
  .nav-cart b { font-size: 11px; }
  .nav-cart small { font-size: 10px; }
  .req > div { grid-template-columns: 1fr auto; gap: 2px 8px; }
  .req dt { grid-column: 1 / -1; }
}
@media (max-width: 360px) {
  .nav-contact { display: none; }
}
