
:root {
  --ink: #172018;
  --muted: #607064;
  --paper: #fbfaf4;
  --line: #d9ddcf;
  --green: #17472b;
  --leaf: #2f7d46;
  --clay: #bd7347;
  --stone: #eef0e6;
  --white: #fff;
  --shadow: 0 22px 70px rgba(23, 32, 24, .13);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(12, 14, 12, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(214, 171, 80, .22);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; color: inherit; min-width: 0; }
.brand-logo {
  width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .35));
  transition: transform .25s ease, filter .25s ease;
}
.brand-logo:hover { transform: scale(1.03); filter: drop-shadow(0 2px 6px rgba(214, 171, 80, .55)); }
.nav-links { display: flex; gap: 22px; font-size: 14px; font-weight: 750; }
.nav-links a { color: rgba(255, 255, 255, .84); }
.nav-links a:hover { color: #f1c38b; }
.nav-call {
  padding: 10px 15px;
  border: 1px solid rgba(241, 195, 139, .64);
  border-radius: 8px;
  color: #f4d69e;
  background: rgba(255, 255, 255, .04);
  font-weight: 850;
  font-size: 14px;
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: stretch;
  background: #101b13;
  color: #fff;
}
.hero-media { min-height: 640px; position: relative; overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroPan 18s ease-in-out infinite alternate;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 27, 19, .04), rgba(16, 27, 19, .58));
}
@keyframes heroPan {
  from { transform: scale(1.04) translateX(-1.4%); }
  to { transform: scale(1.1) translateX(1.4%); }
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(24px, 5vw, 72px);
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero .eyebrow, .cta-band .eyebrow, .split-section .eyebrow { color: #f1c38b; }
.hero h1, .subhero h1, .detail-hero h1, .contact-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: 0;
  font-weight: 950;
}
.hero p, .subhero p, .detail-hero p, .contact-hero p {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255, 255, 255, .76);
  max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 8px;
  border: 1px solid var(--green);
  background: var(--green);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(23, 71, 43, .18);
  cursor: pointer;
}
.button.secondary { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .24); color: white; box-shadow: none; }
.button.light { background: #f8f1df; color: #17331f; border-color: #f8f1df; }
.button.ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .5); box-shadow: none; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 42px 0 0; max-width: 560px; }
.trust-row div { border-top: 1px solid rgba(255, 255, 255, .2); padding-top: 14px; }
.trust-row dt { font-size: 34px; font-weight: 950; }
.trust-row dd { margin: 0; color: rgba(255, 255, 255, .68); font-size: 13px; }
.trust-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: #f2efe3;
  border-bottom: 1px solid var(--line);
}
.trust-stack span {
  padding: 10px 13px;
  border: 1px solid #cfd6c5;
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}
.section { padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 58px); }
.section.compact { padding-top: 70px; }
.section.muted { background: var(--stone); }
.section-head { max-width: 880px; margin: 0 0 30px; }
.section h2, .split-section h2, .cta-band h2, .premium-gallery h2 {
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.02;
  margin: 0 0 16px;
  letter-spacing: 0;
}
.section-head p:not(.eyebrow), .split-section p { color: var(--muted); font-size: 18px; }
.before-after-section { background: #fff; }
.ba-wrap {
  position: relative;
  height: min(68vw, 680px);
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #111;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.ba-wrap img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; user-drag: none; }
.ba-after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); pointer-events: none; }
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 1;
}
.ba-wrap:after {
  content: "";
  position: absolute;
  left: var(--pos);
  top: 0;
  width: 3px;
  height: 100%;
  margin-left: -1.5px;
  background: #fff;
  box-shadow: 0 0 0 999px rgba(0, 0, 0, .08);
  z-index: 2;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  left: var(--pos);
  top: 50%;
  width: 48px;
  height: 48px;
  margin-left: -24px;
  margin-top: -24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .28), 0 0 0 2px rgba(255, 255, 255, .6);
  z-index: 3;
  pointer-events: none;
  transition: transform .15s ease;
}
.ba-wrap:hover .ba-handle { transform: scale(1.08); }
.ba-wrap.dragging .ba-handle { transition: none; transform: scale(1.12); }
.ba-handle:before,
.ba-handle:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -6px;
}
.ba-handle:before {
  left: 13px;
  border-width: 6px 8px 6px 0;
  border-color: transparent #2a2a2a transparent transparent;
}
.ba-handle:after {
  right: 13px;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #2a2a2a;
}
.ba-label {
  position: absolute;
  top: 18px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  font-weight: 950;
  z-index: 3;
  pointer-events: none;
}
.ba-label.before { left: 18px; }
.ba-label.after { right: 18px; }
.material-picker {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}
.material-tabs {
  display: grid;
  gap: 10px;
}
.material-tabs button {
  width: 100%;
  text-align: left;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--green);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}
