:root {
  --ink: #252722;
  --ink-soft: #494b44;
  --paper: #f6f1e8;
  --paper-deep: #ece4d7;
  --card: #fffdf9;
  --clay: #b85f3d;
  --clay-dark: #8c4229;
  --sand: #d4b88b;
  --olive: #69705b;
  --line: #dcd3c5;
  --white: #fff;
  --shadow: 0 22px 60px rgba(54, 45, 34, .12);
  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; text-wrap: balance; }
h1 { margin-bottom: 1.35rem; font-size: clamp(2.65rem, 10vw, 5.4rem); letter-spacing: -.065em; }
h2 { margin-bottom: 1.25rem; font-size: clamp(2.15rem, 6.2vw, 3.75rem); letter-spacing: -.05em; }
h3 { margin-bottom: .7rem; font-size: 1.15rem; letter-spacing: -.025em; }
p { color: var(--ink-soft); }
ul, ol { margin-top: 0; }
::selection { background: var(--sand); color: var(--ink); }
:focus-visible { outline: 3px solid #176b87; outline-offset: 4px; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding-block: clamp(5rem, 10vw, 8.5rem); }
.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;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--clay-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow > span { width: 1.8rem; height: 2px; background: var(--clay); }
.eyebrow-light { color: #e9b79f; }
.section-heading > p:not(.eyebrow) { max-width: 42rem; font-size: 1.05rem; }
.centered { max-width: 46rem; margin: 0 auto 3.2rem; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered > p:last-child { margin-inline: auto; }

.button {
  min-height: 3.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .9rem 1.25rem;
  border: 1px solid var(--clay);
  border-radius: 2px;
  background: var(--clay);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.button:hover { border-color: var(--clay-dark); background: var(--clay-dark); transform: translateY(-2px); }
.button-outline { border-color: #aea596; background: transparent; color: var(--ink); }
.button-outline:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.button-light { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-light:hover { border-color: #eee4d7; background: #eee4d7; color: var(--ink); }
.button-small { min-height: 2.75rem; padding: .7rem 1rem; font-size: .8rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--clay-dark);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(91, 80, 65, .15);
  background: rgba(246, 241, 232, .94);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 4.7rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); text-decoration: none; }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-size: .95rem; line-height: 1.2; letter-spacing: -.025em; }
.brand small { margin-top: .15rem; color: #777267; font-size: .58rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.brand-mark { position: relative; width: 2.55rem; height: 2.55rem; display: block; border: 1px solid var(--ink); }
.brand-mark i { position: absolute; bottom: .48rem; width: .38rem; background: var(--clay); }
.brand-mark i:nth-child(1) { left: .48rem; height: .75rem; }
.brand-mark i:nth-child(2) { left: 1.03rem; height: 1.15rem; }
.brand-mark i:nth-child(3) { left: 1.58rem; height: 1.55rem; }
.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
}
.nav-toggle > span:last-child,
.nav-toggle > span:last-child::before,
.nav-toggle > span:last-child::after {
  width: 1.25rem;
  height: 2px;
  display: block;
  background: var(--ink);
  content: "";
  transition: transform .2s, opacity .2s;
}
.nav-toggle > span:last-child { position: relative; }
.nav-toggle > span:last-child::before { position: absolute; top: -.38rem; }
.nav-toggle > span:last-child::after { position: absolute; top: .38rem; }
.nav-toggle[aria-expanded="true"] > span:last-child { background: transparent; }
.nav-toggle[aria-expanded="true"] > span:last-child::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:last-child::after { top: 0; transform: rotate(-45deg); }
.site-nav {
  position: fixed;
  inset: 4.75rem 0 auto;
  max-height: calc(100vh - 4.75rem);
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: .2rem;
  overflow-y: auto;
  padding: 1.2rem 1rem 1.6rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: flex; }
.site-nav > a:not(.button) { padding: .8rem .6rem; font-size: .95rem; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.button):hover { color: var(--clay-dark); }

.hero {
  position: relative;
  padding-block: clamp(3.8rem, 9vw, 7.5rem) 4rem;
  overflow: hidden;
}
.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -15%;
  width: 55%;
  height: 100%;
  background-image: linear-gradient(rgba(94, 81, 65, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(94, 81, 65, .07) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to left, #000, transparent);
}
.hero-grid { display: grid; gap: 3rem; align-items: center; }
.hero h1 em { display: block; color: var(--clay); font-style: normal; font-weight: 500; }
.hero-lead { max-width: 42rem; margin-bottom: 1.6rem; font-size: 1.08rem; }
.tick-list { display: grid; gap: .65rem; padding: 0; list-style: none; }
.tick-list li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); font-size: .93rem; }
.tick-list li::before {
  position: absolute;
  top: .28rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  color: white;
  content: "✓";
  font-size: .62rem;
  font-weight: 900;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.75rem; }
.demo-note { max-width: 36rem; margin: 1rem 0 0; color: #777267; font-size: .7rem; }

.hero-visual {
  position: relative;
  min-height: 29rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 2.8rem 0 3.1rem;
}
.hero-visual::before { position: absolute; inset: 1rem; border: 1px solid #bdb2a3; content: ""; }
.room { position: relative; overflow: hidden; border-block: 1px solid #b3a898; }
.room-before { margin-top: 2.5rem; border-left: 1px solid #b3a898; background: #b8aa97; filter: saturate(.6); }
.room-after { border-right: 1px solid #b3a898; background: #e9dfd1; box-shadow: 0 25px 60px rgba(49, 38, 26, .19); }
.visual-label {
  position: absolute;
  z-index: 5;
  top: .8rem;
  left: .8rem;
  padding: .34rem .6rem;
  background: rgba(37, 39, 34, .84);
  color: white;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.room-wall { position: absolute; inset: 0 0 29%; background: linear-gradient(117deg, #afa08b, #c5b7a4 65%, #a99884); }
.old-pipe { position: absolute; left: 27%; bottom: 0; width: 8px; height: 70%; border: 2px solid #6f6456; border-bottom: 0; opacity: .65; }
.old-pipe::after { position: absolute; top: -3px; left: -13px; width: 30px; height: 8px; border: 2px solid #6f6456; content: ""; }
.old-mark { position: absolute; width: 2.4rem; height: 1px; background: rgba(77, 66, 52, .45); transform: rotate(-18deg); }
.mark-one { top: 35%; right: 20%; }
.mark-two { top: 57%; left: 18%; transform: rotate(29deg); }
.room-floor { position: absolute; inset: 71% 0 0; background: repeating-linear-gradient(115deg, #897b6b 0 2px, #aa9b88 2px 31px); }
.room-after .room-floor { background: repeating-linear-gradient(115deg, #a98662 0 2px, #c9a77f 2px 31px); }
.tile-wall { position: absolute; inset: 0 0 40%; background-color: #e7ded0; background-image: linear-gradient(#d1c5b5 1px, transparent 1px), linear-gradient(90deg, #d1c5b5 1px, transparent 1px); background-size: 3.3rem 3.3rem; }
.mirror { position: absolute; z-index: 2; top: 13%; left: 18%; width: 46%; aspect-ratio: .85; border: 7px solid #3b4039; border-radius: 50% 50% 47% 47%; background: linear-gradient(135deg, #aebebb, #e5e3db); box-shadow: 8px 9px 0 rgba(84, 72, 57, .15); }
.cabinet { position: absolute; z-index: 2; right: 10%; bottom: 28%; width: 70%; height: 21%; background: #7f6a4b; box-shadow: 0 10px 15px rgba(56, 44, 31, .22); }
.cabinet i { position: absolute; top: 0; bottom: 0; width: 1px; background: #5f4d35; }
.cabinet i:first-child { left: 33%; }
.cabinet i:last-child { left: 66%; }
.basin { position: absolute; z-index: 3; right: 22%; bottom: 48%; width: 45%; height: 8%; border-radius: 0 0 50% 50%; background: #f8f2e8; }
.plant { position: absolute; z-index: 4; right: 7%; bottom: 48%; width: 16%; height: 22%; }
.plant::after { position: absolute; right: 13%; bottom: 0; width: 60%; height: 27%; background: #9c6346; content: ""; clip-path: polygon(5% 0, 95% 0, 80% 100%, 20% 100%); }
.plant i { position: absolute; bottom: 20%; width: 40%; height: 62%; border-radius: 100% 0 100% 0; background: var(--olive); transform-origin: bottom center; }
.plant i:nth-child(1) { left: 30%; transform: rotate(-34deg); }
.plant i:nth-child(2) { left: 42%; height: 75%; }
.plant i:nth-child(3) { right: 4%; transform: rotate(36deg) scale(.85); }
.plan-stamp { position: absolute; z-index: 8; top: 0; right: 0; display: flex; align-items: center; gap: .6rem; padding: .55rem .7rem; background: var(--clay); color: white; }
.plan-stamp b { font-size: 1.3rem; }
.plan-stamp span { font-size: .5rem; line-height: 1.25; letter-spacing: .12em; }
.visual-caption { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-between; padding: .65rem 1rem; border: 1px solid #bdb2a3; background: var(--paper); font-size: .65rem; text-transform: uppercase; letter-spacing: .09em; }

.trust-strip { padding-block: 2rem; background: var(--ink); }
.trust-grid { display: grid; }
.trust-grid article { position: relative; padding: 1.4rem 0; border-bottom: 1px solid #484a43; }
.trust-grid article:last-child { border-bottom: 0; }
.trust-grid span { color: #d39070; font-size: .65rem; font-weight: 850; letter-spacing: .1em; }
.trust-grid h3 { margin: .55rem 0 .45rem; color: white; font-size: .95rem; }
.trust-grid p { margin: 0; color: #b9bab4; font-size: .78rem; line-height: 1.55; }

.problem-section { background: var(--card); }
.problem-grid { display: grid; gap: 2.5rem; }
.reassurance { padding: 1rem 1.1rem; border-left: 3px solid var(--clay); background: #f6ede5; color: var(--ink); font-size: .9rem !important; font-weight: 650; }
.pain-grid { display: grid; gap: .75rem; }
.pain-grid article { min-height: 8rem; display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border: 1px solid var(--line); background: var(--paper); transition: border-color .2s, transform .2s; }
.pain-grid article:hover { border-color: var(--clay); transform: translateY(-2px); }
.pain-grid span { flex: 0 0 2.6rem; width: 2.6rem; height: 2.6rem; display: grid; place-items: center; border: 1px solid #c4b6a4; color: var(--clay-dark); font-size: 1.25rem; }
.pain-grid h3 { margin: 0; font-size: 1rem; }

.services-section { position: relative; }
.heading-row { display: grid; gap: 1rem; margin-bottom: 2.8rem; }
.services-grid { display: grid; gap: .9rem; }
.service-card { position: relative; min-height: 21rem; display: flex; flex-direction: column; padding: 1.4rem; overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.service-card::after { position: absolute; right: -2rem; bottom: -2rem; width: 6rem; height: 6rem; border: 1px solid var(--line); transform: rotate(45deg); content: ""; }
.service-card.featured { background: var(--clay); color: white; }
.service-card.featured p { color: #f4dacf; }
.service-card.featured::after { border-color: rgba(255,255,255,.24); }
.service-number { color: #9f9588; font-size: .65rem; font-weight: 850; letter-spacing: .1em; }
.featured .service-number { color: #f0c7b4; }
.service-symbol { position: relative; width: 5.5rem; height: 5.5rem; margin: 2rem 0 2.4rem; color: var(--clay); }
.featured .service-symbol { color: white; }
.service-card h3 { max-width: 16rem; font-size: 1.32rem; }
.service-card p { margin-bottom: 0; font-size: .88rem; }
.service-card a { margin-top: auto; padding-top: 1rem; color: white; font-size: .78rem; font-weight: 800; text-decoration: none; }
.house-symbol { border: 2px solid currentColor; border-top: 0; margin-top: 2.9rem; height: 4.6rem; }
.house-symbol::before { position: absolute; top: -2.5rem; left: .5rem; width: 3.7rem; height: 3.7rem; border-top: 2px solid currentColor; border-left: 2px solid currentColor; content: ""; transform: rotate(45deg); }
.house-symbol i:first-child { position: absolute; bottom: 0; left: 1rem; width: 1.45rem; height: 2.5rem; border: 2px solid currentColor; border-bottom: 0; }
.house-symbol i:nth-child(2) { position: absolute; top: 1rem; right: 1rem; width: 1.3rem; height: 1.3rem; border: 2px solid currentColor; }
.tile-symbol { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; }
.tile-symbol i { border: 2px solid currentColor; }
.kitchen-symbol { border-bottom: 2px solid currentColor; }
.kitchen-symbol i { position: absolute; bottom: 0; width: 30%; border: 2px solid currentColor; border-bottom: 0; }
.kitchen-symbol i:nth-child(1) { left: 0; height: 65%; }
.kitchen-symbol i:nth-child(2) { left: 35%; height: 85%; }
.kitchen-symbol i:nth-child(3) { right: 0; height: 50%; }
.floor-symbol { transform: skewY(-18deg); }
.floor-symbol i { position: absolute; inset: 0; border: 2px solid currentColor; }
.floor-symbol i:nth-child(2) { transform: translate(1rem, 1rem); }
.floor-symbol i:nth-child(3) { transform: translate(2rem, 2rem); }
.paint-symbol i:first-child { position: absolute; top: 0; left: 0; width: 4.2rem; height: 2.4rem; border: 2px solid currentColor; }
.paint-symbol i:first-child::after { position: absolute; right: -1.2rem; bottom: .5rem; width: 1.2rem; height: 2px; background: currentColor; content: ""; }
.paint-symbol i:last-child { position: absolute; top: 2.3rem; right: 0; width: 2px; height: 3rem; background: currentColor; }
.wall-symbol { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; }
.wall-symbol i { border: 2px solid currentColor; }
.wall-symbol i:last-child { grid-column: 1 / -1; }

.transformation-section { background: var(--ink); color: white; }
.transformation-intro { display: grid; gap: 1rem; margin-bottom: 2.5rem; }
.transformation-intro h2 { color: white; }
.transformation-intro > p { color: #bbbcb5; }
.comparison-stage { position: relative; min-height: 23rem; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid #686960; }
.compare-half { position: relative; min-width: 0; overflow: hidden; }
.compare-half > span { position: absolute; z-index: 6; top: 1rem; left: 1rem; padding: .35rem .6rem; background: rgba(37,39,34,.82); color: white; font-size: .62rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.compare-old { background: linear-gradient(#9f907b 0 72%, #736758 72%); }
.old-window { position: absolute; top: 19%; left: 16%; width: 40%; height: 35%; border: .6rem solid #776a5b; background: #b0b7b3; }
.old-window::after { position: absolute; inset: 48% -5% auto; height: 3px; background: #776a5b; content: ""; }
.old-bath { position: absolute; right: -10%; bottom: 14%; width: 85%; height: 25%; border: 5px solid #b7aa95; border-radius: 0 0 45% 32%; background: #c3b7a5; }
.compare-old > i { position: absolute; width: 3rem; height: 2px; background: rgba(67,58,48,.5); transform: rotate(-30deg); }
.compare-old > i:nth-last-child(2) { top: 35%; right: 10%; }
.compare-old > i:last-child { top: 62%; left: 18%; transform: rotate(26deg); }
.compare-new { background: linear-gradient(#eee4d5 0 72%, #b69169 72%); }
.new-tiles { position: absolute; inset: 0 0 28%; background-image: linear-gradient(#d1c5b4 1px, transparent 1px), linear-gradient(90deg, #d1c5b4 1px, transparent 1px); background-size: 3rem 3rem; }
.new-mirror { position: absolute; z-index: 2; top: 15%; left: 14%; width: 42%; aspect-ratio: 1; border: 6px solid #3a3e38; border-radius: 50%; background: linear-gradient(135deg, #b3c2be, #f0ece3); }
.new-console { position: absolute; z-index: 3; right: 9%; bottom: 24%; width: 72%; height: 22%; border-top: 8px solid #f6efe5; background: #756146; }
.new-light { position: absolute; z-index: 4; top: 11%; right: 12%; width: 1.5rem; height: 1.5rem; border-radius: 50%; background: #fff2c3; box-shadow: 0 0 2rem #fff1bc; }
.compare-divider { position: absolute; z-index: 8; top: 0; bottom: 0; left: 50%; width: 2px; background: white; transform: translateX(-1px); }
.compare-divider b { position: absolute; top: 50%; left: 50%; width: 3rem; height: 3rem; display: grid; place-items: center; border: 2px solid white; border-radius: 50%; background: var(--clay); color: white; transform: translate(-50%, -50%); }
.comparison-cards { display: grid; }
.comparison-cards article { display: flex; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid #4a4c45; }
.comparison-cards article > span { color: #d49476; font-size: .65rem; font-weight: 850; }
.comparison-cards h3 { color: white; font-size: 1rem; }
.comparison-cards p { margin: 0; color: #aaa; font-size: .8rem; }

.process-section { background: var(--paper-deep); }
.process-list { display: grid; margin: 0; padding: 0; border-top: 1px solid #c9beaf; list-style: none; counter-reset: steps; }
.process-list li { position: relative; display: grid; grid-template-columns: 2rem 3rem 1fr; gap: .7rem; padding: 1.5rem 0; border-bottom: 1px solid #c9beaf; }
.step-number { padding-top: .75rem; color: var(--clay-dark); font-size: .62rem; font-weight: 900; }
.step-icon { width: 2.7rem; height: 2.7rem; display: grid; place-items: center; border: 1px solid #ab9e8b; color: var(--clay-dark); font-size: 1.15rem; }
.process-list h3 { margin-bottom: .4rem; padding-top: .6rem; }
.process-list p { margin: 0; font-size: .87rem; }

.values-grid { display: grid; gap: 3.5rem; align-items: center; }
.values-visual { position: relative; min-height: 27rem; background: #c9b293; }
.values-visual::before { position: absolute; inset: 1.2rem; border: 1px solid rgba(53,47,38,.4); content: ""; }
.material-board { position: absolute; inset: 3.3rem 2rem; padding: 1.5rem; background: #eee7da; box-shadow: var(--shadow); transform: rotate(-2deg); }
.sample { position: absolute; display: block; border: 8px solid #eee7da; box-shadow: 0 7px 18px rgba(45,39,31,.2); }
.sample.wood { top: 12%; left: 8%; width: 42%; height: 35%; background: repeating-linear-gradient(105deg, #936b46 0 3px, #bd9369 3px 22px); transform: rotate(-5deg); }
.sample.stone { top: 20%; right: 8%; width: 38%; height: 40%; background-color: #c8c0b3; background-image: linear-gradient(115deg, transparent 40%, rgba(77,72,65,.25) 42%, transparent 44%); transform: rotate(6deg); }
.sample.clay { bottom: 10%; left: 22%; width: 43%; height: 32%; background: var(--clay); transform: rotate(3deg); }
.ruler { position: absolute; right: 2%; bottom: 5%; width: 65%; height: 2.2rem; background: #d9b659; transform: rotate(-22deg); }
.ruler i { position: absolute; top: 0; width: 1px; height: 40%; background: #6f581d; }
.ruler i:nth-child(1) { left: 10%; }.ruler i:nth-child(2) { left: 30%; }.ruler i:nth-child(3) { left: 50%; }.ruler i:nth-child(4) { left: 70%; }.ruler i:nth-child(5) { left: 90%; }
.material-board b { position: absolute; z-index: 5; right: 7%; bottom: 8%; padding: .45rem; background: var(--ink); color: white; font-size: .55rem; letter-spacing: .14em; transform: rotate(4deg); }
.value-list { border-top: 1px solid var(--line); }
.value-list article { display: grid; grid-template-columns: 2rem 1fr; gap: .8rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.value-list article > span { color: var(--clay-dark); font-size: .62rem; font-weight: 900; }
.value-list h3 { font-size: 1rem; }
.value-list p { margin: 0; font-size: .84rem; }

.projects-section { background: var(--card); }
.projects-grid { display: grid; gap: 1.1rem; }
.project-card { border: 1px solid var(--line); background: var(--paper); }
.project-visual { position: relative; min-height: 16rem; overflow: hidden; background: #d8c9b5; }
.project-visual > span { position: absolute; z-index: 7; right: 0; bottom: 0; padding: .45rem .7rem; background: var(--ink); color: white; font-size: .55rem; font-weight: 850; letter-spacing: .12em; }
.bath-preview { background: linear-gradient(#e9e0d3 0 76%, #a48261 76%); }
.mini-tiles { position: absolute; inset: 0 0 24%; background-image: linear-gradient(#cfc2b1 1px, transparent 1px), linear-gradient(90deg, #cfc2b1 1px, transparent 1px); background-size: 2.8rem 2.8rem; }
.mini-mirror { position: absolute; top: 12%; left: 15%; width: 38%; aspect-ratio: 1; border: 5px solid #333832; border-radius: 50%; background: #afc0bc; }
.mini-sink { position: absolute; right: 9%; bottom: 20%; width: 60%; height: 25%; border-top: 7px solid #f8f0e5; background: #77634a; }
.flat-preview { background: linear-gradient(#dfd4c4 0 72%, #a27e5d 72%); }
.mini-window { position: absolute; top: 12%; left: 12%; width: 40%; height: 40%; border: 7px solid #eee6da; background: linear-gradient(#aabcb8 60%, #929b82 60%); }
.mini-sofa { position: absolute; right: 6%; bottom: 18%; width: 65%; height: 31%; border-radius: 1.5rem 1.5rem .4rem .4rem; background: #74745f; }
.mini-sofa::before, .mini-sofa::after { position: absolute; bottom: -1rem; width: 4px; height: 1rem; background: #3c382f; content: ""; }
.mini-sofa::before { left: 16%; }.mini-sofa::after { right: 16%; }
.mini-table { position: absolute; z-index: 3; bottom: 12%; left: 6%; width: 35%; height: 7%; background: #a56d49; box-shadow: 0 1.2rem 0 -8px #5b4937; }
.kitchen-preview { background: linear-gradient(#e9dfd0 0 74%, #a7815f 74%); }
.mini-cabinets { position: absolute; top: 11%; left: 8%; width: 68%; height: 33%; background: repeating-linear-gradient(90deg, #7f806c 0 calc(33% - 2px), #5d5f52 calc(33% - 2px) 33%); }
.mini-counter { position: absolute; left: 8%; bottom: 24%; width: 76%; height: 32%; border-top: 7px solid #d2c6b6; background: repeating-linear-gradient(90deg, #806b50 0 calc(33% - 1px), #5a4b3a calc(33% - 1px) 33%); }
.mini-stool { position: absolute; z-index: 2; right: 5%; bottom: 10%; width: 23%; height: 27%; border: 5px solid #463f34; border-top-width: 9px; }
.project-copy { padding: 1.4rem; }
.project-copy h3 { font-size: 1.24rem; }
.project-copy p { font-size: .85rem; }
.project-copy ul { display: flex; flex-wrap: wrap; gap: .35rem; padding: 0; list-style: none; }
.project-copy li { padding: .32rem .5rem; border: 1px solid #cfc5b6; color: #69645a; font-size: .65rem; }

.price-section { background: var(--clay-dark); color: white; }
.price-grid { display: grid; gap: 3rem; }
.price-copy h2, .price-factors h3 { color: white; }
.price-copy > p:not(.eyebrow) { color: #e6c8bb; }
.price-trust { display: flex; gap: .8rem; margin: 1.5rem 0 2rem; padding: 1rem; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.price-trust span { flex: 0 0 1.5rem; width: 1.5rem; height: 1.5rem; display: grid; place-items: center; border: 1px solid #e6b6a2; border-radius: 50%; font-size: .7rem; font-weight: 850; }
.price-trust p { margin: 0; color: #ead4ca; font-size: .78rem; }
.price-factors { padding: 1.5rem; background: #723521; box-shadow: 12px 12px 0 rgba(53, 22, 13, .25); }
.price-factors h3 { padding-bottom: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 1.1rem; }
.price-factors ul { margin: 0; padding: 0; list-style: none; }
.price-factors li { display: flex; align-items: center; gap: .8rem; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.13); color: #f0ded6; font-size: .83rem; }
.price-factors li:last-child { border-bottom: 0; }
.price-factors li span { color: #dc9a7e; font-size: .58rem; font-weight: 900; }

.area-grid { display: grid; gap: 2rem; align-items: center; }
.area-map { position: relative; min-height: 13rem; background: var(--paper-deep); clip-path: polygon(5% 35%, 18% 26%, 27% 36%, 42% 18%, 57% 25%, 68% 15%, 82% 27%, 94% 24%, 100% 52%, 91% 71%, 77% 68%, 63% 83%, 47% 71%, 30% 79%, 18% 65%, 3% 69%, 0 48%); }
.area-map span { position: absolute; top: 43%; left: 45%; color: var(--clay-dark); font-size: 1.4rem; font-weight: 900; letter-spacing: .15em; }
.area-map i { position: absolute; width: .8rem; height: .8rem; border: 3px solid var(--clay); border-radius: 50%; background: var(--paper); box-shadow: 0 0 0 5px rgba(184,95,61,.16); }
.area-map i:nth-of-type(1) { top: 55%; left: 16%; }.area-map i:nth-of-type(2) { top: 40%; left: 33%; }.area-map i:nth-of-type(3) { top: 60%; left: 53%; }.area-map i:nth-of-type(4) { top: 39%; right: 17%; }
.area-chips { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; list-style: none; }
.area-chips li { padding: .62rem .8rem; border: 1px solid #cbbfae; background: var(--card); font-size: .76rem; font-weight: 750; }

.faq-section { background: var(--card); }
.faq-layout { display: grid; gap: 2.5rem; }
.faq-intro .text-link { margin-top: 1rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span,
.faq-list summary span::after { position: absolute; top: 50%; right: .5rem; width: 1rem; height: 2px; background: var(--clay); content: ""; transition: transform .2s; }
.faq-list summary span::after { top: 0; right: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details div { padding: 0 2rem 1.25rem 0; }
.faq-list details p { margin: 0; font-size: .87rem; }

.contact-section { padding-block: 1rem 0; background: var(--card); }
.contact-card { display: grid; padding: clamp(1.4rem, 5vw, 4rem); background: var(--ink); color: white; }
.contact-copy { padding: 1rem 0 2.5rem; }
.contact-copy h2 { color: white; }
.contact-copy > p:not(.eyebrow) { color: #bfc0ba; }
.contact-options { display: grid; gap: .65rem; margin: 2rem 0; }
.contact-options a { display: flex; align-items: center; gap: .75rem; padding: .8rem 0; border-bottom: 1px solid #4c4e47; color: white; font-size: .78rem; font-weight: 750; text-decoration: none; overflow-wrap: anywhere; }
.contact-options a > span:first-child { flex: 0 0 2rem; width: 2rem; height: 2rem; display: grid; place-items: center; border: 1px solid #66685f; color: #e4aa8e; }
.contact-options small { display: block; color: #92948d; font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; }
.back-link { color: #e5af96; font-size: .78rem; font-weight: 750; text-decoration: none; }
.contact-form { padding: 1.25rem; background: var(--paper); color: var(--ink); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.3rem; }
.form-heading h3 { margin: 0; font-size: 1.3rem; }
.form-heading span { padding: .3rem .45rem; background: #eadbcf; color: var(--clay-dark); font-size: .55rem; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.contact-form label { display: grid; gap: .4rem; margin-bottom: .9rem; font-size: .72rem; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid #cfc4b5; border-radius: 0; background: white; color: var(--ink); }
.contact-form input { min-height: 3rem; padding: .7rem; }
.contact-form textarea { padding: .7rem; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #969085; }
.contact-form .button { width: 100%; border: 0; }
.form-note { margin: .65rem 0 0; color: #777166; font-size: .64rem; text-align: center; }

.site-footer { padding-top: 5rem; background: #1b1d19; color: white; }
.brand-light { color: white; }
.brand-light .brand-mark { border-color: #76786f; }
.footer-main { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { margin: 1rem 0 0; color: #91938c; font-size: .8rem; }
.footer-main nav, .footer-contact { display: flex; flex-direction: column; gap: .55rem; }
.footer-main nav strong, .footer-contact strong { margin-bottom: .4rem; color: #d6a38a; font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-main nav a, .footer-contact a { color: #b9bab5; font-size: .78rem; text-decoration: none; }
.footer-main nav a:hover, .footer-contact a:hover { color: white; }
.footer-bottom { display: flex; flex-direction: column; gap: .35rem; padding-block: 1.2rem; border-top: 1px solid #3d3f39; }
.footer-bottom p { margin: 0; color: #777a72; font-size: .65rem; }

@media (min-width: 620px) {
  .pain-grid, .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(odd) { padding-right: 1.4rem; border-right: 1px solid #484a43; }
  .trust-grid article:nth-child(even) { padding-left: 1.4rem; }
  .trust-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .comparison-cards { grid-template-columns: repeat(3, 1fr); }
  .comparison-cards article { padding: 1.5rem; border-right: 1px solid #4a4c45; border-bottom: 0; }
  .comparison-cards article:last-child { border-right: 0; }
  .process-list li { grid-template-columns: 2.5rem 4rem 1fr; gap: 1rem; }
  .step-icon { width: 3.4rem; height: 3.4rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
  .footer-main { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 800px) {
  .heading-row { grid-template-columns: 1.4fr .8fr; align-items: end; }
  .heading-row > p { justify-self: end; }
  .transformation-intro { grid-template-columns: 1.2fr .8fr; align-items: end; }
  .comparison-stage { min-height: 34rem; }
  .price-grid, .faq-layout { grid-template-columns: .9fr 1.1fr; }
  .price-copy { padding-right: 2rem; }
  .area-grid { grid-template-columns: .85fr 1.15fr; }
  .area-grid .area-chips { grid-column: 1 / -1; justify-content: center; }
  .contact-card { grid-template-columns: 1fr .9fr; gap: 4rem; }
  .contact-copy { align-self: center; padding: 1rem 0; }
  .contact-form { padding: 2rem; }
}

@media (min-width: 960px) {
  .header-inner { min-height: 5.1rem; }
  .nav-toggle { display: none; }
  .site-nav { position: static; max-height: none; display: flex; flex-direction: row; align-items: center; gap: .15rem; overflow: visible; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .site-nav > a:not(.button) { padding: .65rem .55rem; font-size: .72rem; }
  .site-nav .button { margin-left: .45rem; }
  .hero-grid { grid-template-columns: 1.03fr .97fr; gap: 4.5rem; }
  .hero-copy { padding-block: 1rem; }
  .hero-visual { min-height: 36rem; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-grid article { min-height: 9.7rem; padding: .5rem 1.25rem !important; border-right: 1px solid #484a43 !important; border-bottom: 0; }
  .trust-grid article:first-child { padding-left: 0 !important; }
  .trust-grid article:last-child { padding-right: 0 !important; border-right: 0 !important; }
  .problem-grid { grid-template-columns: .8fr 1.2fr; gap: 5rem; }
  .sticky-copy { position: sticky; top: 7.5rem; align-self: start; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card { min-height: 23rem; padding: 1.6rem; }
  .process-list { grid-template-columns: repeat(5, 1fr); border-left: 1px solid #c9beaf; }
  .process-list li { min-height: 23rem; display: flex; flex-direction: column; padding: 1.5rem; border-right: 1px solid #c9beaf; }
  .process-list li:hover { background: rgba(255,255,255,.3); }
  .step-number { padding-top: 0; }
  .step-icon { margin: 2rem 0 2.6rem; }
  .process-list h3 { padding-top: 0; }
  .values-grid { grid-template-columns: .9fr 1.1fr; gap: 6rem; }
  .values-visual { min-height: 40rem; }
  .projects-grid { grid-template-columns: repeat(3, 1fr); }
  .project-card:nth-child(2) { transform: translateY(2rem); }
  .price-grid { gap: 6rem; }
  .price-factors { padding: 2.2rem; }
}

@media (min-width: 1180px) {
  .container { width: min(calc(100% - 4rem), var(--container)); }
  .site-nav > a:not(.button) { padding-inline: .75rem; }
  .brand strong { font-size: 1.02rem; }
}

@media (max-width: 420px) {
  h1 { font-size: 2.35rem; }
  .brand strong { font-size: .82rem; }
  .brand small { font-size: .51rem; }
  .brand-mark { width: 2.3rem; height: 2.3rem; }
  .brand-mark i:nth-child(3) { left: 1.42rem; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 25rem; }
  .plan-stamp { right: .15rem; }
  .visual-caption { font-size: .55rem; }
  .contact-form { padding: 1rem; }
}

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