:root {
  --ink: #10283f;
  --navy: #0c3a68;
  --navy-deep: #082d52;
  --paper: #fbfaf7;
  --white: #ffffff;
  --mist: #eef2f1;
  --graphite: #56636c;
  --muted: #586773;
  --line: rgba(16, 40, 63, .16);
  --light-line: rgba(255, 255, 255, .2);
  --clay: #b87856;
  --sage: #829183;
  --serif: Baskerville, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --pad: clamp(28px, 5vw, 86px);
  --max: 1720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.7 var(--sans); -webkit-font-smoothing: antialiased; }
body, button, input, textarea { font-family: var(--sans); }
button, input, textarea { font-size: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p { text-align: justify; text-justify: inter-word; }
ul { margin: 0; padding: 0; list-style: none; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; }
.site-shell { min-width: 0; overflow: clip; }
.scroll-progress { position: fixed; z-index: 500; top: 0; left: 0; width: 100%; height: 3px; transform-origin: left center; background: var(--clay); }
.eyebrow { color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-pad { padding: clamp(82px, 8vw, 132px) var(--pad); }
.essential-anchor { scroll-margin-top: 104px; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 88px; padding: 0 var(--pad); display: grid; grid-template-columns: minmax(220px, .8fr) minmax(420px, 1.4fr) auto; gap: 28px; align-items: center; border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, .94); transition: height .3s ease, border-color .3s ease, box-shadow .3s ease; backdrop-filter: blur(18px); }
.site-header.is-scrolled { height: 74px; border-color: var(--line); box-shadow: 0 10px 35px rgba(16, 40, 63, .06); }
.header-wordmark { display: grid; width: max-content; line-height: 1.1; }
.header-wordmark strong { font: 400 21px/1.1 var(--serif); }
.header-wordmark small { margin-top: 5px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2.2vw, 38px); }
.desktop-nav a, .material-shortcut { position: relative; color: #475966; font-size: 12px; font-weight: 740; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav a::after, .material-shortcut::after { content: ""; position: absolute; left: 0; right: 0; bottom: -9px; height: 1px; background: var(--navy); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover::after, .material-shortcut:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.mobile-toggle, .mobile-nav { display: none; }

.action-btn { min-height: 52px; padding: 0 19px 0 23px; border: 1px solid var(--navy); border-radius: 0; background: var(--navy); color: white; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 24px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .25s ease, color .25s ease, transform .25s ease; }
.action-btn:hover { background: var(--navy-deep); transform: translateY(-2px); }
.action-btn.is-secondary { background: transparent; color: var(--navy); }
.action-btn.is-secondary:hover { background: var(--navy); color: white; }
.btn-arrow { font-size: 20px; font-weight: 400; line-height: 1; transition: transform .25s ease; }
.action-btn:hover .btn-arrow { transform: translateX(4px); }
.header-actions .action-btn { min-height: 48px; padding-left: 21px; background: #e7eeec; border-color: #c7d4d1; color: var(--navy); box-shadow: inset 3px 0 0 var(--clay); }
.header-actions .action-btn:hover { background: #dce7e4; color: var(--navy); transform: translateY(-1px); }

.hero { min-height: 100vh; padding: 88px var(--pad) 0; display: grid; grid-template-rows: minmax(600px, 1fr) auto; background: var(--paper); }
.hero-main { width: min(var(--max), 100%); min-height: 0; margin: 0 auto; padding: clamp(42px, 6vh, 76px) 0; display: grid; grid-template-columns: minmax(330px, .78fr) minmax(480px, 1.22fr); gap: clamp(60px, 9vw, 160px); align-items: center; }
.hero-logo-wrap { min-height: 430px; display: grid; place-items: center; border-right: 1px solid var(--line); }
.hero-logo { display: block; width: min(420px, 88%); height: auto; }
.hero-copy { max-width: 890px; }
.hero-copy h1 { margin: 18px 0 28px; max-width: 850px; font: 400 clamp(58px, 5.3vw, 96px)/.96 var(--serif); letter-spacing: 0; }
.hero-copy p { max-width: 770px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.3vw, 20px); line-height: 1.75; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-rail { width: calc(100% + (var(--pad) * 2)); margin-left: calc(var(--pad) * -1); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); background: var(--white); }
.hero-rail a { min-height: 134px; padding: 25px var(--pad); display: grid; grid-template-columns: 38px 1fr; grid-template-rows: auto auto; column-gap: 16px; align-content: center; border-right: 1px solid var(--line); transition: background .25s ease, color .25s ease, padding .25s ease; }
.hero-rail a:last-child { border-right: 0; }
.hero-rail a:hover { padding-left: calc(var(--pad) + 8px); background: #e8efed; color: var(--ink); }
.hero-rail small { grid-row: 1 / 3; color: var(--clay); font: 400 22px/1 var(--serif); }
.hero-rail strong { font: 400 28px/1.1 var(--serif); }
.hero-rail span { margin-top: 9px; color: var(--muted); font-size: 14px; letter-spacing: .02em; }
.hero-rail a:hover span { color: #465966; }

.section-heading { position: relative; z-index: 2; width: min(var(--max), 100%); margin: 0 auto 58px; display: grid; grid-template-columns: minmax(520px, 1.2fr) minmax(390px, .8fr); gap: clamp(48px, 8vw, 132px); align-items: end; }
.section-heading h2 { margin: 0; max-width: 980px; text-align: left; font: 400 clamp(50px, 4.8vw, 86px)/.98 var(--serif); }
.section-heading p { margin: 0; padding-left: 28px; border-left: 2px solid rgba(184, 120, 86, .55); color: #465764; font-size: 18px; line-height: 1.75; }

.services, .brief, .faq { position: relative; overflow: hidden; }
.services { background: var(--white); }
.service-grid { position: relative; z-index: 2; width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 420px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(251, 250, 247, .92); transition: background .3s ease, transform .3s ease; }
.service-card:hover { z-index: 1; background: var(--white); transform: translateY(-6px); box-shadow: 0 22px 50px rgba(16, 40, 63, .08); }
.service-card h3 { margin: 0 0 26px; min-height: 104px; font: 400 clamp(34px, 2.8vw, 48px)/1 var(--serif); }
.service-card p { flex: 1; min-height: 140px; margin: 0 0 26px; color: #52626e; font-size: 16px; }
.service-card ul { padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.service-card li { position: relative; padding-left: 20px; color: var(--ink); font-size: 15px; line-height: 1.45; }
.service-card li::before { content: ""; position: absolute; left: 0; top: .75em; width: 7px; height: 1px; background: var(--clay); }

.interior-expertise { background: #e9eeef; }
.interior-tool { position: relative; z-index: 2; width: min(var(--max), 100%); min-height: 780px; margin: 0 auto; display: grid; grid-template-columns: minmax(580px, 1.08fr) minmax(520px, .92fr); border: 1px solid var(--line); background: white; }
.interior-media { position: relative; min-height: 780px; overflow: hidden; border-right: 1px solid var(--line); background: #d8d9d6; animation: interiorMediaIn .48s cubic-bezier(.22,1,.36,1); }
@keyframes interiorMediaIn { from { opacity: .45; } to { opacity: 1; } }
.interior-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.interior-media-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; min-height: 118px; padding: 24px 26px; border: 1px solid rgba(16,40,63,.18); background: rgba(251,250,247,.94); display: grid; align-content: center; gap: 7px; backdrop-filter: blur(12px); }
.interior-media-caption small { color: var(--clay); font-size: 11px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.interior-media-caption strong { max-width: 650px; font: 400 27px/1.22 var(--serif); }
.interior-panel { min-width: 0; display: grid; grid-template-rows: auto 1fr; }
.interior-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.interior-tabs button { position: relative; min-width: 0; min-height: 104px; padding: 18px 13px; border: 0; border-right: 1px solid var(--line); background: white; color: var(--muted); cursor: pointer; display: grid; align-content: center; gap: 13px; text-align: left; font-size: 12px; font-weight: 780; line-height: 1.3; transition: background .24s ease, color .24s ease; }
.interior-tabs button:last-child { border-right: 0; }
.interior-tabs button i { width: 24px; height: 2px; background: var(--line); transition: width .3s ease, background .3s ease; }
.interior-tabs button.is-active { background: #e6edef; color: var(--navy); }
.interior-tabs button.is-active i { width: 52px; background: var(--navy); }
.interior-detail { padding: clamp(38px, 4.5vw, 72px); animation: interiorDetailIn .44s cubic-bezier(.22,1,.36,1); }
@keyframes interiorDetailIn { from { opacity: .35; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.interior-detail > small { color: var(--clay); font-size: 11px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.interior-detail h3 { max-width: 680px; margin: 18px 0 24px; font: 400 clamp(42px, 3.8vw, 64px)/.98 var(--serif); }
.interior-detail > p { margin: 0; color: #4d5e68; font-size: 17px; line-height: 1.7; }
.interior-detail ul { margin-top: 34px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.interior-detail li { min-height: 88px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 14px; line-height: 1.5; }
.interior-detail li i { width: 10px; height: 2px; margin-top: .75em; flex: 0 0 auto; background: var(--clay); }

.clean-site { background: white; }
.clean-site-tool { position: relative; z-index: 2; width: min(var(--max), 100%); min-height: 700px; margin: 0 auto; display: grid; grid-template-columns: minmax(600px, 1.12fr) minmax(500px, .88fr); border: 1px solid var(--line); background: var(--paper); }
.clean-site-visual { position: relative; min-height: 700px; overflow: hidden; border-right: 1px solid var(--line); }
.clean-site-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .9s cubic-bezier(.22,1,.36,1); }
.clean-site-tool:hover .clean-site-visual img { transform: scale(1.015); }
.clean-site-statement { position: absolute; left: 0; right: 0; bottom: 0; min-height: 132px; padding: 26px 32px; background: rgba(16,40,63,.9); color: white; display: grid; align-content: center; gap: 7px; backdrop-filter: blur(10px); }
.clean-site-statement small { color: #efb995; font-size: 11px; font-weight: 820; letter-spacing: .12em; }
.clean-site-statement strong { max-width: 760px; font: 400 29px/1.2 var(--serif); }
.clean-site-steps { display: grid; grid-template-columns: 1fr 1fr; }
.clean-site-steps article { min-height: 350px; padding: clamp(28px, 3.5vw, 52px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; }
.clean-site-steps article:nth-child(even) { border-right: 0; }
.clean-site-steps article:nth-last-child(-n+2) { border-bottom: 0; }
.clean-site-steps small { color: var(--clay); font: 400 22px/1 var(--serif); }
.clean-site-steps h3 { margin: auto 0 16px; font: 400 34px/1 var(--serif); }
.clean-site-steps p { margin: 0; color: #4e5f69; font-size: 14px; line-height: 1.6; }
.clean-site-result { position: relative; z-index: 2; width: min(var(--max), 100%); min-height: 112px; margin: 26px auto 0; padding: 23px 30px; border: 1px solid var(--line); border-left: 5px solid var(--sage); background: #e5ebe8; display: grid; grid-template-columns: minmax(260px, .6fr) minmax(420px, 1.4fr); gap: 34px; align-items: center; }
.clean-site-result strong { font: 400 28px/1.15 var(--serif); }
.clean-site-result span { color: #4c5e68; font-size: 15px; font-weight: 690; }

.outdoors { background: #f0f3ef; }
.outdoor-tool { position: relative; z-index: 2; width: min(var(--max), 100%); min-height: 760px; margin: 0 auto; display: grid; grid-template-columns: minmax(560px, 1.08fr) minmax(520px, .92fr); border: 1px solid var(--line); background: white; }
.outdoor-visual { position: relative; min-height: 760px; overflow: hidden; border-right: 1px solid var(--line); animation: outdoorVisualIn .48s cubic-bezier(.22,1,.36,1); }
@keyframes outdoorVisualIn { from { opacity: .45; } to { opacity: 1; } }
.outdoor-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; display: block; transition: transform .9s cubic-bezier(.22,1,.36,1); }
.outdoor-visual.visual-garden img { object-position: 72% center; }
.outdoor-visual.visual-ground img { object-position: 28% center; }
.outdoor-visual.visual-terrace img { object-position: 52% center; }
.outdoor-visual.visual-build img { object-position: 62% center; }
.outdoor-tool:hover .outdoor-visual img { transform: scale(1.018); }
.outdoor-visual-caption { position: absolute; left: 0; right: 0; bottom: 0; min-height: 130px; padding: 26px 32px; background: rgba(251,250,247,.94); border-top: 1px solid rgba(16,40,63,.16); display: grid; align-content: center; gap: 6px; backdrop-filter: blur(12px); }
.outdoor-visual-caption small { color: var(--clay); font-size: 11px; font-weight: 820; letter-spacing: .12em; }
.outdoor-visual-caption strong { max-width: 620px; color: var(--ink); font: 400 29px/1.18 var(--serif); }
.outdoor-service-panel { min-width: 0; display: grid; grid-template-rows: auto 1fr; }
.outdoor-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.outdoor-tabs button { min-height: 82px; padding: 17px 20px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; color: var(--muted); cursor: pointer; text-align: left; font-size: 13px; font-weight: 780; line-height: 1.3; transition: background .24s ease, color .24s ease, box-shadow .24s ease; }
.outdoor-tabs button:nth-child(even) { border-right: 0; }
.outdoor-tabs button:nth-last-child(-n+2) { border-bottom: 0; }
.outdoor-tabs button.is-active { background: #e2eae4; color: var(--navy); box-shadow: inset 4px 0 0 var(--sage); }
.outdoor-service-detail { padding: clamp(36px, 4.4vw, 70px); animation: outdoorDetailIn .44s cubic-bezier(.22,1,.36,1); }
@keyframes outdoorDetailIn { from { opacity: .35; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.outdoor-service-detail > small { color: var(--clay); font-size: 11px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.outdoor-service-detail h3 { margin: 18px 0 24px; font: 400 clamp(42px, 3.6vw, 62px)/.98 var(--serif); }
.outdoor-service-detail > p { margin: 0; color: #4c5e68; font-size: 17px; line-height: 1.7; }
.outdoor-service-detail ul { margin-top: 34px; border-top: 1px solid var(--line); }
.outdoor-service-detail li { min-height: 60px; padding: 16px 0 16px 22px; border-bottom: 1px solid var(--line); position: relative; color: var(--ink); font-size: 15px; display: flex; align-items: center; }
.outdoor-service-detail li::before { content: ""; position: absolute; left: 0; width: 9px; height: 2px; background: var(--clay); }
.outdoor-service-detail footer { margin-top: 28px; padding-left: 18px; border-left: 2px solid var(--sage); color: #475966; font: 400 22px/1.35 var(--serif); }

.terraces { background: white; }
.terrace-tool { position: relative; z-index: 2; width: min(var(--max), 100%); min-height: 790px; margin: 0 auto; display: grid; grid-template-columns: minmax(560px, 1.04fr) minmax(560px, .96fr); border: 1px solid var(--line); background: var(--paper); }
.terrace-preview { min-height: 790px; overflow: hidden; border-right: 1px solid var(--line); background: #e7e9e5; display: grid; grid-template-rows: minmax(650px, 1fr) auto; isolation: isolate; }
.terrace-preview-scene { position: relative; min-height: 650px; overflow: hidden; background: #dfe4e1; isolation: isolate; }
.terrace-preview-wall { position: absolute; z-index: 0; inset: 0 0 45%; background: #e8e7e1; box-shadow: inset 0 -18px 38px rgba(16,40,63,.05); }
.terrace-preview-garden { position: absolute; z-index: 1; left: 0; right: 0; bottom: 43%; height: 12%; overflow: hidden; background: #70836d; border-top: 1px solid rgba(16,40,63,.1); }
.terrace-preview-garden i { position: absolute; bottom: -14px; width: 110px; height: 70px; border-radius: 50% 50% 0 0; background: #839480; }
.terrace-preview-garden i:nth-child(1) { left: 5%; }
.terrace-preview-garden i:nth-child(2) { left: 44%; width: 150px; background: #647966; }
.terrace-preview-garden i:nth-child(3) { right: 3%; width: 130px; background: #91a08c; }
.terrace-preview-surface { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; height: 47%; clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%); background-color: var(--terrace-surface); transition: background .45s ease; }
.terrace-preview-surface::after { content: ""; position: absolute; inset: 0; border-top: 1px solid rgba(16,40,63,.2); box-shadow: inset 0 28px 32px rgba(255,255,255,.08); }
.surface-porcelain { --terrace-surface: #aaa9a3; }
.surface-porcelain .terrace-preview-surface { background-image: repeating-linear-gradient(90deg, transparent 0 114px, rgba(255,255,255,.58) 115px 117px), repeating-linear-gradient(0deg, transparent 0 82px, rgba(255,255,255,.5) 83px 85px); }
.surface-stone { --terrace-surface: #ad9d87; }
.surface-stone .terrace-preview-surface { background-image: linear-gradient(90deg, transparent 49%, rgba(255,255,255,.34) 50%, transparent 51%), linear-gradient(0deg, transparent 49%, rgba(255,255,255,.3) 50%, transparent 51%), radial-gradient(circle at 30% 20%, rgba(255,255,255,.25) 0 3px, transparent 4px); background-size: 155px 106px, 155px 106px, 48px 44px; }
.surface-paver { --terrace-surface: #88817b; }
.surface-paver .terrace-preview-surface { background-image: linear-gradient(90deg, transparent 47%, rgba(255,255,255,.3) 48% 52%, transparent 53%), linear-gradient(0deg, transparent 44%, rgba(255,255,255,.28) 45% 52%, transparent 53%); background-size: 68px 42px; }
.surface-concrete { --terrace-surface: #8b9293; }
.surface-concrete .terrace-preview-surface { background-image: repeating-linear-gradient(90deg, transparent 0 148px, rgba(255,255,255,.42) 149px 151px), repeating-linear-gradient(0deg, transparent 0 112px, rgba(255,255,255,.36) 113px 115px), radial-gradient(circle, rgba(255,255,255,.2) 0 1px, transparent 2px); background-size: auto, auto, 10px 10px; }
.terrace-preview-threshold { position: absolute; z-index: 5; left: 13%; width: 38%; bottom: 45%; height: 8px; background: #f7f5ef; border: 1px solid rgba(16,40,63,.14); box-shadow: 0 6px 12px rgba(16,40,63,.1); }
.terrace-preview-planter { position: absolute; z-index: 5; right: 12%; bottom: 39%; width: 28%; height: 15%; background: #cbc5ba; border-top: 8px solid #727a74; box-shadow: 0 15px 28px rgba(16,40,63,.13); display: flex; align-items: flex-start; justify-content: space-around; padding: 0 12px; }
.terrace-preview-planter i { width: 28%; height: 70%; margin-top: -34%; border-radius: 50% 50% 18% 18%; background: #788b74; }
.terrace-preview-planter i:nth-child(2) { height: 88%; background: #657b66; }
.terrace-preview-label { position: absolute; z-index: 7; padding: 8px 11px; border: 1px solid rgba(16,40,63,.16); background: rgba(251,250,247,.92); color: var(--ink); font-size: 11px; font-weight: 760; letter-spacing: .03em; box-shadow: 0 8px 22px rgba(16,40,63,.06); }
.terrace-preview-label::after { content: ""; position: absolute; width: 26px; height: 1px; background: rgba(16,40,63,.34); }
.terrace-label-surface { left: 5%; bottom: 7%; }
.terrace-label-surface::after { left: 100%; top: 50%; }
.terrace-label-slope { right: 5%; bottom: 8%; }
.terrace-label-slope::after { right: 100%; top: 50%; }
.terrace-label-joint { right: 8%; bottom: 31%; }
.terrace-label-joint::after { right: 100%; top: 50%; }
.terrace-preview-caption { min-height: 112px; padding: 22px 28px; border-top: 1px solid var(--line); background: rgba(251,250,247,.97); display: grid; align-content: center; gap: 6px; }
.terrace-preview-caption small { color: var(--clay); font-size: 11px; font-weight: 820; letter-spacing: .12em; }
.terrace-preview-caption strong { font: 400 24px/1.22 var(--serif); }
.terrace-selector { min-width: 0; padding: clamp(34px, 4.2vw, 66px); display: flex; flex-direction: column; }
.terrace-selector > small { color: var(--muted); font-size: 11px; font-weight: 820; letter-spacing: .12em; }
.terrace-options { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.terrace-options button { min-height: 144px; padding: 0 18px 17px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; color: var(--ink); cursor: pointer; display: grid; grid-template-columns: 1fr; align-content: start; text-align: left; transition: background .25s ease, box-shadow .25s ease; }
.terrace-options button.is-active { background: #edf2f0; box-shadow: inset 0 -4px 0 var(--navy); }
.terrace-options button i { height: 46px; margin: 0 -18px 14px; border-bottom: 1px solid var(--line); background-color: #b7b0a5; }
.terrace-options .surface-porcelain i { background-image: linear-gradient(90deg, transparent 49%, rgba(255,255,255,.7) 50%, transparent 51%); background-size: 70px 100%; background-color: #a9aaa5; }
.terrace-options .surface-stone i { background-image: radial-gradient(circle at 20% 45%, rgba(255,255,255,.4) 0 2px, transparent 3px), radial-gradient(circle at 72% 28%, rgba(73,64,54,.18) 0 2px, transparent 3px); background-size: 42px 38px, 55px 46px; background-color: #ad9e88; }
.terrace-options .surface-paver i { background-image: linear-gradient(90deg, transparent 47%, rgba(255,255,255,.36) 48% 52%, transparent 53%), linear-gradient(0deg, transparent 45%, rgba(255,255,255,.32) 46% 52%, transparent 53%); background-size: 44px 28px; background-color: #8b837b; }
.terrace-options .surface-concrete i { background-image: radial-gradient(circle, rgba(255,255,255,.24) 0 1px, transparent 2px); background-size: 9px 9px; background-color: #858c8d; }
.terrace-options button span { font-size: 14px; font-weight: 780; }
.terrace-options button small { margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.terrace-detail { padding: 30px 0 26px; animation: terraceDetailIn .4s cubic-bezier(.22,1,.36,1); }
@keyframes terraceDetailIn { from { opacity: .4; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.terrace-detail h3 { margin: 0 0 14px; font: 400 40px/1 var(--serif); }
.terrace-detail p { margin: 0; color: #4d5e68; font-size: 15px; line-height: 1.65; }
.terrace-detail ul { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.terrace-detail li { min-height: 34px; padding: 6px 12px; border: 1px solid var(--line); background: white; color: var(--ink); font-size: 12px; font-weight: 740; }
.terrace-checks { margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.terrace-checks div { min-height: 76px; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 4px; }
.terrace-checks small { color: var(--clay); font: 400 17px/1 var(--serif); }
.terrace-checks strong { font-size: 13px; }

.garden-care { background: #eef2f1; }
.garden-tool { position: relative; z-index: 2; width: min(var(--max), 100%); min-height: 650px; margin: 0 auto; display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--line); background: white; }
.garden-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.garden-tabs button { position: relative; min-height: 104px; padding: 22px 28px; border: 0; border-right: 1px solid var(--line); background: white; color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; transition: background .25s ease, color .25s ease, box-shadow .25s ease; }
.garden-tabs button:last-child { border-right: 0; }
.garden-tabs button span { max-width: 320px; font: 400 24px/1.15 var(--serif); }
.garden-tabs button i { width: 32px; height: 2px; background: var(--line); transition: width .3s ease, background .3s ease; }
.garden-tabs button.is-active { background: #e4ebe7; color: var(--ink); box-shadow: inset 0 -4px 0 var(--sage); }
.garden-tabs button.is-active i { width: 58px; background: var(--sage); }
.garden-detail { position: relative; overflow: hidden; padding: clamp(42px, 4.5vw, 72px); background: #fbfaf7; color: var(--ink); display: grid; grid-template-columns: minmax(320px, .72fr) minmax(520px, 1.28fr); grid-template-rows: auto auto auto 1fr; column-gap: clamp(46px, 7vw, 110px); align-items: start; animation: gardenDetailIn .44s cubic-bezier(.22,1,.36,1); }
@keyframes gardenDetailIn { from { opacity: .45; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.garden-detail > small { grid-column: 1; color: var(--clay); font-size: 11px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.garden-detail h3 { grid-column: 1; max-width: 620px; margin: 18px 0 22px; color: var(--ink); font: 400 clamp(44px, 3.8vw, 64px)/.98 var(--serif); }
.garden-detail > p { grid-column: 1; max-width: 620px; margin: 0; color: #4d5e68; font-size: 17px; }
.garden-detail ul { grid-column: 2; grid-row: 1 / 5; margin: 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.garden-detail li { min-height: 92px; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 13px; color: var(--ink); background: white; font-size: 14px; }
.garden-detail li i { width: 9px; height: 2px; flex: 0 0 auto; background: var(--clay); }
.garden-detail footer { grid-column: 1; margin-top: 34px; padding: 20px 22px; border: 1px solid var(--line); border-left: 4px solid var(--sage); background: #e7edea; color: var(--ink); font: 400 22px/1.35 var(--serif); }

.outdoor-builds { background: var(--paper); }
.outdoor-build-grid { position: relative; z-index: 2; width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.outdoor-build-card { min-height: 390px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; display: flex; flex-direction: column; transition: transform .3s ease, background .3s ease; }
.outdoor-build-card:hover { z-index: 1; transform: translateY(-5px); background: #f7f9f6; box-shadow: 0 20px 46px rgba(16,40,63,.07); }
.outdoor-build-card h3 { min-height: 66px; margin: 0 0 22px; font: 400 38px/1 var(--serif); }
.outdoor-build-card p { flex: 1; margin: 0 0 22px; color: #53636e; font-size: 15px; }
.outdoor-build-card ul { padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.outdoor-build-card li { position: relative; padding-left: 18px; color: var(--ink); font-size: 14px; }
.outdoor-build-card li::before { content: ""; position: absolute; left: 0; top: .75em; width: 7px; height: 1px; background: var(--clay); }
.outdoor-build-process { position: relative; z-index: 2; width: min(var(--max), 100%); margin: 28px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: #e5ebe8; }
.outdoor-build-process div { min-height: 102px; padding: 20px 28px; border-right: 1px solid var(--line); display: grid; align-content: center; gap: 5px; }
.outdoor-build-process div:last-child { border-right: 0; }
.outdoor-build-process small { color: var(--clay); font-size: 10px; font-weight: 820; letter-spacing: .12em; }
.outdoor-build-process strong { font: 400 22px/1.2 var(--serif); }

.materials { position: relative; background: var(--mist); overflow: hidden; }
.material-tool { position: relative; z-index: 2; width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(520px, 1.1fr) minmax(480px, .9fr); min-height: 720px; border: 1px solid var(--line); background: var(--white); }
.material-preview { min-height: 720px; overflow: hidden; border-right: 1px solid var(--line); background: #f0eee8; display: grid; grid-template-rows: minmax(590px, 1fr) auto; isolation: isolate; }
.preview-scene { position: relative; min-height: 590px; overflow: hidden; background: #e7e4dd; isolation: isolate; }
.preview-wall { position: absolute; z-index: 0; inset: 0 0 38%; background: var(--wall-color); box-shadow: inset 0 -16px 32px rgba(16,40,63,.035); transition: background .5s ease; }
.preview-side { position: absolute; z-index: 1; top: 0; bottom: 38%; width: 13%; background: var(--wall-color); transition: background .5s ease; pointer-events: none; }
.side-left { left: 0; border-right: 1px solid rgba(16,40,63,.1); filter: brightness(.94); clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%); }
.side-right { right: 0; border-left: 1px solid rgba(16,40,63,.1); filter: brightness(1.035); clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%); }
.wall-chalk { --wall-color: #eeece5; }
.wall-clay { --wall-color: #b88d78; }
.wall-sage { --wall-color: #929e90; }
.preview-floor { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 38%; background-color: var(--floor-color); clip-path: polygon(13% 0, 87% 0, 100% 100%, 0 100%); transition: background .5s ease; }
.preview-floor::after { content: ""; position: absolute; inset: 0; border-top: 1px solid rgba(16,40,63,.18); box-shadow: inset 0 26px 34px rgba(255,255,255,.08); pointer-events: none; }
.preview-baseboard { position: absolute; z-index: 4; left: 13%; right: 13%; bottom: 37.4%; height: 7px; background: #f8f7f3; border-top: 1px solid rgba(16,40,63,.13); border-bottom: 1px solid rgba(16,40,63,.12); box-shadow: 0 6px 12px rgba(16,40,63,.08); }
.floor-oak { --floor-color: #b88b5c; }
.floor-oak .preview-floor { background-image: repeating-linear-gradient(90deg, transparent 0 76px, rgba(71, 42, 20, .25) 77px 78px), repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 4px, transparent 5px 24px); }
.floor-stone { --floor-color: #b9b5ac; }
.floor-stone .preview-floor { background-image: linear-gradient(90deg, transparent 49%, rgba(255,255,255,.4) 50%, transparent 51%), linear-gradient(0deg, transparent 49%, rgba(255,255,255,.34) 50%, transparent 51%); background-size: 150px 96px; }
.floor-terrazzo { --floor-color: #c9c0b3; }
.floor-terrazzo .preview-floor { background-image: radial-gradient(circle at 20% 20%, #766d64 0 3px, transparent 4px), radial-gradient(circle at 68% 62%, #e7ded1 0 5px, transparent 6px), radial-gradient(circle at 45% 80%, #986f5c 0 2px, transparent 3px); background-size: 45px 48px, 62px 58px, 38px 42px; }
.preview-window { position: absolute; z-index: 3; top: 11%; left: 19%; width: 29%; height: 40%; display: grid; grid-template-columns: 1fr 1fr; border: 12px solid rgba(255,255,255,.94); background: #becbd0; box-shadow: 0 18px 45px rgba(16,40,63,.13); }
.preview-window span:first-child { border-right: 2px solid rgba(255,255,255,.9); }
.preview-window span { background: linear-gradient(155deg, rgba(255,255,255,.5), transparent 52%); }
.preview-light { position: absolute; z-index: 2; top: 32%; left: 43%; width: 34%; height: 15%; background: rgba(255,255,255,.12); transform: skewY(5deg); transform-origin: left center; animation: daylightShift 8s ease-in-out infinite alternate; pointer-events: none; }
@keyframes daylightShift { to { transform: translateX(34px) skewY(-2deg); opacity: .48; } }
.preview-cabinet-shadow { position: absolute; z-index: 3; right: 17%; bottom: 41.5%; width: 30%; height: 25%; background: rgba(16,40,63,.12); filter: blur(14px); }
.preview-cabinet { position: absolute; z-index: 5; right: 18%; bottom: 43%; width: 28%; height: 23%; display: grid; grid-template-columns: 1fr 1fr; border-top: 11px solid var(--detail-color); border-bottom: 6px solid rgba(16,40,63,.13); background: #d7d2ca; box-shadow: 0 14px 28px rgba(16,40,63,.17); transition: border-color .4s ease; }
.preview-cabinet i { border-right: 1px solid rgba(16,40,63,.14); }
.preview-cabinet i:nth-child(2) { border-right: 0; }
.preview-cabinet i::after { content: ""; display: block; width: 2px; height: 22%; margin: 45% auto; background: var(--detail-color); transition: background .4s ease; }
.preview-cabinet b { position: absolute; right: 18px; bottom: 16px; color: rgba(16,40,63,.35); font-size: 8px; letter-spacing: .24em; }
.preview-label { position: absolute; z-index: 5; padding: 8px 11px; border: 1px solid rgba(16,40,63,.16); background: rgba(251,250,247,.9); color: var(--ink); font-size: 11px; font-weight: 760; letter-spacing: .04em; box-shadow: 0 8px 24px rgba(16,40,63,.06); }
.preview-label::after { content: ""; position: absolute; width: 28px; height: 1px; background: rgba(16,40,63,.34); }
.label-wall { top: 6%; right: 15%; }
.label-wall::after { right: 100%; top: 50%; }
.label-floor { left: 5%; bottom: 8%; }
.label-floor::after { left: 100%; top: 50%; }
.label-detail { top: 36%; right: 6%; }
.label-detail::after { right: 100%; top: 50%; }
.detail-brass { --detail-color: #9e7a43; }
.detail-black { --detail-color: #242a2e; }
.detail-steel { --detail-color: #8d969a; }
.preview-caption { position: relative; z-index: 6; min-height: 112px; padding: 22px 28px; background: rgba(251,250,247,.96); border-top: 1px solid rgba(16,40,63,.14); display: grid; align-content: center; gap: 6px; }
.preview-caption small { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.preview-caption strong { font: 400 24px/1.2 var(--serif); }
.material-controls { padding: clamp(36px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; }
.material-controls fieldset { margin: 0; padding: 0 0 28px; border: 0; }
.material-controls fieldset + fieldset { padding-top: 26px; border-top: 1px solid var(--line); }
.material-controls legend { margin-bottom: 17px; padding: 0; color: var(--navy); font: 400 28px/1 var(--serif); }
.swatch-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.swatch-choice { position: relative; min-width: 0; padding: 0 0 13px; border: 1px solid transparent; background: transparent; color: var(--ink); cursor: pointer; text-align: left; transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease, background .25s ease; }
.swatch-choice:hover { transform: translateY(-3px); }
.swatch-choice.is-active { border-color: var(--navy); background: var(--paper); transform: translateY(-3px); box-shadow: 0 0 0 3px white, 0 0 0 5px rgba(12,58,104,.34); }
.swatch-choice.is-active::after { content: "✓"; position: absolute; top: 8px; right: 8px; width: 24px; height: 24px; display: grid; place-items: center; background: var(--navy); color: white; font-size: 12px; }
.swatch-choice i { display: block; height: 62px; margin-bottom: 12px; background: var(--swatch); }
.swatch-choice span, .swatch-choice small { display: block; padding: 0 10px; }
.swatch-choice span { font-size: 14px; font-weight: 760; }
.swatch-choice small { margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.floor-oak i { --swatch: #b88b5c; }
.floor-stone i { --swatch: #b9b5ac; }
.floor-terrazzo i { --swatch: #c9c0b3; }
.wall-chalk i { --swatch: #eeece5; }
.wall-clay i { --swatch: #b88d78; }
.wall-sage i { --swatch: #929e90; }
.detail-brass i { --swatch: #9e7a43; }
.detail-black i { --swatch: #242a2e; }
.detail-steel i { --swatch: #8d969a; }
.material-advice { margin-top: 2px; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 90px 1fr; gap: 20px; }
.material-advice span { color: var(--clay); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.material-advice p { margin: 0; color: #4f606c; font-size: 15px; }

.method { background: #e8edec; color: var(--ink); }
.method .section-heading h2 { color: var(--ink); }
.method .section-heading p { border-color: rgba(184,120,86,.55); color: #465764; }
.method-tool { width: min(var(--max), 100%); min-height: 610px; margin: 0 auto; display: grid; grid-template-columns: minmax(340px, .72fr) minmax(520px, 1.28fr); border: 1px solid var(--line); background: white; }
.method-tabs { display: grid; border-right: 1px solid var(--line); background: #f8f8f5; }
.method-tabs button { min-height: 104px; padding: 20px 28px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; display: grid; grid-template-columns: 50px 1fr; gap: 16px; align-items: center; text-align: left; transition: background .3s ease, color .3s ease, padding .3s ease; }
.method-tabs button:last-child { border-bottom: 0; }
.method-tabs button:hover { color: var(--navy); }
.method-tabs button.is-active { padding-left: 38px; background: #e4ebe9; color: var(--ink); box-shadow: inset 5px 0 0 var(--clay); }
.method-tabs button span { font: 400 22px/1 var(--serif); }
.method-tabs button strong { font: 400 27px/1.1 var(--serif); }
.method-detail { position: relative; overflow: hidden; padding: clamp(44px, 6vw, 96px); background: #fbfaf7; animation: detailIn .5s cubic-bezier(.22,1,.36,1); }
@keyframes detailIn { from { opacity: .2; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.method-detail > *:not(.method-watermark) { position: relative; z-index: 1; }
.method-watermark { position: absolute; z-index: 0; right: 3%; bottom: -7%; color: rgba(16,40,63,.035); font: 400 clamp(180px, 23vw, 360px)/.8 var(--serif); pointer-events: none; animation: watermarkIn .55s cubic-bezier(.22,1,.36,1); }
@keyframes watermarkIn { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: none; } }
.method-progress { height: 4px; margin-bottom: 34px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.method-progress i { height: 4px; background: rgba(16,40,63,.12); transform-origin: left center; }
.method-progress i.is-reached { background: var(--clay); animation: stageFill .5s cubic-bezier(.22,1,.36,1) both; }
.method-progress i.is-reached:nth-child(2) { animation-delay: .07s; }
.method-progress i.is-reached:nth-child(3) { animation-delay: .14s; }
.method-progress i.is-reached:nth-child(4) { animation-delay: .21s; }
.method-progress i.is-reached:nth-child(5) { animation-delay: .28s; }
@keyframes stageFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.method-detail-top { display: flex; align-items: center; justify-content: space-between; }
.method-detail-top > span { color: var(--clay); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.step-controls { display: flex; gap: 8px; }
.step-controls button { width: 48px; height: 48px; border: 1px solid var(--line); background: white; color: var(--navy); cursor: pointer; font-size: 22px; transition: background .2s ease, color .2s ease; }
.step-controls button:hover { background: var(--navy); color: white; }
.method-detail h3 { margin: 52px 0 24px; color: var(--ink); font: 400 clamp(52px, 5vw, 88px)/.95 var(--serif); }
.method-detail > p { max-width: 880px; margin: 0; color: #4d5e68; font-size: 19px; }
.method-detail ul { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.method-detail li { min-height: 125px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 22px; color: var(--ink); background: white; font-size: 16px; }
.method-detail li i { width: 24px; height: 2px; background: var(--clay); }
.method-detail footer { margin-top: 34px; padding: 22px 24px; border: 1px solid var(--line); border-left: 4px solid var(--clay); background: #e7edea; color: var(--ink); font: 400 25px/1.35 var(--serif); }

.brief { background: var(--paper); }
.brief-tool { position: relative; z-index: 2; width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(600px, 1.15fr) minmax(430px, .85fr); border: 1px solid var(--line); background: white; }
.brief-questions { padding: clamp(38px, 5vw, 76px); display: grid; gap: 30px; }
.brief-question { display: grid; gap: 13px; }
.brief-question > span { color: var(--navy); font-size: 12px; font-weight: 820; letter-spacing: .11em; text-transform: uppercase; }
.segmented { display: flex; min-width: 0; border: 1px solid var(--line); }
.segmented button { min-height: 54px; flex: 1; padding: 10px 14px; border: 0; border-right: 1px solid var(--line); background: var(--white); color: var(--muted); cursor: pointer; font-size: 14px; font-weight: 720; transition: background .2s ease, color .2s ease, box-shadow .2s ease; }
.segmented button:last-child { border-right: 0; }
.segmented button.is-active { background: #dfe9e6; color: var(--navy); box-shadow: inset 0 -4px 0 var(--navy); }
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.check-grid button { min-height: 52px; padding: 9px 13px; border: 1px solid var(--line); background: white; color: var(--muted); cursor: pointer; display: flex; align-items: center; gap: 10px; text-align: left; font-size: 14px; transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease; }
.check-grid button i { width: 20px; height: 20px; border: 1px solid var(--line); display: grid; place-items: center; color: white; font-style: normal; font-size: 12px; }
.check-grid button.is-active { border-color: var(--navy); color: var(--navy); background: #e5eeeb; box-shadow: inset 4px 0 0 var(--navy); }
.check-grid button.is-active i { border-color: var(--navy); background: var(--navy); }
.range-line { display: grid; grid-template-columns: 44px 1fr 86px 44px; gap: 14px; align-items: center; }
.range-line input { width: 100%; accent-color: var(--navy); }
.range-line strong { text-align: right; font: 400 27px/1 var(--serif); }
.surface-step { width: 44px; height: 44px; border: 1px solid var(--line); background: white; color: var(--navy); cursor: pointer; font-size: 22px; line-height: 1; transition: background .2s ease, color .2s ease; }
.surface-step:hover { background: var(--navy); color: white; }
.brief-summary { position: relative; overflow: hidden; padding: clamp(42px, 5vw, 78px); background: #536d7b; color: white; display: flex; flex-direction: column; }
.brief-summary > small { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.summary-live { position: relative; animation: summaryUpdate .38s cubic-bezier(.22,1,.36,1); }
.summary-live::before { content: ""; position: absolute; inset: -12px -18px; border-left: 3px solid rgba(240,192,164,.7); opacity: 0; pointer-events: none; animation: updateCue .7s ease-out; }
@keyframes summaryUpdate { from { opacity: .45; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes updateCue { 0% { opacity: 0; } 28% { opacity: 1; } 100% { opacity: 0; } }
.brief-summary h3 { margin: 24px 0 36px; color: white; font: 400 clamp(46px, 4vw, 70px)/.98 var(--serif); }
.summary-lines { border-top: 1px solid var(--light-line); }
.summary-lines p { margin: 0; padding: 18px 0; border-bottom: 1px solid var(--light-line); display: grid; grid-template-columns: 100px 1fr; gap: 20px; text-align: left; }
.summary-lines span { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.summary-lines strong { color: white; font-size: 16px; line-height: 1.45; }
.summary-note { margin: 34px 0; padding: 24px; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); box-shadow: inset 4px 0 0 #f0c0a4; }
.summary-note span { display: block; color: #f0c0a4; font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.summary-note strong { display: block; margin-top: 9px; color: white; font: 400 24px/1.2 var(--serif); }
.summary-note p { margin: 10px 0 0; color: rgba(255,255,255,.92); font-size: 15px; }
.brief-summary .action-btn { width: 100%; margin-top: auto; background: white; border-color: white; color: var(--navy); justify-content: space-between; }

.faq { padding-top: 42px; padding-bottom: 42px; background: white; transition: padding .35s ease; }
.faq.is-expanded { padding-bottom: clamp(78px, 7vw, 116px); }
.faq-bar { position: relative; z-index: 2; width: min(var(--max), 100%); min-height: 112px; margin: 0 auto; padding: 24px 28px; border: 1px solid var(--line); background: var(--paper); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: center; }
.faq-bar-copy { display: grid; gap: 5px; }
.faq-bar-copy small { color: var(--clay); font-size: 11px; font-weight: 820; letter-spacing: .14em; }
.faq-bar-copy h2 { margin: 0; color: var(--ink); font: 400 clamp(30px, 3vw, 44px)/1.05 var(--serif); }
.faq-toggle { min-width: 224px; min-height: 58px; padding: 0 20px; border: 1px solid var(--navy); background: var(--navy); color: white; display: flex; justify-content: space-between; gap: 28px; align-items: center; cursor: pointer; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.faq-toggle:hover, .faq-toggle.is-active { background: #edf2f0; color: var(--navy); }
.faq-toggle i { position: relative; flex: 0 0 18px; width: 18px; height: 18px; }
.faq-toggle i::before, .faq-toggle i::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: currentColor; transition: transform .25s ease; }
.faq-toggle i::after { transform: rotate(90deg); }
.faq-toggle.is-active i::after { transform: rotate(0); }
.faq-content { width: min(var(--max), 100%); margin: 30px auto 0; animation: faqContentIn .45s cubic-bezier(.22,1,.36,1) both; }
.faq-intro { max-width: 820px; margin: 0 0 28px auto; color: var(--muted); font-size: 16px; }
@keyframes faqContentIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
.faq-tool { position: relative; z-index: 2; width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr); border-top: 1px solid var(--line); }
.faq-filters { padding-top: 24px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; border-right: 1px solid var(--line); }
.faq-filters button { min-height: 46px; padding: 0 18px; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 13px; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; transition: color .2s ease, padding .2s ease; }
.faq-filters button:hover { color: var(--navy); }
.faq-filters button.is-active { padding-left: 28px; color: var(--navy); border-left: 3px solid var(--clay); }
.faq-list { padding-left: clamp(28px, 5vw, 76px); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item > button { width: 100%; min-height: 96px; padding: 18px 0; border: 0; background: transparent; display: grid; grid-template-columns: 1fr 26px; gap: 24px; align-items: center; cursor: pointer; text-align: left; }
.faq-item > button span { font: 400 clamp(24px, 2.1vw, 36px)/1.12 var(--serif); }
.faq-item > button i { position: relative; width: 20px; height: 20px; }
.faq-item > button i::before, .faq-item > button i::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--navy); transition: transform .25s ease; }
.faq-item > button i::after { transform: rotate(90deg); }
.faq-item.is-open > button i::after { transform: rotate(0); }
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s ease, opacity .25s ease; }
.faq-item.is-open .faq-answer { max-height: 260px; opacity: 1; }
.faq-answer p { max-width: 930px; margin: 0; padding: 0 52px 30px 0; color: #4c5e6a; font-size: 17px; }

.contact { background: var(--mist); }
.contact-shell { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: minmax(430px, .78fr) minmax(600px, 1.22fr); border: 1px solid var(--line); }
.contact-copy { padding: clamp(48px, 6vw, 92px); background: #496879; color: white; display: flex; flex-direction: column; justify-content: center; }
.contact-copy h2 { margin: 0 0 28px; color: white; font: 400 clamp(54px, 5vw, 88px)/.96 var(--serif); }
.contact-copy > p { margin: 0; color: rgba(255,255,255,.9); font-size: 18px; }
.contact-points { margin-top: 48px; border-top: 1px solid var(--light-line); }
.contact-points div { padding: 19px 0; border-bottom: 1px solid var(--light-line); display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; }
.contact-points small { color: rgba(255,255,255,.68); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.contact-points strong { font-size: 15px; }
.contact-form { padding: clamp(48px, 6vw, 92px); background: rgba(255,255,255,.72); display: flex; flex-direction: column; justify-content: center; }
.contact-brief-reminder { margin: 0 0 34px; padding: 22px 24px; border: 1px solid rgba(16,40,63,.16); border-left: 4px solid var(--sage); background: #f3f5f2; display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 18px 24px; align-items: start; }
.contact-brief-reminder.is-complete { border-left-color: var(--clay); background: #f7f4ef; }
.contact-brief-title { display: grid; gap: 7px; }
.contact-brief-title small { color: #55705f; font-size: 11px; font-weight: 820; letter-spacing: .12em; }
.contact-brief-reminder.is-complete .contact-brief-title small { color: var(--clay); }
.contact-brief-title strong { color: var(--navy); font: 400 23px/1.18 var(--serif); }
.contact-brief-reminder p { margin: 0; color: #465764; font-size: 15px; line-height: 1.55; }
.contact-brief-reminder a { grid-column: 2; width: min(230px, 100%); justify-self: end; padding: 10px 0; border-bottom: 1px solid rgba(16,40,63,.35); color: var(--navy); display: flex; justify-content: space-between; gap: 18px; font-size: 12px; font-weight: 820; letter-spacing: .06em; text-transform: uppercase; transition: border-color .2s ease, color .2s ease; }
.contact-brief-reminder a:hover { border-color: var(--clay); color: var(--clay); }
.contact-brief-reminder a span { font-size: 18px; line-height: .8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact-form label { display: grid; gap: 9px; margin-bottom: 25px; }
.contact-form label > span { color: var(--muted); font-size: 12px; font-weight: 820; letter-spacing: .11em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(16,40,63,.32); border-radius: 0; background: transparent; outline: 0; padding: 11px 0 14px; color: var(--ink); font-size: 16px; line-height: 1.55; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--navy); }
.photo-welcome { margin: 4px 0 22px; padding: 21px 22px; border: 1px solid rgba(16,40,63,.18); border-left: 4px solid var(--clay); background: #edf2f0; display: grid; grid-template-columns: minmax(220px, .75fr) minmax(300px, 1.25fr); gap: 26px; align-items: center; }
.photo-welcome-title { display: grid; gap: 6px; }
.photo-welcome-title small { color: var(--clay); font-size: 11px; font-weight: 820; letter-spacing: .12em; }
.photo-welcome-title strong { color: var(--navy); font: 400 24px/1.18 var(--serif); }
.photo-welcome p { margin: 0; color: #465764; font-size: 15px; line-height: 1.55; }
.photo-uploader { position: relative; min-width: 0; grid-column: 1 / -1; display: grid; gap: 12px; }
.contact-form input.photo-input { position: absolute; top: 0; left: 0; width: 1px; height: 1px; padding: 0; border: 0; overflow: hidden; opacity: 0; clip: rect(0 0 0 0); clip-path: inset(50%); pointer-events: none; white-space: nowrap; }
.photo-dropzone { min-height: 112px; padding: 20px 22px; border: 1px dashed rgba(16,40,63,.34); background: rgba(255,255,255,.68); display: grid; grid-template-columns: 48px minmax(0, 1fr) auto; gap: 18px; align-items: center; cursor: pointer; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.photo-dropzone:hover, .photo-dropzone:focus-visible, .photo-dropzone.is-dragging { border-color: var(--clay); background: white; box-shadow: inset 0 0 0 1px rgba(184,120,86,.16); outline: 0; }
.photo-upload-icon { width: 48px; height: 48px; border: 1px solid rgba(16,40,63,.28); color: var(--navy); display: grid; place-items: center; font: 300 31px/1 var(--sans); transition: color .2s ease, border-color .2s ease, background .2s ease; }
.photo-dropzone:hover .photo-upload-icon, .photo-dropzone.is-dragging .photo-upload-icon { border-color: var(--clay); background: #f7f2ee; color: var(--clay); }
.photo-drop-copy { min-width: 0; display: grid; gap: 3px; }
.photo-drop-copy strong { color: var(--navy); font-size: 16px; }
.photo-drop-copy small { color: var(--muted); font-size: 13px; line-height: 1.4; }
.photo-count { min-width: 58px; padding: 8px 10px; border-left: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 780; text-align: right; }
.photo-previews { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.photo-previews figure { position: relative; min-width: 0; margin: 0; border: 1px solid var(--line); background: white; overflow: hidden; }
.photo-previews img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo-previews figcaption { min-width: 0; padding: 9px 10px 10px; display: grid; gap: 1px; }
.photo-previews figcaption span { overflow: hidden; color: var(--ink); font-size: 11px; font-weight: 720; text-overflow: ellipsis; white-space: nowrap; }
.photo-previews figcaption small { color: var(--muted); font-size: 10px; }
.photo-previews button { position: absolute; top: 7px; right: 7px; width: 30px; height: 30px; padding: 0; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(16,40,63,.86); color: white; display: grid; place-items: center; cursor: pointer; font-size: 20px; line-height: 1; transition: background .2s ease, transform .2s ease; }
.photo-previews button:hover { background: var(--clay); transform: scale(1.05); }
.photo-upload-note, .photo-welcome .photo-upload-note { margin: 0; color: var(--muted); font-size: 12px; font-weight: 680; text-align: left; }
.photo-error, .photo-welcome .photo-error { margin: 0; color: #8b3d32; font-size: 13px; font-weight: 680; text-align: left; }
.form-submit { margin-top: 14px; display: flex; align-items: center; gap: 22px; }
.form-submit small { max-width: 340px; color: var(--muted); font-size: 14px; line-height: 1.45; }

.site-footer { min-height: 220px; padding: 42px var(--pad); display: grid; grid-template-columns: 1fr auto 1fr; gap: 36px; align-items: end; border-top: 1px solid var(--line); background: white; }
.site-footer > div { display: grid; gap: 5px; }
.site-footer > div strong { font: 400 27px/1 var(--serif); }
.site-footer > div small, .site-footer > span { color: var(--muted); font-size: 12px; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.site-footer nav a { color: var(--muted); font-size: 12px; font-weight: 760; letter-spacing: .07em; text-transform: uppercase; }
.toast { position: fixed; z-index: 600; left: 50%; bottom: 24px; width: min(620px, calc(100vw - 32px)); padding: 16px 20px; background: var(--ink); color: white; transform: translate(-50%, 24px); opacity: 0; pointer-events: none; box-shadow: 0 18px 55px rgba(16,40,63,.22); font-size: 13px; text-align: center; transition: opacity .25s ease, transform .25s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1320px) {
  .site-header { grid-template-columns: minmax(190px, .8fr) 1fr auto; }
  .desktop-nav { gap: 17px; }
  .desktop-nav a { font-size: 11px; }
  .material-shortcut { display: none; }
  .section-heading { grid-template-columns: minmax(460px, 1.12fr) minmax(340px, .88fr); gap: clamp(38px, 6vw, 80px); }
  .service-card { min-height: 430px; }
  .service-card p { min-height: 150px; }
  .interior-tool, .clean-site-tool { grid-template-columns: 1fr 1fr; }
  .outdoor-tool, .terrace-tool { grid-template-columns: 1fr 1fr; }
  .outdoor-build-card { min-height: 410px; }
  .material-tool { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav { display: none; }
  .hero-main, .section-heading, .interior-tool, .clean-site-tool, .outdoor-tool, .terrace-tool, .garden-tool, .material-tool, .method-tool, .brief-tool, .contact-shell { grid-template-columns: 1fr; }
  .hero-main { gap: 34px; }
  .hero-logo-wrap { min-height: 280px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-logo { width: min(270px, 55vw); }
  .hero-copy { max-width: 820px; margin: 0 auto; }
  .hero-rail a { padding-left: 28px; padding-right: 28px; }
  .section-heading { gap: 18px; }
  .section-heading h2 { max-width: 900px; }
  .section-heading p { max-width: 820px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card p { min-height: auto; }
  .material-preview { min-height: 620px; border-right: 0; border-bottom: 1px solid var(--line); }
  .method-tabs { grid-template-columns: repeat(5, 1fr); border-right: 0; border-bottom: 1px solid var(--light-line); }
  .method-tabs button { min-height: 96px; padding: 14px; grid-template-columns: 1fr; gap: 7px; text-align: center; border-right: 1px solid var(--light-line); border-bottom: 0; }
  .method-tabs button.is-active { padding-left: 14px; }
  .method-tabs button strong { font-size: 18px; }
  .brief-summary { min-height: 560px; }
  .contact-copy { min-height: 560px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > span { display: none; }
}

@media (max-width: 760px) {
  :root { --pad: 22px; }
  body { font-size: 16px; }
  .site-header { height: 68px; grid-template-columns: 1fr auto; gap: 16px; }
  .site-header.is-scrolled { height: 62px; }
  .header-wordmark strong { font-size: 17px; }
  .header-wordmark small, .header-actions { display: none; }
  .mobile-toggle { display: grid; place-items: center; width: 42px; height: 42px; border: 0; background: transparent; position: relative; }
  .mobile-toggle span { position: absolute; width: 24px; height: 1px; background: var(--navy); transition: top .25s ease, transform .25s ease; }
  .mobile-toggle span:first-child { top: 17px; }
  .mobile-toggle span:last-child { top: 24px; }
  .mobile-toggle.is-open span:first-child { top: 21px; transform: rotate(45deg); }
  .mobile-toggle.is-open span:last-child { top: 21px; transform: rotate(-45deg); }
  .mobile-nav { display: grid; position: fixed; z-index: 96; top: 62px; left: 0; right: 0; max-height: 0; overflow: hidden; opacity: 0; padding: 0 var(--pad); border-bottom: 1px solid var(--line); background: rgba(251,250,247,.98); transition: max-height .3s ease, opacity .2s ease, padding .3s ease; }
  .mobile-nav.is-open { max-height: 430px; opacity: 1; padding-top: 12px; padding-bottom: 18px; }
  .mobile-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font: 400 25px/1 var(--serif); }
  .hero { min-height: auto; padding-top: 68px; grid-template-rows: auto auto; }
  .hero-main { padding: 34px 0 48px; }
  .hero-logo-wrap { min-height: 220px; }
  .hero-logo { width: min(230px, 67vw); }
  .hero-copy h1 { font-size: 48px; }
  .hero-copy p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .action-btn { width: 100%; justify-content: space-between; }
  .hero-rail { grid-template-columns: 1fr; }
  .hero-rail a { min-height: 98px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-pad { padding-top: 76px; padding-bottom: 76px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 48px; }
  .section-heading p { padding-left: 18px; font-size: 17px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .interior-media, .clean-site-visual { min-height: 560px; border-right: 0; border-bottom: 1px solid var(--line); }
  .interior-detail { min-height: 620px; }
  .clean-site-steps article { min-height: 280px; }
  .clean-site-result { grid-template-columns: 1fr; gap: 8px; }
  .outdoor-visual, .terrace-preview { min-height: 560px; border-right: 0; border-bottom: 1px solid var(--line); }
  .outdoor-service-detail { min-height: 560px; }
  .terrace-preview { grid-template-rows: minmax(450px, 1fr) auto; }
  .terrace-preview-scene { min-height: 450px; }
  .terrace-selector { min-height: 700px; padding: 36px 24px; }
  .garden-tabs { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .garden-tabs button { min-width: 0; min-height: 112px; padding: 18px; border-right: 1px solid var(--line); border-bottom: 0; align-items: flex-start; flex-direction: column; }
  .garden-tabs button:last-child { border-right: 0; }
  .garden-tabs button span { font-size: 20px; }
  .garden-tabs button i { width: 28px; }
  .garden-tabs button.is-active i { width: 52px; }
  .garden-detail { min-height: 570px; padding: 40px 24px; grid-template-columns: 1fr; grid-template-rows: auto; gap: 0; }
  .garden-detail h3 { font-size: 50px; }
  .garden-detail > small, .garden-detail h3, .garden-detail > p, .garden-detail ul, .garden-detail footer { grid-column: 1; }
  .garden-detail ul { grid-row: auto; margin-top: 32px; }
  .outdoor-build-grid { grid-template-columns: repeat(2, 1fr); }
  .outdoor-build-card { min-height: 350px; }
  .outdoor-build-process { grid-template-columns: 1fr; }
  .outdoor-build-process div { border-right: 0; border-bottom: 1px solid var(--line); }
  .outdoor-build-process div:last-child { border-bottom: 0; }
  .material-preview { min-height: 560px; grid-template-rows: minmax(430px, 1fr) auto; }
  .preview-scene { min-height: 430px; }
  .preview-window { left: 16%; width: 34%; height: 39%; }
  .preview-cabinet-shadow { right: 9%; bottom: 41.5%; width: 38%; height: 26%; }
  .preview-cabinet { right: 11%; bottom: 43%; width: 35%; height: 23%; }
  .material-controls { padding: 30px 22px; }
  .swatch-row { gap: 6px; }
  .swatch-choice i { height: 48px; }
  .swatch-choice span { padding: 0 6px; font-size: 12px; }
  .swatch-choice small { display: none; }
  .preview-label { font-size: 10px; }
  .label-wall { top: 4%; right: 9%; }
  .label-floor { left: 4%; bottom: 6%; }
  .label-detail { top: 39%; right: 4%; }
  .material-advice { grid-template-columns: 1fr; gap: 8px; }
  .method-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .method-tabs button { flex: 0 0 145px; scroll-snap-align: start; }
  .method-detail { padding: 34px 24px 40px; }
  .method-detail h3 { margin-top: 38px; font-size: 50px; }
  .method-detail > p { font-size: 16px; }
  .method-detail ul { grid-template-columns: 1fr; }
  .method-detail li { min-height: 92px; }
  .brief-questions, .brief-summary { padding: 32px 22px; }
  .segmented { display: grid; grid-template-columns: 1fr; }
  .segmented button { border-right: 0; border-bottom: 1px solid var(--line); }
  .segmented button:last-child { border-bottom: 0; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .brief-summary { min-height: auto; }
  .brief-summary h3 { font-size: 48px; }
  .faq-tool { grid-template-columns: 1fr; }
  .faq-bar { grid-template-columns: 1fr; gap: 18px; }
  .faq-toggle { width: 100%; }
  .faq-intro { margin-left: 0; }
  .faq-filters { padding: 0 0 18px; flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .faq-filters button { flex: 0 0 auto; }
  .faq-filters button.is-active { padding-left: 18px; border-left: 0; border-bottom: 3px solid var(--clay); }
  .faq-list { padding-left: 0; }
  .faq-item > button span { font-size: 27px; }
  .contact-copy, .contact-form { min-height: auto; padding: 46px 24px; }
  .contact-copy h2 { font-size: 50px; }
  .contact-brief-reminder { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .contact-brief-reminder a { grid-column: 1; width: 100%; justify-self: stretch; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .photo-welcome { grid-template-columns: 1fr; gap: 12px; }
  .photo-previews { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .form-submit { flex-direction: column; align-items: flex-start; }
  .form-submit .action-btn { width: 100%; justify-content: space-between; }
  .site-footer { min-height: 250px; grid-template-columns: 1fr; align-items: start; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .hero-copy h1, .section-heading h2 { font-size: 43px; }
  .hero-logo-wrap { min-height: 200px; }
  .faq { padding-top: 26px; padding-bottom: 26px; }
  .faq.is-expanded { padding-bottom: 70px; }
  .faq-bar { min-height: 0; padding: 22px 20px; }
  .faq-bar-copy h2 { font-size: 32px; }
  .photo-dropzone { min-height: 132px; padding: 18px; grid-template-columns: 44px minmax(0, 1fr); gap: 14px; }
  .photo-upload-icon { width: 44px; height: 44px; }
  .photo-count { grid-column: 2; width: max-content; min-width: 0; padding: 0; border-left: 0; text-align: left; }
  .photo-previews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .interior-media, .clean-site-visual { min-height: 470px; }
  .interior-media-caption { left: 16px; right: 16px; bottom: 16px; min-height: 110px; padding: 18px; }
  .interior-media-caption strong { font-size: 23px; }
  .interior-tabs { grid-template-columns: 1fr 1fr; }
  .interior-tabs button { min-height: 86px; }
  .interior-detail { min-height: 760px; padding: 34px 22px; }
  .interior-detail h3 { font-size: 42px; }
  .interior-detail ul { grid-template-columns: 1fr; }
  .clean-site-statement { min-height: 150px; padding: 22px; }
  .clean-site-statement strong { font-size: 24px; }
  .clean-site-steps { grid-template-columns: 1fr; }
  .clean-site-steps article { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--line); }
  .clean-site-steps article:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .clean-site-steps article:last-child { border-bottom: 0; }
  .clean-site-result { padding: 22px; }
  .clean-site-result strong { font-size: 25px; }
  .outdoor-visual, .terrace-preview { min-height: 560px; }
  .outdoor-visual-caption { min-height: 114px; padding: 20px; }
  .outdoor-visual-caption strong, .terrace-preview-caption strong { font-size: 23px; }
  .outdoor-tabs { grid-template-columns: 1fr; }
  .outdoor-tabs button { min-height: 62px; border-right: 0; border-bottom: 1px solid var(--line); }
  .outdoor-tabs button:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .outdoor-tabs button:last-child { border-bottom: 0; }
  .outdoor-service-detail { min-height: 620px; padding: 34px 22px; }
  .outdoor-service-detail h3 { font-size: 42px; }
  .terrace-preview { grid-template-rows: minmax(440px, 1fr) auto; }
  .terrace-preview-scene { min-height: 440px; }
  .terrace-preview-label { font-size: 9px; }
  .terrace-preview-planter { right: 8%; width: 34%; }
  .terrace-label-joint { right: 4%; bottom: 32%; }
  .terrace-preview-caption { padding: 18px 16px; }
  .terrace-selector { min-height: 780px; padding: 32px 20px; }
  .terrace-options { grid-template-columns: 1fr; }
  .terrace-options button { min-height: 118px; }
  .terrace-checks div { padding: 10px 8px; }
  .garden-tabs { grid-template-columns: 1fr; }
  .garden-tabs button { min-height: 74px; border-right: 0; border-bottom: 1px solid var(--line); flex-direction: row; align-items: center; }
  .garden-tabs button:last-child { border-bottom: 0; }
  .garden-detail { min-height: 760px; padding: 36px 22px; }
  .garden-detail h3 { font-size: 44px; }
  .garden-detail ul { grid-template-columns: 1fr; }
  .outdoor-build-grid { grid-template-columns: 1fr; }
  .outdoor-build-card { min-height: 330px; }
  .outdoor-build-process strong { font-size: 20px; }
  .preview-caption { left: auto; right: auto; bottom: auto; padding: 18px 16px; }
  .check-grid { grid-template-columns: 1fr; }
  .range-line { grid-template-columns: 44px 1fr 44px; gap: 10px; }
  .range-line strong { grid-column: 1 / -1; grid-row: 1; text-align: left; }
  .range-line input { grid-column: 1 / -1; grid-row: 2; }
  .range-line .surface-step:first-child { grid-column: 1; grid-row: 3; }
  .range-line .surface-step:last-child { grid-column: 3; grid-row: 3; }
  .summary-lines p { grid-template-columns: 1fr; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