.material-tabs button.active { background: var(--green); color: #fff; border-color: var(--green); }
.material-panel {
  min-height: 260px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
}
.material-panel h3 { margin: 0 0 14px; font-size: clamp(26px, 4vw, 48px); line-height: 1.04; }
.material-panel p { color: var(--muted); font-size: 19px; max-width: 760px; }
.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 58px);
  background: #172018;
  color: white;
}
.split-section p { color: rgba(255, 255, 255, .7); }
.winter-section { background: linear-gradient(135deg, #142017, #223c2a 58%, #5d6f5e); }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.check-grid span { padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 8px; background: rgba(255, 255, 255, .06); font-weight: 850; }
.anatomy {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: stretch;
}
.anatomy-visual {
  display: grid;
  gap: 10px;
  padding: 34px;
  border-radius: 8px;
  background: #111811;
  box-shadow: var(--shadow);
}
.layer {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 16px 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: 950;
}
.finish { background: repeating-linear-gradient(90deg, #777 0 22px, #8d8d8d 22px 24px); }
.bedding { background: #b88b59; }
.base { background: repeating-linear-gradient(45deg, #59615b 0 10px, #6e766f 10px 18px); }
.subgrade { background: #4a3325; }
.anatomy-copy { display: grid; gap: 14px; }
.anatomy-copy article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.anatomy-copy strong { font-size: 20px; }
.anatomy-copy p { margin: 8px 0 0; color: var(--muted); }
.cards { display: grid; gap: 18px; }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .area-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .62);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover, .area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #bfc7b4; }
.image-card img, .area-card img { height: 230px; width: 100%; object-fit: cover; }
.image-card span, .area-card span { display: block; padding: 18px 18px 0; font-size: 20px; font-weight: 950; }
.image-card p, .area-card p { padding: 0 18px 20px; color: var(--muted); margin: 8px 0 0; }
.premium-gallery {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 58px);
  background: #101b13;
  color: #fff;
}
.gallery-feature {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-feature img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.gallery-feature:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,27,19,.76), rgba(16,27,19,.08)); }
.gallery-feature div { position: absolute; left: clamp(22px, 5vw, 58px); bottom: clamp(22px, 5vw, 58px); max-width: 660px; z-index: 2; }
.gallery-mini { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.gallery-mini figure, .gallery-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 8px; }
.gallery-mini img { width: 100%; height: 220px; object-fit: cover; }
.gallery-mini figcaption, .gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 8px;
  font-weight: 950;
}
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pill-link { display: inline-flex; padding: 13px 16px; border-radius: 8px; background: #fff; border: 1px solid var(--line); font-weight: 900; color: var(--green); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.process-grid article { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.process-grid span { color: var(--clay); font-weight: 950; }
.process-grid h3 { font-size: 22px; margin: 16px 0 8px; }
.process-grid p { color: var(--muted); margin: 0; }
.faq-list { display: grid; gap: 10px; max-width: 980px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}
.faq-list summary { cursor: pointer; font-weight: 950; font-size: 18px; }
.faq-list p { color: var(--muted); margin: 12px 0 0; }
.cta-band {
  margin: 0 clamp(18px, 4vw, 58px) clamp(58px, 8vw, 90px);
  padding: clamp(30px, 5vw, 54px);
  border-radius: 8px;
  background: linear-gradient(135deg, #17472b, #1f5f38 58%, #bd7347);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.cta-band p { max-width: 680px; color: rgba(255, 255, 255, .75); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.subhero { padding: clamp(80px, 12vw, 150px) clamp(18px, 4vw, 58px) 56px; background: #172018; color: #fff; }
.subhero p { color: rgba(255, 255, 255, .72); }
.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 32px;
  align-items: center;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 4vw, 58px);
  background: #172018;
  color: white;
}
.detail-hero img { width: 100%; height: min(70vh, 620px); object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.detail-hero p { color: rgba(255, 255, 255, .74); }
.two-col { display: grid; grid-template-columns: .88fr 1.12fr; gap: 44px; align-items: start; }
.two-col p { color: var(--muted); font-size: 18px; }
.service-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.service-list li { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px 18px 18px 48px; position: relative; font-weight: 850; }
.service-list li:before { content: ""; position: absolute; left: 18px; top: 22px; width: 14px; height: 14px; border-radius: 50%; background: var(--leaf); box-shadow: inset 0 0 0 4px #dfeedd; }
.area-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 60px clamp(18px, 4vw, 58px); }
.gallery-grid img { width: 100%; height: 420px; object-fit: cover; }
.contact-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  padding: clamp(80px, 12vw, 150px) clamp(18px, 4vw, 58px);
  background: #172018;
  color: #fff;
  align-items: start;
}
.contact-form { background: #fff; color: var(--ink); border-radius: 8px; padding: 24px; display: grid; gap: 14px; box-shadow: var(--shadow); }
label { display: grid; gap: 7px; font-weight: 850; }
input, select, textarea { width: 100%; border: 1px solid #cfd6c5; border-radius: 8px; padding: 13px 12px; font: inherit; background: #fbfaf4; color: var(--ink); }
textarea { resize: vertical; }
.footer { display: flex; justify-content: space-between; gap: 30px; padding: 34px clamp(18px, 4vw, 58px); background: #0f1711; color: #fff; }
.footer-brand { display: inline-flex; text-decoration: none; color: inherit; }
.footer-logo {
  width: 240px;
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45));
}
.footer p { color: rgba(255, 255, 255, .62); margin: 14px 0 0; max-width: 360px; }
.footer-grid { display: grid; grid-template-columns: repeat(2, max-content); gap: 10px 24px; color: rgba(255, 255, 255, .8); }
@media (max-width: 980px) {
  .site-header { align-items: flex-start; }
  .nav-links { display: none; }
  .hero, .detail-hero, .contact-hero, .split-section, .two-col, .material-picker, .anatomy { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { min-height: 360px; order: 2; }
  .cards.four, .process-grid, .area-grid, .gallery-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band { display: grid; }
  .cta-actions { justify-content: flex-start; }
  .detail-hero img { height: 420px; }
}
@media (max-width: 640px) {
  .site-header { padding: 10px 16px; gap: 12px; }
  .brand-logo { width: 144px; }
  .nav-call { display: none; }
  .hero-media { min-height: 280px; }
  .hero-media img { animation: none; transform: none; }
  .hero-content { padding: 32px 20px 44px; }
  .hero h1, .subhero h1, .detail-hero h1, .contact-hero h1 { font-size: clamp(34px, 8.5vw, 42px); line-height: 1.02; }
  .hero p, .subhero p, .detail-hero p, .contact-hero p { font-size: 16px; line-height: 1.45; }
  .eyebrow { font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 22px; }
  .hero-actions .button { width: 100%; min-height: 52px; }
  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 30px; max-width: 100%; }
  .trust-row div { padding-top: 11px; }
  .trust-row dt { font-size: 22px; }
  .trust-row dd { font-size: 11px; line-height: 1.25; }
  .cards.four, .process-grid, .area-grid, .service-list, .gallery-grid, .gallery-mini, .check-grid { grid-template-columns: 1fr; }
  .image-card img, .area-card img { height: 210px; }
  .gallery-grid img { height: 300px; }
  .gallery-feature, .gallery-feature img { min-height: 420px; }
  .ba-wrap { min-height: 320px; }
  .ba-handle { width: 44px; height: 44px; margin-left: -22px; margin-top: -22px; }
  .cta-band { margin-left: 18px; margin-right: 18px; }
  .footer { display: grid; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-logo { width: 200px; }
}
