@font-face {
  font-family: "Inter Tight";
  src: url("./assets/inter-tight-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter Tight";
  src: url("./assets/inter-tight-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Adorable";
  src: url("./assets/adorable-wordmark.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --green: #417b5d;
  --green-dark: #2f5b44;
  --green-deep: #183a2a;
  --yellow: #f2bf3a;
  --purple: #883c9a;
  --orange: #e0592f;
  --text: #28382f;
  --muted: #56635b;
  --line: #dfe5df;
  --surface: #fbfbfb;
  --white: #ffffff;
  --radius-lg: 36px;
  --radius-md: 24px;
  --section-space: 96px;
  --section-space-tablet: 76px;
  --section-space-mobile: 56px;
  --card-space: 28px;
  --shadow: 0 24px 70px rgba(29, 58, 43, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Inter Tight", Inter, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  text-align: left;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  letter-spacing: -.012em;
  line-height: 1.16;
  text-wrap: balance;
}
h1 { margin-bottom: 28px; font-size: clamp(2.5rem, 4.5vw, 4.25rem); font-weight: 650; }
h2 { margin-bottom: 0; font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 620; }
h3 { font-size: 1.45rem; font-weight: 580; line-height: 1.18; }
strong { font-weight: 600; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: -70px;
  padding: 12px 18px;
  color: white;
  background: var(--green-deep);
  border-radius: 12px;
}
.skip-link:focus { top: 16px; }
.section-shell { width: min(1320px, calc(100% - 64px)); margin-inline: auto; }
.eyebrow {
  margin-bottom: 20px;
  color: var(--green);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow-light { color: #a9d2b9; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  padding: 0 26px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); border-color: var(--green-dark); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.button-small { min-height: 44px; padding-inline: 20px; font-size: .9rem; }
.button-secondary { color: var(--green-dark); background: transparent; border-color: #b8c9bf; }
.button-secondary:hover { color: white; }
.button-dark { background: var(--green-deep); border-color: var(--green-deep); }
.button-light { color: var(--green-deep); background: white; border-color: white; }
.button-light:hover { color: white; background: transparent; }
.button-outline-light { color: white; background: transparent; border-color: rgba(255,255,255,.5); }
.button-outline-light:hover { color: var(--green-deep); background: white; }
.button-wide { width: 100%; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  padding: 14px 0;
  background: rgba(251,251,251,.92);
  border-bottom: 1px solid rgba(47,91,68,.1);
  backdrop-filter: blur(18px);
}
.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  width: min(1500px, calc(100% - 64px));
  margin-inline: auto;
}
.brand { --brand-size: 2.5rem; display: inline-flex; flex-direction: column; align-items: flex-start; width: max-content; padding-right: 1rem; line-height: 1.1; }
.brand-name { position: relative; display: block; color: var(--green-dark); font-family: "Adorable", cursive; font-size: var(--brand-size); font-weight: 400; font-synthesis: none; letter-spacing: 0; line-height: 1; white-space: nowrap; -webkit-text-stroke: .012em currentColor; }
.brand-registration { position: absolute; left: calc(100% + .2em); top: .05em; font-family: "Inter Tight", Arial, sans-serif; font-size: .3em; font-weight: 500; line-height: 1; -webkit-text-stroke: 0; }
.brand-note { display: block; width: max-content; margin-top: 4px; color: var(--muted); font-size: calc(var(--brand-size) * .38); font-weight: 450; letter-spacing: 0; line-height: 1.3; white-space: nowrap; }
.main-nav { display: flex; justify-content: center; gap: clamp(14px, 2vw, 30px); }
.main-nav a, .dealer-link { font-size: .95rem; font-weight: 500; letter-spacing: .01em; }
.main-nav a:hover, .dealer-link:hover { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--green-deep); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  gap: clamp(28px, 4vw, 72px);
  min-height: clamp(680px, calc(100vh - 88px), 860px);
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: clamp(54px, 6vw, 80px);
  align-items: center;
}
.hero-copy { padding-left: clamp(0px, 2vw, 32px); }
.hero-lead { max-width: 36ch; margin-bottom: 28px; color: var(--text); font-size: clamp(1.125rem, 1.45vw, 1.3rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { position: relative; align-self: stretch; min-height: 580px; overflow: hidden; background: #d5ddd6; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-captions { position: absolute; z-index: 2; left: 24px; right: 24px; top: 24px; display: grid; grid-template-columns: minmax(0,1fr) 44px minmax(0,1fr); align-items: stretch; gap: 10px; color: white; }
.hero-material, .hero-stamp { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; min-width: 0; padding: 16px; text-align: left; background: var(--green-dark); border: 1px solid rgba(255,255,255,.36); border-radius: 16px; }
.hero-material strong, .hero-stamp strong { font-size: clamp(1.5rem,5.8cqi,2.125rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.1; white-space: nowrap; }
.hero-material > span, .hero-stamp > span { font-size: .875rem; line-height: 1.35; }
.hero-connection { width: 44px; height: 44px; align-self: center; color: white; filter: drop-shadow(0 3px 6px rgba(24,58,42,.25)); }

.proof-story { padding: clamp(48px,5vw,72px) 0; color: white; background: var(--green-deep); }
.renewal-summary { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(270px,.85fr); align-items: center; gap: clamp(28px,5vw,72px); }
.renewal-summary h2 { max-width: 19ch; margin-bottom: 24px; }
.renewal-summary .text-link { color: #e2ede6; }
.renewal-stat { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 20px; padding: 28px; color: var(--green-deep); background: var(--yellow); border-radius: var(--radius-md); }
.renewal-stat strong { font-size: clamp(3rem,5vw,4.5rem); line-height: 1.1; letter-spacing: -.025em; white-space: nowrap; }
.renewal-stat span { font-size: 1.125rem; line-height: 1.45; }
.section-heading { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 44px; }
.section-heading > div { max-width: 960px; }
.section-heading > p { max-width: 480px; margin-bottom: 5px; color: var(--muted); font-size: 1.1rem; }
.text-button { margin-top: 34px; padding: 6px 0; color: white; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.45); cursor: pointer; }

.home-fit-section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.scenario-picker { display: grid; grid-template-columns: minmax(260px,.58fr) minmax(0,1.42fr); gap: 22px; align-items: stretch; }
.scenario-tabs { display: grid; grid-template-rows: repeat(5,1fr); gap: 8px; }
.scenario-tab { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: center; min-height: 72px; padding: 17px 20px; text-align: left; background: white; border: 1px solid var(--line); border-radius: 18px; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.scenario-tab:hover { transform: translateX(4px); border-color: #9db8a7; }
.scenario-tab.is-active { color: white; background: var(--green); border-color: var(--green); }
.scenario-tab span { color: var(--green); font-size: .78rem; font-weight: 600; }
.scenario-tab.is-active span { color: #c8ded0; }
.scenario-tab strong { font-size: 1.02rem; font-weight: 560; line-height: 1.3; }
.scenario-result { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(260px,.92fr); min-height: 392px; overflow: hidden; color: white; background: var(--green-deep); border-radius: var(--radius-md); }
.scenario-answer { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px,5vw,68px); }
.scenario-answer .result-kicker { color: #a9d2b9; }
.scenario-answer h3 { max-width: 640px; margin: 18px 0 22px; font-size: clamp(2rem,3.3vw,3.7rem); font-weight: 540; }
.scenario-copy > p { max-width: 690px; margin-bottom: 0; color: #d4dfd8; font-size: 1.08rem; }
.scenario-copy-stack, .scenario-check-stack { display: grid; min-width: 0; }
.scenario-copy-stack > *, .scenario-check-stack > * { grid-area: 1 / 1; min-width: 0; }
/* Hidden variants keep their intrinsic size, reserving space for the longest text at every width. */
.scenario-result [data-scenario-content][aria-hidden="true"] { visibility: hidden; pointer-events: none; }
.scenario-check { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px,4vw,52px); color: var(--text); background: #eef3ef; }
.scenario-check > span { color: var(--green); font-size: .8rem; font-weight: 600; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.scenario-check ul { display: grid; gap: 16px; margin: 24px 0 32px; padding: 0; list-style: none; }
.scenario-check li { position: relative; padding-left: 25px; line-height: 1.5; }
.scenario-check li::before { content: ""; position: absolute; left: 0; top: .56em; width: 9px; height: 9px; background: var(--yellow); border-radius: 50%; }
.scenario-check .text-link { align-self: flex-start; }

.choice-section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.pattern-picker { display: grid; grid-template-columns: minmax(260px,.68fr) minmax(0,1.32fr); gap: 22px; align-items: stretch; }
.pattern-tabs { display: grid; grid-template-rows: repeat(5, 1fr); gap: 8px; }
.pattern-tab { display: grid; grid-template-columns: 76px 1fr; gap: 18px; align-items: center; min-height: 100px; padding: 12px 18px; text-align: left; background: white; border: 1px solid var(--line); border-radius: 18px; cursor: pointer; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.pattern-tab:hover { transform: translateX(4px); border-color: #9db8a7; }
.pattern-tab.is-active { color: white; background: var(--green); border-color: var(--green); box-shadow: 0 16px 34px rgba(65,123,93,.22); }
.pattern-tab span:last-child { display: flex; flex-direction: column; }
.pattern-tab strong { font-size: 1.04rem; font-weight: 580; line-height: 1.28; }
.pattern-tab small { margin-top: 5px; opacity: .72; font-size: .86rem; line-height: 1.35; }
.pattern-icon { position: relative; overflow: hidden; width: 72px; height: 72px; border-radius: 14px; background-color: #e8eee9; border: 1px solid rgba(24,58,42,.18); }
.pattern-tab.is-active .pattern-icon { border-color: rgba(255,255,255,.75); }
.pattern-icon::before, .pattern-preview::before { content: ""; position: absolute; inset: 0; background-image: var(--pattern-image); background-size: cover; background-position: var(--pattern-focus, 50% 100%); background-repeat: no-repeat; transform: scale(var(--pattern-zoom, 1)); transform-origin: var(--pattern-focus, 50% 100%); }
.pattern-deck, .pattern-preview-deck { --pattern-image: url("./assets/patterns/deck.jpg"); --pattern-zoom: 3.2; --pattern-focus: 63% 95%; }
.pattern-english, .pattern-preview-english { --pattern-image: url("./assets/patterns/english.jpg"); --pattern-zoom: 1.8; }
.pattern-italian, .pattern-preview-italian { --pattern-image: url("./assets/patterns/italian.jpg"); --pattern-zoom: 1.8; }
.pattern-french, .pattern-preview-french { --pattern-image: url("./assets/patterns/french.jpg"); --pattern-zoom: 2.4; --pattern-focus: 46% 96%; }
.pattern-module, .pattern-preview-module { --pattern-image: url("./assets/patterns/module.jpg"); --pattern-zoom: 1.1; --pattern-focus: 50% 50%; }
.pattern-result { display: grid; grid-template-columns: minmax(300px,.9fr) minmax(280px,1.1fr); min-height: 500px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); }
.pattern-result > div:first-child { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(30px,5vw,70px); }
.pattern-copy-stack { display: grid; width: 100%; min-width: 0; }
.pattern-copy-stack > * { grid-area: 1 / 1; min-width: 0; }
/* Reserve the tallest pattern description so switching never moves the image or CTA. */
.pattern-result [data-pattern-content][aria-hidden="true"] { visibility: hidden; pointer-events: none; }
.result-kicker { color: var(--green); font-size: .8rem; font-weight: 600; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }
.pattern-result h3 { max-width: 520px; margin: 16px 0 18px; font-size: clamp(2.4rem,4vw,4.7rem); }
.pattern-result p { max-width: 560px; color: var(--muted); font-size: 1.08rem; }
.result-use { margin: 14px 0 30px; }
.result-use span { display: block; margin-bottom: 5px; font-size: .82rem; }
.pattern-preview { position: relative; overflow: hidden; min-height: 500px; background-color: #c6a176; }

.palette-section { padding: var(--section-space) 0; background: #eef3ef; }
.palette-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,8vw,130px); align-items: start; }
.palette-copy { position: sticky; top: 130px; align-self: start; }
.palette-number { display: flex; align-items: baseline; gap: .025em; margin: 25px 0 18px; color: var(--green-dark); font-size: clamp(5.5rem,10vw,10.5rem); font-weight: 560; line-height: .88; letter-spacing: -.035em; }
.palette-number span { color: var(--yellow); font-size: .9em; line-height: inherit; }
.palette-intro > span { display: block; }
.palette-copy h2 { max-width: 620px; font-size: clamp(2.5rem,4.8vw,5.5rem); }
.palette-copy > p:not(.eyebrow) { max-width: 590px; margin: 28px 0 32px; color: var(--muted); font-size: 1.1rem; }
.palette-control { padding: clamp(30px,3.5vw,48px); background: white; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(31,65,46,.08); }
.control-label { margin-bottom: 24px; font-size: 1.3rem; font-weight: 560; line-height: 1.35; }
.swatches { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.swatch { position: relative; min-height: 138px; overflow: hidden; background: var(--swatch); border: 0; border-radius: 20px; cursor: pointer; }
.swatch::after { content: ""; position: absolute; inset: 0; border: 4px solid transparent; border-radius: inherit; transition: border-color .2s ease; }
.swatch.is-active::after { border-color: var(--green-deep); }
.swatch span { position: absolute; left: 14px; top: 12px; padding: 5px 10px; background: rgba(255,255,255,.86); border-radius: 999px; font-size: .82rem; font-weight: 560; letter-spacing: .01em; }
.palette-selection { margin-top: 20px; padding: 24px; color: white; background: var(--green-deep); border-radius: 20px; }
.palette-selection span { display: block; color: #bcd0c2; font-size: .82rem; }
.palette-selection strong { display: block; margin: 6px 0 10px; font-size: 2rem; }
.palette-selection p { margin-bottom: 0; color: #d9e2dc; }
.wood-grades { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px; }
.wood-grades article { display: flex; flex-direction: column; min-height: 168px; padding: 22px; background: #f4f6f4; border-radius: 18px; }
.wood-grades span { display: block; color: var(--green); font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.wood-grades strong { display: block; margin: 8px 0; font-size: 1.1rem; }
.wood-grades p { margin: auto 0 0; color: var(--muted); font-size: .9rem; }

.sample-section { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr); gap: clamp(46px,7vw,110px); padding-top: var(--section-space); padding-bottom: var(--section-space); align-items: center; }
.sample-visual { margin: 0; overflow: hidden; background: #eef2eb; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.sample-visual img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; }
.sample-caption { padding: 18px 24px; color: var(--green-deep); font-size: 1rem; font-weight: 600; line-height: 1.4; }
.sample-copy > p:not(.eyebrow) { max-width: 680px; margin: 28px 0 34px; color: var(--muted); font-size: 1.08rem; }
.sample-steps { margin: 0 0 34px; padding: 0; list-style: none; }
.sample-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.sample-steps li:last-child { border-bottom: 1px solid var(--line); }
.sample-steps li > span { color: var(--green); font-size: .82rem; font-weight: 600; }
.sample-steps strong { font-size: 1.08rem; font-weight: 580; }
.sample-steps p { margin: 5px 0 0; color: var(--muted); font-size: .94rem; }

.restore-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(45px,7vw,110px); padding-top: var(--section-space); padding-bottom: var(--section-space); align-items: center; }
.restore-visual { position: relative; min-height: 620px; overflow: hidden; border-radius: var(--radius-lg); }
.restore-visual img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.restore-copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 34px; color: var(--muted); font-size: 1.1rem; }
.restore-list { display: grid; gap: 16px; margin: 28px 0 0; padding: 0; list-style: none; }
.restore-list li { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 18px; padding: 22px clamp(14px,2vw,24px); border: 1px solid var(--line); border-radius: var(--radius-md); }
.restore-list .restore-gentle { background: #edf3ee; }
.restore-list h3 { margin: 0; color: var(--green-dark); font-size: 1.16rem; font-weight: 600; letter-spacing: -.015em; }
.restore-list p { margin: 6px 0 0; color: var(--muted); }

.projects-section { padding: var(--section-space) 0; background: white; }
.text-link { padding-bottom: 3px; color: var(--green-dark); border-bottom: 1px solid #a4b8ac; font-weight: 580; }
.project-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2,340px); gap: 18px; }
.project-card { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.project-card-wide { grid-row: 1 / span 2; }
.project-card img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transition: transform .6s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-info { position: absolute; z-index: 2; right: 20px; top: 20px; width: fit-content; max-width: min(340px, calc(100% - 40px)); padding: 12px 16px; color: white; text-align: left; background: rgba(24,58,42,.92); border: 1px solid rgba(255,255,255,.35); border-radius: 14px; }
.project-info span { font-size: .8rem; font-weight: 580; letter-spacing: .075em; line-height: 1.4; text-transform: uppercase; opacity: .78; }
.project-info h3 { margin: 6px 0 4px; font-size: clamp(1.375rem,1.8vw,1.75rem); }
.project-info p { margin-bottom: 0; opacity: .8; }

.product-section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-tone { position: relative; height: 240px; flex: 0 0 auto; background-color: #b99369; }
.product-tone::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(140deg,rgba(255,255,255,.34),transparent 48%,rgba(41,31,24,.18)); }
.product-tone span { position: absolute; z-index: 1; left: 16px; top: 16px; padding: 6px 10px; background: rgba(255,255,255,.88); border-radius: 999px; font-size: .8rem; font-weight: 560; letter-spacing: .015em; }
.tone-light { background-color: #d9cbb4; }
.tone-natural { background-color: #b58b62; }
.tone-grey { background-color: #817b73; }
.tone-deep { background-color: #514239; }
.product-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: var(--card-space); }
.product-body h3 { margin-bottom: 8px; font-size: 1.7rem; }
.product-body p { min-height: 48px; margin-bottom: 16px; color: var(--muted); }
.product-body > strong { display: block; margin-bottom: 20px; color: var(--green-deep); font-size: 1.08rem; font-weight: 600; }
.product-body button { margin-top: auto; padding: 0; color: var(--green-dark); background: transparent; border: 0; border-bottom: 1px solid #9db6a6; font-weight: 580; cursor: pointer; }
.product-body button.is-selected { color: var(--orange); border-color: var(--orange); }
.selection-bar { position: sticky; z-index: 20; bottom: 20px; display: flex; justify-content: space-between; align-items: center; width: min(560px,calc(100% - 30px)); margin: 26px auto 0; padding: 17px 22px; color: white; background: rgba(24,58,42,.94); border-radius: 999px; box-shadow: 0 14px 34px rgba(24,58,42,.3); backdrop-filter: blur(12px); }
.selection-bar[hidden] { display: none; }
.selection-bar a { color: var(--yellow); font-weight: 580; }
.price-note { margin: 28px 0 0; color: var(--muted); font-size: .88rem; }

.estimate-section { padding: var(--section-space) 0; color: white; background: var(--green-deep); }
.estimate-heading > p { color: #c0d0c6; }
.estimate-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 1fr; gap: 12px; }
.estimate-grid article { display: flex; flex-direction: column; min-height: 240px; padding: var(--card-space); background: rgba(255,255,255,.065); border: 1px solid rgba(255,255,255,.13); border-radius: 20px; }
.estimate-grid span { color: #a9c0b1; font-size: .8rem; font-weight: 600; }
.estimate-grid h3 { min-height: 2.36em; margin: 34px 0 14px; font-size: 1.28rem; }
.estimate-grid p { margin: auto 0 0; color: #cbd8d0; }
.estimate-action { display: flex; justify-content: space-between; gap: 34px; align-items: center; margin-top: 18px; padding: 24px 28px; color: var(--green-deep); background: var(--yellow); border-radius: 20px; }
.estimate-action p { max-width: 920px; margin-bottom: 0; }
.estimate-action .button { flex: 0 0 auto; }

.dealer-section { padding: var(--section-space) 0; color: white; background: var(--green-dark); }
.dealer-layout { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(32px,4vw,56px); align-items: stretch; }
.dealer-copy { display: flex; flex-direction: column; gap: clamp(48px,4vw,56px); }
.dealer-layout:has(.dealer-selection:not([hidden])) .dealer-copy { align-self: start; }
.dealer-copy > p:not(.eyebrow) { max-width: 760px; margin: 28px 0 40px; color: #ccdbd1; font-size: 1.14rem; }
.buy-steps { display: grid; flex: 1; grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 1fr; gap: 16px; }
.buy-steps > div { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; min-height: 158px; padding: var(--card-space); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; }
.buy-steps span { color: #b5ccbd; font-size: .8rem; font-weight: 580; }
.buy-steps strong { display: block; margin-top: 22px; font-size: 1.2rem; }
.buy-steps p { margin: 8px 0 0; color: #c6d4cb; font-size: .9rem; }
.dealer-form { display: flex; flex-direction: column; padding: clamp(28px,4vw,50px); color: var(--text); background: white; border-radius: var(--radius-lg); }
.dealer-form > .button[type="submit"] { margin-top: auto; }
.form-heading { display: flex; flex-direction: column; margin-bottom: 30px; }
.form-heading span { color: var(--green); font-size: .82rem; font-weight: 600; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }
.form-heading strong { margin-top: 8px; font-size: 2rem; font-weight: 560; letter-spacing: -.012em; line-height: 1.18; }
.dealer-form label { display: grid; gap: 8px; margin-bottom: 16px; font-size: .9rem; font-weight: 540; }
.dealer-form input, .dealer-form select { width: 100%; min-height: 52px; padding: 0 16px; color: var(--text); background: #f4f6f4; border: 1px solid #d9e1db; border-radius: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 12px; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .78rem; text-align: left; }
.form-success { margin-top: 16px; padding: 18px; color: var(--green-deep); background: #e8f2eb; border-radius: 14px; }
.form-success strong { font-size: 1.05rem; }
.form-success p { margin: 5px 0 0; font-size: .88rem; }

.construction-section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.construction-copy { max-width: 920px; margin-bottom: 24px; }
.construction-copy > p:not(.eyebrow) { margin: 28px 0 45px; color: var(--muted); font-size: 1.1rem; }
/* Material buttons are anchored to the proportional drawing; one benefit opens at a time. */
.board-diagram { container-type: inline-size; margin: 36px 0 24px; padding: clamp(20px, 3vw, 38px); color: var(--text); background: #f4f3ed; border: 1px solid #e4e5dc; border-radius: var(--radius-md); }
.board-profile { padding-block: 38px; }
.board-illustration { position: relative; }
.board-profile-image { display: block; width: 100%; height: auto; aspect-ratio: 1200 / 312; object-fit: contain; }
.board-hotspot { --accent: #417b5d; --symbol-color: white; position: absolute; z-index: 1; left: var(--x); top: var(--y); transform: translate(-50%, -50%); display: inline-flex; align-items: center; justify-content: space-between; gap: 10px; width: clamp(220px, 25cqw, 280px); min-height: 76px; padding: 12px 12px 12px 18px; border: 0; border-radius: 22px; background: white; color: #183a2a; box-shadow: 0 0 0 3px #ffffffdc, 0 4px 14px #382a2028; cursor: pointer; text-align: left; touch-action: manipulation; transition: box-shadow .15s; }
.board-hotspot[hidden] { display: none; }
.board-hotspot-oak { --accent: #9c6c40; }
.board-hotspot-adhesive { --accent: #f2bf3a; --symbol-color: #183a2a; }
.board-hotspot-foundation { --accent: #627264; }
.board-hotspot-symbol { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; color: var(--symbol-color); background: var(--accent); border-radius: 50%; font-size: 28px; line-height: 1; font-weight: 500; }
.board-hotspot-label { display: flex; flex-direction: column; min-width: 0; gap: 4px; font-size: 16px; line-height: 1.3; font-weight: 650; }
.board-hotspot-label small { font-size: 14px; line-height: 1.35; font-weight: 450; color: #56635b; }
.board-hotspot:hover, .board-hotspot[aria-expanded="true"] { box-shadow: 0 0 0 3px white, 0 0 0 6px var(--accent), 0 6px 16px #382a2028; z-index: 2; }
.board-hotspot:focus-visible, .board-detail-close:focus-visible, .board-detail-link:focus-visible { outline: 3px solid #183a2a; outline-offset: 7px; }
.board-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 20px; }
.board-diagram .board-details[hidden] { display: none; }
.board-detail { min-width: 0; display: flex; flex-direction: column; padding: clamp(22px, 3vw, 34px); background: #edf2e9; border: 1px solid #cbd9c6; border-radius: 22px; text-align: left; }
.board-detail-oak { background: #f5e7d4; border-color: #dbc7ab; }
.board-detail-adhesive { background: #fff8df; border-color: #edda91; }
.board-detail-foundation { background: #e8ede8; border-color: #cbd5cc; }
.board-detail-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.board-detail-material { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; color: #53634f; font-size: 1rem; line-height: 1.5; }
.board-detail-material .aw-icon { flex: 0 0 26px; width: 26px; height: 26px; }
.board-detail h3 { margin: 0; color: var(--green-deep); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; line-height: 1.2; text-wrap: pretty; scroll-margin-top: 125px; }
.board-detail h3:focus { outline: none; }
.board-detail-close { display: grid; place-items: center; flex: 0 0 44px; width: 44px; height: 44px; padding: 0; color: #183a2a; background: #ffffffad; border: 1px solid #183a2a24; border-radius: 50%; font-size: 28px; line-height: 1; cursor: pointer; }
.board-detail-close[hidden] { display: none; }
.board-detail-copy { max-width: 76ch; }
.board-detail-copy p { margin: 0 0 12px; font-size: 1.0625rem; line-height: 1.65; text-wrap: pretty; }
.board-detail-copy p:last-child { margin-bottom: 0; }
.board-detail-link { align-self: flex-start; margin-top: 22px; color: var(--green-dark); font-size: 1rem; line-height: 1.5; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.board-detail-link span { margin-left: 8px; }
/* Hidden cards still size the shared grid row, so switching never changes its height. */
.board-diagram.is-interactive .board-details { grid-template-columns: minmax(0, 1fr); gap: 0; }
.board-diagram.is-interactive .board-detail { grid-area: 1 / 1; visibility: hidden; pointer-events: none; }
.board-diagram.is-interactive .board-detail.is-active { visibility: visible; pointer-events: auto; }
@container (max-width: 60rem) {
  .board-profile { padding-block: 0; }
  .board-illustration { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .board-profile-image { grid-column: 1 / -1; margin-bottom: 12px; }
  .board-hotspot { position: static; width: 100%; transform: none; min-height: 86px; border-radius: 18px; box-shadow: 0 1px 8px #382a2012; }
}
@container (max-width: 44rem) {
  .board-details { grid-template-columns: minmax(0, 1fr); }
}
@container (max-width: 28rem) {
  .board-illustration { grid-template-columns: minmax(0, 1fr); }
  .board-hotspot { min-height: 76px; }
  .board-detail { padding: 20px; }
  .board-detail-heading { gap: 12px; }
  .board-detail h3 { font-size: 1.375rem; }
  .board-detail-copy p { font-size: 1rem; }
  .board-detail-material { font-size: .9375rem; }
}
@media (prefers-reduced-motion: reduce) { .board-hotspot { transition: none; } }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 1fr; gap: 12px; }
.benefit-grid article { display: flex; flex-direction: column; padding: var(--card-space); background: white; border: 1px solid var(--line); border-radius: 20px; }
.benefit-grid span { color: var(--green); font-size: .8rem; font-weight: 600; }
.benefit-grid h3 { min-height: 52px; margin: 30px 0 12px; font-size: 1.23rem; }
.benefit-grid p { margin: auto 0 0; color: var(--muted); }
.construction-note { max-width: 980px; margin: 24px 0 0; color: var(--muted); font-size: .9rem; }
.coating-explainer { margin-top: 28px; padding: clamp(24px,3.5vw,44px); border: 1px solid #d6e2d8; border-radius: var(--radius-md); background: #eff4ed; }
.coating-explainer-intro { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(28px,4vw,56px); align-items: center; }
.coating-explainer h3 { max-width: 18ch; margin: 0 0 20px; color: var(--green-deep); font-size: clamp(1.75rem,2.7vw,2.35rem); line-height: 1.2; text-wrap: pretty; }
.coating-explainer p { margin: 0 0 14px; font-size: 1.0625rem; line-height: 1.6; }
.coating-explainer p:last-child { margin-bottom: 0; }
.coating-promise-detail { color: var(--muted); }
.coating-comparison { min-width: 0; margin: 0; padding: clamp(20px,2.5vw,30px); background: white; border-radius: 20px; }
.coating-comparison figcaption { margin-bottom: 24px; color: var(--green-deep); font-size: 1.125rem; font-weight: 600; line-height: 1.4; }
.coating-comparison-row + .coating-comparison-row { margin-top: 24px; }
.coating-comparison-label { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 6px 16px; margin-bottom: 10px; font-size: 1rem; line-height: 1.4; }
.coating-comparison-label span { color: var(--green-deep); font-size: 1.25rem; font-weight: 650; font-variant-numeric: tabular-nums; }
.coating-meter { display: flex; height: 22px; overflow: hidden; border-radius: 5px; background: #edf1ed; }
.coating-meter-anticwood .coating-meter-min { width: 87.5%; background: var(--green); }
.coating-meter-anticwood .coating-meter-range { width: 12.5%; background: repeating-linear-gradient(120deg,#a6c9ae 0 5px,#d4e4d6 5px 10px); }
.coating-meter-uv > span { width: 18.472222%; background: var(--yellow); }
.coating-explainer .coating-comparison-note { margin-top: 20px; color: var(--muted); font-size: 1rem; line-height: 1.5; }
.coating-calculation { margin-top: 24px; border-top: 1px solid var(--line); }
.coating-calculation summary { padding: 20px 0 0; color: var(--green-dark); font-size: 1.0625rem; font-weight: 600; cursor: pointer; }
.coating-calculation summary::marker { color: var(--green); }
.coating-calculation summary:focus-visible { outline: 2px solid var(--green); outline-offset: 5px; border-radius: 4px; }
.coating-calculation-body { padding-top: 24px; }
.coating-calculation-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin: 20px 0; }
.coating-calculation-case { min-width: 0; padding: clamp(18px,2vw,28px); background: #f3f6f1; border-radius: 18px; }
.coating-calculation-case h4 { margin: 0 0 12px; color: var(--green-deep); font-size: 1.1875rem; line-height: 1.4; text-wrap: pretty; }
.coating-explainer .coating-formula { padding-top: 14px; border-top: 1px solid var(--line); font-size: 1rem; font-variant-numeric: tabular-nums; }
.coating-explainer .coating-calculation-note { color: var(--text); }
.coating-explainer .coating-sources { color: var(--muted); font-size: .9375rem; }
.coating-sources a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .coating-explainer-intro { grid-template-columns: minmax(0,1fr); gap: 16px; }
}
@media (max-width: 680px) {
  .coating-calculation-grid { grid-template-columns: minmax(0,1fr); }
}

.faq-section { padding: var(--section-space) 0; background: white; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(40px,8vw,130px); }
.faq-heading { position: sticky; top: 140px; align-self: start; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 26px 60px 26px 0; font-size: 1.12rem; font-weight: 560; line-height: 1.38; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 8px; top: 19px; color: var(--green); font-size: 2rem; font-weight: 350; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; padding: 0 70px 25px 0; color: var(--muted); }

.final-cta { padding: 82px 0; color: white; background: var(--green-deep); }
.final-layout { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.final-layout h2 { max-width: 980px; }
.final-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }
.site-footer { padding: 64px 0 24px; color: #294437; background: #e6eee8; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3,1fr); gap: 40px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; }
.footer-grid strong { margin-bottom: 10px; font-size: .86rem; font-weight: 600; letter-spacing: .075em; line-height: 1.4; text-transform: uppercase; }
.footer-grid a:not(.brand):hover { color: var(--green); }


@media (max-width: 1320px) {
  .main-nav { display: none; position: absolute; left: 32px; right: 32px; top: calc(100% + 8px); flex-direction: column; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .menu-toggle { display: block; justify-self: end; }
  .header-shell { grid-template-columns: auto 1fr auto; }
  .header-actions .dealer-link { display: none; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .estimate-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root { --section-space: var(--section-space-tablet); }
  .section-shell, .header-shell { width: min(100% - 34px, 720px); }
  .header-actions .button { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-copy { padding-left: 0; }
  .hero-visual { min-height: 520px; }
  .section-heading, .final-layout { align-items: start; flex-direction: column; }
  .scenario-picker, .pattern-picker, .palette-layout, .restore-section, .sample-section, .dealer-layout, .faq-layout { grid-template-columns: 1fr; }
  .scenario-tabs { grid-template-columns: repeat(2,1fr); grid-template-rows: none; }
  .scenario-tab:last-child { grid-column: 1 / -1; }
  .scenario-result { grid-template-columns: 1fr; }
  .scenario-check { min-height: 330px; }
  .pattern-result { grid-template-columns: 1fr; }
  .pattern-preview { min-height: 340px; order: -1; }
  .palette-copy, .faq-heading { position: static; }
  .restore-visual, .restore-visual img { min-height: 520px; }
  .project-grid { grid-template-columns: 1fr; grid-template-rows: 500px repeat(2,350px); }
  .project-card-wide { grid-row: auto; }
  .estimate-action { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  :root { --section-space: var(--section-space-mobile); --card-space: 24px; }
  h1 { font-size: clamp(2.5rem,12vw,3.55rem); line-height: 1.1; letter-spacing: -.012em; }
  h2 { font-size: clamp(2.05rem,9.5vw,3rem); line-height: 1.12; letter-spacing: -.01em; }
  .site-header { padding: 10px 0; }
  .header-shell { gap: 10px; }
  .site-header .brand { --brand-size: clamp(2rem, 8vw, 2.5rem); }
  .hero { padding-top: 45px; padding-bottom: 50px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 480px; border-radius: 26px; }
  .proof-story, .palette-section, .projects-section, .estimate-section, .dealer-section, .faq-section { padding-block: var(--section-space); }
  .home-fit-section, .choice-section, .sample-section, .restore-section, .product-section, .construction-section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
  .scenario-tabs { grid-template-columns: 1fr; }
  .scenario-tab:last-child { grid-column: auto; }
  .scenario-answer, .scenario-check { padding: 28px 24px; }
  .pattern-tab { grid-template-columns: 64px 1fr; }
  .pattern-icon { width: 64px; height: 64px; }
  .pattern-result > div:first-child { padding: 30px 24px; }
  .swatches { grid-template-columns: repeat(2,1fr); }
  .swatch { min-height: 125px; }
  .wood-grades { grid-template-columns: 1fr; }
  .restore-visual, .restore-visual img { min-height: 420px; }
  .project-grid { grid-template-rows: 380px repeat(2,330px); }
  .product-grid, .estimate-grid, .buy-steps, .benefit-grid, .form-row { grid-template-columns: 1fr; }
  .product-tone { height: 220px; }
  .estimate-grid article { min-height: 210px; }
  .estimate-action { padding: 24px; }
  .estimate-action .button { width: 100%; }
  .board-diagram { padding: 22px 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-actions { width: 100%; }
  .final-actions .button { width: 100%; }
  .final-cta { padding-block: 64px; }
}

/* Editorial revision: shared pictograms, stronger hierarchy and readable copy. */
:where(section[id]) { scroll-margin-top: 110px; }
:where(.section-shell, .section-heading, .hero, .scenario-picker, .pattern-picker,
  .palette-layout, .dealer-layout, .footer-grid) > * { min-width: 0; }
p, li, figcaption, label, .hero-captions span, .pattern-tab small { text-wrap: pretty; }
button, input, select { text-align: left; }
.button, .text-link, .scenario-tab strong, .pattern-tab strong { text-wrap: balance; }
.aw-icon { display: block; width: 32px; height: 32px; flex: 0 0 auto; color: var(--green-dark); }
.scenario-tab .aw-icon { width: 28px; height: 28px; }
.scenario-tab[data-scenario="family"] .aw-icon { width: 32px; height: 32px; }
.scenario-tab.is-active .aw-icon { color: white; }
.sample-steps .aw-icon, .restore-list .aw-icon { width: 48px; height: 48px; padding: 9px; background: #eaf1ec; border-radius: 14px; }
.estimate-grid .aw-icon, .buy-steps .aw-icon, .benefit-grid .aw-icon { width: 52px; height: 52px; padding: 10px; border-radius: 15px; }
.estimate-grid .aw-icon, .buy-steps .aw-icon { color: #c6e5d3; background: rgba(255,255,255,.09); }
.benefit-grid .aw-icon { background: #eaf1ec; }
.main-nav { gap: clamp(14px, 1.45vw, 24px); }
.main-nav a { font-size: 1rem; white-space: nowrap; }
.nav-partner { font-weight: 650 !important; text-decoration: underline; text-underline-offset: 5px; }
.main-nav a { padding-block: 8px; }
.hero { grid-template-columns: minmax(0,1fr) minmax(0,1fr); min-height: 0; padding-block: 64px; }
.hero-copy { padding-left: 0; }
.hero h1 { font-size: clamp(2rem,3.8vw,3.6rem); }
.hero-visual { min-height: 540px; container-type: inline-size; }
.hero-visual img { position: absolute; inset: 0; }
.hero-actions .button { padding: 14px 22px; text-align: left; line-height: 1.35; }
.button { font-size: 1rem; padding-block: 12px; line-height: 1.4; text-align: left; }
.section-heading { gap: 40px; }
.section-heading > div { flex: 1 1 58%; }
.section-heading > p { flex: 1 1 36%; max-width: 43ch; font-size: 1.125rem; }
.scenario-tab strong, .pattern-tab strong { font-size: 1.125rem; }
.scenario-answer { padding: 36px; }
.scenario-answer h3 { font-size: clamp(1.75rem,2.5vw,2.5rem); line-height: 1.22; }
.scenario-check { padding: 32px; }
.scenario-check > span, .result-kicker { font-size: .875rem; letter-spacing: .06em; }
.scenario-check li { font-size: 1rem; }
.pattern-result > div:first-child { padding: 36px; }
.pattern-result h3 { font-size: clamp(2rem,2.8vw,3rem); line-height: 1.18; }
.pattern-tab small { font-size: .9375rem; opacity: 1; }
.pattern-result p { font-size: 1.125rem; }
.result-use span { font-size: .9375rem; }
.palette-layout { gap: 64px; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); }
.palette-copy h2 { font-size: clamp(2.25rem,3.4vw,3.5rem); line-height: 1.2; }
.palette-number { font-weight: 620; }
.palette-control { padding: 32px; }
.swatch { min-height: 148px; }
.swatch span { left: 8px; right: 8px; top: 12px; padding: 6px 4px; color: #28382f; background: #fff; font-size: .9375rem; }
.palette-selection span, .wood-grades span { font-size: .9375rem; }
.wood-grades article { padding: 18px; }
.wood-grades p { font-size: 1rem; }
.wood-grades strong { font-size: 1.0625rem; overflow-wrap: anywhere; }
.sample-copy > p:not(.eyebrow), .restore-copy > p:not(.eyebrow) { font-size: 1.125rem; }
.sample-steps li, .restore-list li { grid-template-columns: 48px minmax(0,1fr); align-items: start; gap: 18px; }
.sample-steps strong, .restore-list h3 { font-size: 1.25rem; line-height: 1.35; display: block; }
.sample-steps p, .restore-list p { font-size: 1.0625rem; line-height: 1.6; }
.restore-visual { min-height: 560px; }
.restore-visual img { min-height: 560px; }
.project-info span { font-size: .875rem; }
.project-info p { font-size: .9375rem; line-height: 1.45; }
.product-tone span { font-size: .875rem; }
.product-body p { font-size: 1rem; }
.product-body button { min-height: 44px; font-size: 1rem; }
.price-note { font-size: .9375rem; }
.estimate-grid h3, .benefit-grid h3 { min-height: 0; margin: 22px 0 14px; font-size: 1.5rem; line-height: 1.25; }
.estimate-grid p, .benefit-grid p { margin: 0; font-size: 1.0625rem; line-height: 1.6; }
.estimate-grid article, .benefit-grid article { min-height: 0; padding: 28px; }
.estimate-grid p { color: #dce7e0; }
.estimate-action .button-light { color: #183a2a; background: #fff; }
.estimate-action .button-light:hover { color: #fff; background: #183a2a; border-color: #183a2a; }
.buy-steps > div { padding: 24px; }
.buy-steps strong { margin-top: 18px; font-size: 1.375rem; line-height: 1.3; }
.buy-steps p { color: #e0eae3; font-size: 1.0625rem; line-height: 1.6; }
.dealer-form { padding: 36px; }
.dealer-form label, .dealer-form input, .dealer-form select { font-size: 1rem; min-width: 0; }
.form-heading span { font-size: .875rem; }
.form-note { font-size: .875rem; line-height: 1.55; }
.form-success p { font-size: 1rem; }
.construction-note { font-size: .9375rem; }
.faq-list summary { font-size: 1.25rem; line-height: 1.45; }
.faq-list details p { font-size: 1.125rem; }
.footer-grid a { font-size: 1rem; }
.footer-grid strong { font-size: .875rem; }
.final-layout h2 { max-width: 20ch; }

@media (max-width: 1320px) {
  .main-nav { align-items: stretch; gap: 4px; }
  .main-nav a { white-space: normal; padding: 12px; }
  .nav-partner { border-top: 1px solid var(--line); margin-top: 4px; }
  .scenario-result { grid-template-columns: 1fr; }
  .scenario-check { min-height: 0; }
  .pattern-result { grid-template-columns: minmax(0,1fr) minmax(0,.8fr); }
  .wood-grades { grid-template-columns: 1fr; }
}
@media (max-width: 1050px) {
  .palette-layout, .dealer-layout, .sample-section { grid-template-columns: 1fr; gap: 36px; }
  .dealer-copy { gap: 36px; }
  .palette-copy { position: static; }
  .palette-copy h2 { max-width: 20ch; }
  .wood-grades { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .scenario-picker, .pattern-picker { grid-template-columns: minmax(240px,.8fr) minmax(0,1.2fr); }
  .pattern-result { grid-template-columns: 1fr; }
  .pattern-preview { min-height: 280px; order: -1; }
  .restore-visual { min-height: 420px; }
  .restore-visual img { min-height: 420px; }
}
@media (max-width: 900px) {
  .hero, .scenario-picker, .pattern-picker { grid-template-columns: 1fr; }
  .section-heading > div, .section-heading > p { flex-basis: auto; }
  .hero-visual { min-height: 480px; }
  .hero-copy { max-width: 680px; }
  .hero { gap: 36px; padding-block: 48px; }
  .hero h1 { max-width: 18ch; }
  .pattern-tabs { grid-template-rows: none; }
  .final-layout { align-items: start; }
  .final-layout h2 { max-width: none; }
  .hero-actions { align-items: stretch; }
}
@media (max-width: 620px) {
  body { font-size: 1.0625rem; }
  h1 { font-size: clamp(2rem,8.4vw,3rem); line-height: 1.18; }
  h2 { font-size: clamp(1.875rem,7.5vw,2.5rem); line-height: 1.22; }
  .hero-visual { min-height: 420px; }
  .main-nav { left: 17px; right: 17px; max-height: calc(100dvh - 90px); overflow-y: auto; padding: 12px; }
  .scenario-answer, .scenario-check, .pattern-result > div:first-child { padding: 28px 24px; }
  .palette-control { padding: 20px; }
  .palette-copy h2 { font-size: 2.25rem; }
  .wood-grades { grid-template-columns: 1fr; }
  .wood-grades article { min-height: 0; }
  .wood-grades strong { font-size: 1.25rem; }
  .swatch span { font-size: .875rem; }
  .sample-steps li, .restore-list li { gap: 14px; }
  .sample-steps strong, .restore-list h3 { font-size: 1.1875rem; }
  .project-info { right: 14px; top: 14px; max-width: min(300px, calc(100% - 28px)); padding: 10px 14px; }
  .product-tone span { left: 14px; top: 14px; }
  .estimate-grid article { min-height: 0; }
  .estimate-grid h3, .benefit-grid h3 { font-size: 1.5rem; }
  .dealer-form { padding: 26px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .faq-list summary { font-size: 1.125rem; padding-right: 36px; }
  .faq-list details p { padding-right: 0; font-size: 1.0625rem; }
  .selection-bar { border-radius: 20px; gap: 12px; flex-wrap: wrap; }
}

@media (max-width: 760px) {
  .renewal-summary, .benefit-grid { grid-template-columns: 1fr; }
  .renewal-stat { max-width: 440px; padding: 24px; }
  .renewal-summary h2 { max-width: none; }
}

@container (max-width: 400px) {
  .hero-captions { left: 14px; right: 14px; top: 14px; grid-template-columns: minmax(0,1fr) 38px minmax(0,1fr); gap: 8px 6px; }
  .hero-material, .hero-stamp { padding: 12px 8px; border-radius: 14px; }
  .hero-material strong span { display: block; margin-top: 3px; font-size: 1rem; font-weight: 400; letter-spacing: 0; }
  .hero-connection { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
