/* MH Plastering demo — tokens come from the trade: drying skim, wet plaster, trowel steel, Blue Grit primer */
@font-face { font-family: 'Archivo'; src: url('../fonts/Archivo-var.woff2') format('woff2'); font-weight: 100 900; font-stretch: 62% 125%; font-display: swap; }
@font-face { font-family: 'Atkinson Hyperlegible Next'; src: url('../fonts/AtkinsonNext-var.woff2') format('woff2'); font-weight: 200 800; font-display: swap; }
@font-face { font-family: 'Martian Mono'; src: url('../fonts/MartianMono-var.woff2') format('woff2'); font-weight: 100 800; font-stretch: 75% 112.5%; font-display: swap; }

:root {
  --dry: #EFDFD5;        /* skim once it has dried */
  --dry-2: #E5CEC0;      /* shaded dry plaster, cards */
  --paper: #F8EFE9;      /* inputs, lightest */
  --skim: #D7A189;       /* fresh skim, still damp */
  --wet: #9A5B45;        /* wet patches */
  --wet-deep: #6E3E2F;
  --steel: #1F262A;      /* trowel steel, main ink */
  --steel-2: #3A454B;
  --mute: #5C6468;
  --grit: #2F63A0;       /* Blue Grit primer, actions + links */
  --grit-deep: #234C7C;
  --grit-light: #9BBFE6;
  --wa: #1E9E50;         /* WhatsApp buttons only */
  --line: rgba(31, 38, 42, .14);

  --f-display: 'Archivo', 'Arial Black', system-ui, sans-serif;
  --f-body: 'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', 'Segoe UI', system-ui, sans-serif;
  --f-mono: 'Martian Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.2, .7, .1, 1);
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--dry); color: var(--steel);
  font-family: var(--f-body); font-size: 1.0625rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
[hidden] { display: none !important; }
a { color: var(--grit); text-underline-offset: .18em; text-decoration-thickness: 1.5px; }
a:hover { color: var(--grit-deep); }
:focus-visible { outline: 3px solid var(--grit); outline-offset: 3px; border-radius: 2px; }
.on-steel :focus-visible, .band--steel :focus-visible, .foot :focus-visible { outline-color: var(--grit-light); }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--skim); color: var(--steel); }

.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--steel); color: var(--dry); padding: 10px 16px; border-radius: var(--radius); text-decoration: none; }
.skip:focus { top: 12px; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Type ---------- */
.display, h1, h2 { font-family: var(--f-display); font-stretch: 125%; font-weight: 800; line-height: .95; letter-spacing: -.02em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 6.2vw, 5.9rem); }
h2 { font-size: clamp(1.85rem, 3.7vw, 3.3rem); }
h3 { font-family: var(--f-display); font-stretch: 112%; font-weight: 750; font-size: 1.28rem; line-height: 1.15; margin: 0; letter-spacing: -.005em; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.5; max-width: 38ch; color: var(--steel-2); }
.label { font-family: var(--f-mono); font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
.mono { font-family: var(--f-mono); font-stretch: 90%; }
.est-tag { display: inline-block; font-family: var(--f-mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; border: 1px solid currentColor; padding: 2px 6px; border-radius: 2px; vertical-align: middle; }

/* ---------- Buttons ---------- */
.btn { --bg: var(--grit); --fg: #fff; display: inline-flex; align-items: center; justify-content: center; gap: .55em; min-height: 50px; padding: 12px 22px; border-radius: var(--radius); border: 0; background: var(--bg); color: var(--fg); font-family: var(--f-display); font-stretch: 110%; font-weight: 700; font-size: 1rem; letter-spacing: .005em; text-decoration: none; cursor: pointer; transition: transform .2s var(--ease), background-color .2s, box-shadow .2s; box-shadow: 0 1px 0 rgba(0,0,0,.18), inset 0 -2px 0 rgba(0,0,0,.14); }
.btn:hover { color: var(--fg); background: var(--grit-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 1.2em; height: 1.2em; flex: none; }
.btn--wa { --bg: var(--wa); }
.btn--wa:hover { background: #17833f; }
.btn--ghost { --bg: transparent; --fg: var(--steel); box-shadow: inset 0 0 0 1.5px var(--steel); }
.btn--ghost:hover { background: var(--steel); color: var(--dry); }
.on-steel .btn--ghost, .band--steel .btn--ghost, .panel--steel .btn--ghost, .foot .btn--ghost { --fg: var(--dry); box-shadow: inset 0 0 0 1.5px var(--dry); }
.on-steel .btn--ghost:hover, .band--steel .btn--ghost:hover, .panel--steel .btn--ghost:hover, .foot .btn--ghost:hover { background: var(--dry); color: var(--steel); }
.panel--steel :focus-visible { outline-color: var(--grit-light); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Header ---------- */
.top { position: sticky; top: 0; z-index: 50; background: rgba(239, 223, 213, .9); backdrop-filter: blur(10px) saturate(1.2); -webkit-backdrop-filter: blur(10px) saturate(1.2); border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--steel); margin-right: auto; }
.brand-mark { font-family: var(--f-display); font-stretch: 125%; font-weight: 900; font-size: 1.55rem; letter-spacing: -.04em; line-height: 1; padding: 7px 8px 6px; background: var(--steel); color: var(--dry); border-radius: 2px; }
.brand-mark b { color: var(--grit-light); font-weight: 900; }
.brand-word { font-family: var(--f-display); font-stretch: 118%; font-weight: 750; font-size: 1.05rem; line-height: 1.05; }
.brand-word small { display: block; font-family: var(--f-mono); font-stretch: 90%; font-weight: 500; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: var(--steel); text-decoration: none; font-weight: 600; font-size: .96rem; padding: 8px 10px; border-radius: 2px; position: relative; }
.nav a::after { content: ''; position: absolute; left: 10px; right: 10px; bottom: 3px; height: 2px; background: var(--grit); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--grit-deep); }
.top .btn { min-height: 44px; padding: 10px 16px; font-size: .92rem; }
.menu-btn { display: none; min-height: 44px; padding: 0 14px; background: transparent; border: 1.5px solid var(--steel); border-radius: var(--radius); font-weight: 700; cursor: pointer; align-items: center; gap: 8px; }
.menu-btn span { display: block; width: 18px; height: 2px; background: currentColor; box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor; }

@media (max-width: 1060px) {
  .menu-btn { display: inline-flex; }
  .top .btn--wa { display: none; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--dry); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px; box-shadow: 0 18px 30px -20px rgba(31,38,42,.4); }
  .nav.open { display: flex; }
  .nav a { font-size: 1.15rem; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
}

/* Mobile action bar */
.actionbar { display: none; }
@media (max-width: 720px) {
  .foot { padding-bottom: calc(104px + env(safe-area-inset-bottom)); }
  .actionbar { display: grid; grid-template-columns: 1fr 1.2fr 1.2fr; gap: 8px; position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: var(--steel); box-shadow: 0 -10px 30px rgba(0,0,0,.2); }
  .actionbar a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 6px; border-radius: var(--radius); font-family: var(--f-display); font-stretch: 105%; font-weight: 700; font-size: .92rem; text-decoration: none; color: #fff; background: var(--steel-2); }
  .actionbar a.wa { background: var(--wa); }
  .actionbar a.bk { background: var(--grit); }
  .actionbar svg { width: 18px; height: 18px; }
}

/* ---------- Sections ---------- */
.band { padding-block: clamp(64px, 8vw, 116px); }
.band--tight { padding-block: clamp(40px, 5vw, 64px); }
.band--steel { background: var(--steel); color: var(--dry); }
.band--steel .label { color: #A9B3B8; }
.band--steel .lede { color: #C9CFD2; }
.band--shade { background: var(--dry-2); }
.head { display: grid; gap: 14px; margin-bottom: clamp(32px, 4vw, 56px); max-width: 60ch; }
.head--split { max-width: none; grid-template-columns: 1fr auto; align-items: end; gap: 24px; }
@media (max-width: 720px) { .head--split { grid-template-columns: 1fr; } }

/* Page intro (inner pages) */
.intro { position: relative; overflow: hidden; padding-block: clamp(56px, 7vw, 104px) clamp(40px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.intro .wrap { position: relative; z-index: 2; display: grid; gap: 18px; }
.intro h1 { font-size: clamp(2.3rem, 5.4vw, 4.8rem); max-width: 16ch; }
.intro .lede { max-width: 52ch; }
.crumb { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); }
.crumb a { color: inherit; }

/* ---------- Plaster surface (signature) ---------- */
.wall { position: relative; isolation: isolate; background: var(--dry); overflow: hidden; }
.wall > .wall-layer { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.wall-grain { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .42 0 0 0 0 .25 0 0 0 0 .18 0 0 0 .22 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); opacity: .55; mix-blend-mode: multiply; }
.wall-cloud { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='700'%3E%3Cfilter id='c'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.006 .009' numOctaves='4' seed='7'/%3E%3CfeColorMatrix values='0 0 0 0 .55 0 0 0 0 .33 0 0 0 0 .25 0 0 0 1.1 -.42'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23c)'/%3E%3C/svg%3E"); background-size: cover; opacity: .38; mix-blend-mode: multiply; }
.wall-wet { background: radial-gradient(120% 90% at 30% 40%, var(--skim), #CB8E75 70%); }
.wall-blot { position: absolute; border-radius: 50%; background: radial-gradient(closest-side, rgba(126, 70, 52, .85), rgba(154, 91, 69, .55) 55%, rgba(154, 91, 69, 0)); filter: blur(9px); pointer-events: none; z-index: -1; }
.wall-sweeps { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.wall-sweeps path { fill: none; stroke: rgba(255, 246, 240, .5); stroke-width: 1.4; stroke-linecap: round; }
.wall-sweeps path.d { stroke: rgba(110, 62, 47, .16); stroke-width: 2.2; }

/* drying sequence */
.js .wall.drying .wall-wet { animation: dry-wash 4.6s .5s var(--ease) forwards; }
.js .wall.drying .wall-blot { animation: dry-blot var(--d, 5s) var(--w, 1s) ease-in forwards; }
.js .wall.drying .wall-sweeps path { stroke-dasharray: 1600; stroke-dashoffset: 1600; animation: sweep 1.5s var(--s, 0s) var(--ease) forwards; }
.wall.dried .wall-wet, .wall.dried .wall-blot, .no-js .wall-wet, .no-js .wall-blot { opacity: 0; }
@keyframes dry-wash { to { opacity: 0; } }
@keyframes dry-blot { 0% { opacity: 1; transform: scale(1); } 100% { opacity: 0; transform: scale(.82); } }
@keyframes sweep { to { stroke-dashoffset: 0; } }

/* ---------- Hero ---------- */
.hero { min-height: min(calc(100svh - 72px), 900px); display: flex; align-items: stretch; }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr); gap: clamp(28px, 4vw, 64px); align-items: center; padding-block: clamp(40px, 6vw, 80px); width: 100%; }
.hero h1 { font-size: clamp(2.35rem, 5.3vw, 5.1rem); line-height: .92; }
.hero h1 .ln { display: block; white-space: nowrap; }
.hero h1 .ln > span { display: inline-block; }
.js .wall.drying .hero-h1 .ln > span { clip-path: inset(-10% 100% -10% 0); animation: trowel-in .9s var(--ease) forwards; }
.js .wall.drying .hero-h1 .ln:nth-child(2) > span { animation-delay: .25s; }
.js .wall.drying .hero-h1 .ln:nth-child(3) > span { animation-delay: .5s; }
@keyframes trowel-in { to { clip-path: inset(-10% 0 -10% 0); } }
.hero h1 em { font-style: normal; color: var(--wet-deep); }
.hero .lede { margin-top: 22px; max-width: 34ch; }
.hero .btn-row { margin-top: 30px; }
.status { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-stretch: 92%; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--steel-2); background: rgba(248, 239, 233, .55); border: 1px solid var(--line); padding: 7px 12px 7px 10px; border-radius: 99px; margin-bottom: 26px; }
.status i { width: 10px; height: 10px; border-radius: 50%; background: var(--wet); box-shadow: 0 0 0 3px rgba(154, 91, 69, .2); transition: background-color 1.2s, box-shadow 1.2s; }
.status .s-dry { display: none; }
.wall.dried .status i { background: var(--grit); box-shadow: 0 0 0 3px rgba(47, 99, 160, .2); }
.wall.dried .status .s-wet { display: none; }
.wall.dried .status .s-dry { display: inline; }
.rating { display: flex; align-items: center; gap: 14px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); max-width: 460px; }
.rating strong { font-family: var(--f-display); font-stretch: 125%; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.stars { color: #C98A1B; letter-spacing: 2px; font-size: 1rem; }
.rating small { display: block; color: var(--mute); font-size: .88rem; line-height: 1.3; }

.hero-photo { position: relative; margin: 0; }
.hero-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(70, 35, 25, .55), 0 0 0 10px rgba(248, 239, 233, .6); }
.hero-photo figcaption { position: absolute; left: -18px; bottom: 26px; background: var(--steel); color: var(--dry); padding: 12px 14px; max-width: 250px; font-size: .86rem; line-height: 1.35; border-radius: var(--radius); box-shadow: 0 14px 30px -12px rgba(0,0,0,.4); }
.hero-photo figcaption .label { color: #A9B3B8; display: block; margin-bottom: 4px; }
@media (max-width: 880px) {
  .hero { min-height: 0; }
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-photo { max-width: 520px; }
  .hero-photo img { aspect-ratio: 4 / 3; }
  .hero-photo figcaption { left: 12px; bottom: 12px; }
}

/* ---------- Topic strip (Google review topics) ---------- */
.topics { display: flex; flex-wrap: wrap; gap: 10px; }
.topic { display: inline-flex; align-items: baseline; gap: 10px; padding: 10px 14px; border-radius: 99px; background: var(--paper); border: 1px solid var(--line); font-weight: 600; font-size: .98rem; }
.topic b { font-family: var(--f-mono); font-stretch: 90%; font-size: .78rem; font-weight: 600; color: var(--grit-deep); }
.topic--big { font-size: 1.1rem; background: var(--steel); color: var(--dry); border-color: var(--steel); }
.topic--big b { color: var(--grit-light); }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: clamp(16px, 2vw, 24px); }
.card { display: flex; flex-direction: column; background: var(--paper); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--steel); box-shadow: 0 1px 0 var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
a.card:hover { color: var(--steel); transform: translateY(-4px); box-shadow: 0 22px 40px -26px rgba(70, 35, 25, .55); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease); }
a.card:hover img { transform: scale(1.04); }
.card-media { overflow: hidden; }
.card-body { padding: 18px 20px 22px; display: grid; gap: 8px; }
.card-body p { margin: 0; color: var(--steel-2); font-size: .98rem; }
.card-body .label { color: var(--wet); }
.more { font-weight: 700; color: var(--grit); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.more::after { content: '→'; transition: transform .25s var(--ease); }
a.card:hover .more::after { transform: translateX(4px); }

/* ---------- Before / after (trowel slider) ---------- */
.ba { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--steel-2); aspect-ratio: 4 / 3; user-select: none; -webkit-user-select: none; touch-action: pan-y; --pos: 50%; }
.ba--tall { aspect-ratio: 3 / 4; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .ba-after { clip-path: inset(0 0 0 var(--pos)); }
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px; background: linear-gradient(#E9EEF1, #9AA6AC); box-shadow: 0 0 12px rgba(0,0,0,.35); pointer-events: none; }
.ba-trowel { position: absolute; top: 50%; left: var(--pos); width: 64px; height: 92px; margin: -46px 0 0 -32px; pointer-events: none; filter: drop-shadow(0 8px 14px rgba(0,0,0,.4)); transition: transform .2s var(--ease); }
.ba:hover .ba-trowel, .ba.dragging .ba-trowel { transform: scale(1.06); }
.ba input[type=range] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none; }
.ba input[type=range]:focus-visible + .ba-line { box-shadow: 0 0 0 3px var(--grit-light); }
.ba-tag { position: absolute; top: 14px; font-family: var(--f-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 8px; border-radius: 2px; background: rgba(31, 38, 42, .82); color: #fff; pointer-events: none; }
.ba-tag.b { left: 14px; }
.ba-tag.a { right: 14px; background: rgba(47, 99, 160, .92); }
.ba-caption { margin-top: 14px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .95rem; }
.ba-caption q { font-style: italic; }
.ba-hint { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: #A9B3B8; }

.show { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.show .ba { max-width: 500px; margin-left: auto; }
.show .ba-caption { max-width: 500px; margin-left: auto; }
@media (max-width: 880px) { .show { grid-template-columns: 1fr; } .show .ba, .show .ba-caption { margin-left: 0; } }

/* ---------- Reviews ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee 70s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }
.quote { flex: none; margin: 0; width: min(78vw, 380px); background: var(--paper); border-radius: var(--radius); padding: 22px 24px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 1px 0 var(--line); }
.quote blockquote { margin: 0; font-family: var(--f-display); font-stretch: 105%; font-weight: 600; font-size: 1.14rem; line-height: 1.3; }
.quote footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; font-size: .9rem; color: var(--mute); }
.quote footer b { color: var(--steel); }
.quote .stars { font-size: .85rem; }
.band--steel .quote { background: var(--steel-2); color: var(--dry); box-shadow: none; }
.band--steel .quote footer, .band--steel .quote footer b { color: #C9CFD2; }

.review-grid { columns: 3 300px; column-gap: 20px; }
.review-grid .quote { width: auto; break-inside: avoid; margin-bottom: 20px; }
.quote .ctx { font-size: .9rem; color: var(--steel-2); margin: 0; }
.quote .ctx::before { content: ''; display: inline-block; width: 18px; height: 2px; background: var(--skim); vertical-align: middle; margin-right: 8px; }

.bars { display: grid; gap: 12px; }
.bar { display: grid; grid-template-columns: 150px 1fr 34px; gap: 14px; align-items: center; font-weight: 600; }
.bar-track { height: 12px; border-radius: 99px; background: var(--dry-2); overflow: hidden; }
.bar-fill { height: 100%; width: var(--w); background: linear-gradient(90deg, var(--wet), var(--skim)); border-radius: 99px; transform-origin: left; }
.js .bar-fill { transform: scaleX(0); transition: transform 1.2s var(--ease); }
.js .in .bar-fill { transform: scaleX(1); }
.bar b { font-family: var(--f-mono); font-size: .8rem; text-align: right; }
@media (max-width: 480px) { .bar { grid-template-columns: 1fr 34px; } .bar-track { grid-column: 1 / -1; grid-row: 2; } }

.score { display: grid; gap: 6px; align-content: start; }
.score strong { font-family: var(--f-display); font-stretch: 125%; font-weight: 800; font-size: clamp(4.5rem, 10vw, 8rem); line-height: .85; letter-spacing: -.04em; }

/* ---------- Split / two-col helpers ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.panel { background: var(--paper); border-radius: var(--radius); padding: clamp(22px, 3vw, 36px); box-shadow: 0 1px 0 var(--line); }
.panel--steel { background: var(--steel); color: var(--dry); }
.panel--steel .label { color: #A9B3B8; }

/* ---------- Forms ---------- */
.field { display: grid; gap: 7px; }
.field > span, .fs legend { font-weight: 700; font-size: .95rem; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border-radius: var(--radius); border: 1.5px solid rgba(31, 38, 42, .3); background: var(--paper); font-size: 1rem; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--grit); box-shadow: 0 0 0 3px rgba(47, 99, 160, .25); }
.field small { color: var(--mute); font-size: .86rem; }
.fs { border: 0; padding: 0; margin: 0; min-width: 0; }
.fs legend { padding: 0; margin-bottom: 10px; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg label { position: relative; }
.seg input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.seg span { display: flex; align-items: center; justify-content: center; min-height: 46px; padding: 8px 16px; border-radius: var(--radius); border: 1.5px solid rgba(31, 38, 42, .28); background: var(--paper); font-weight: 600; font-size: .95rem; transition: background-color .2s, border-color .2s, color .2s; }
.seg input:checked + span { background: var(--steel); border-color: var(--steel); color: var(--dry); }
.seg input:focus-visible + span { outline: 3px solid var(--grit); outline-offset: 2px; }
.seg label:hover span { border-color: var(--steel); }
.choice { display: grid; gap: 10px; }
.choice label { position: relative; display: block; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice .c { display: grid; gap: 2px; padding: 14px 16px 14px 46px; border-radius: var(--radius); border: 1.5px solid rgba(31, 38, 42, .22); background: var(--paper); position: relative; transition: border-color .2s, background-color .2s; }
.choice .c::before { content: ''; position: absolute; left: 16px; top: 17px; width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--steel-2); background: var(--paper); }
.choice input:checked + .c { border-color: var(--grit); background: #EEF2F7; }
.choice input:checked + .c::before { border-color: var(--grit); background: radial-gradient(circle, var(--grit) 45%, transparent 50%); }
.choice input:focus-visible + .c { outline: 3px solid var(--grit); outline-offset: 2px; }
.choice .c b { font-weight: 700; }
.choice .c small { color: var(--mute); font-size: .88rem; line-height: 1.4; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Estimator ---------- */
.est { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, .9fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
@media (max-width: 960px) { .est { grid-template-columns: 1fr; } }
.rooms { display: grid; gap: 20px; }
.room { background: var(--paper); border-radius: var(--radius); box-shadow: 0 1px 0 var(--line); overflow: hidden; }
.room-head { display: flex; align-items: center; gap: 12px; padding: 14px 20px; background: var(--dry-2); border-bottom: 1px solid var(--line); }
.room-head h3 { font-size: 1.1rem; margin-right: auto; }
.room-head .area { font-family: var(--f-mono); font-size: .76rem; color: var(--wet-deep); }
.room-body { padding: 20px; display: grid; gap: 20px; }
.x-btn { min-height: 38px; padding: 0 12px; background: transparent; border: 1.5px solid rgba(31, 38, 42, .3); border-radius: var(--radius); cursor: pointer; font-weight: 600; font-size: .88rem; }
.x-btn:hover { border-color: var(--steel); }
.dims { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 480px) { .dims { grid-template-columns: 1fr 1fr; } }
.add-room { width: 100%; min-height: 64px; border: 2px dashed rgba(31, 38, 42, .35); background: transparent; border-radius: var(--radius); font-family: var(--f-display); font-stretch: 110%; font-weight: 700; font-size: 1.05rem; cursor: pointer; color: var(--steel); transition: background-color .2s, border-color .2s; }
.add-room:hover { background: var(--paper); border-color: var(--steel); }
.summary { position: sticky; top: 92px; }
.total { font-family: var(--f-display); font-stretch: 125%; font-weight: 800; font-size: clamp(2.2rem, 4.2vw, 3.4rem); line-height: 1; letter-spacing: -.02em; margin: 10px 0 6px; font-variant-numeric: tabular-nums; }
.total small { font-size: .45em; font-weight: 700; }
.lines { list-style: none; margin: 18px 0; padding: 0; border-top: 1px solid rgba(239, 223, 213, .16); }
.lines li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(239, 223, 213, .16); font-size: .94rem; }
.lines li span:last-child { font-family: var(--f-mono); font-size: .8rem; white-space: nowrap; color: #C9CFD2; }
.fine { font-size: .86rem; color: #AEB7BB; line-height: 1.5; }
.panel:not(.panel--steel) .fine { color: var(--mute); }

/* ---------- Booking ---------- */
.days { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(92px, 1fr); gap: 10px; overflow-x: auto; padding: 4px 2px 12px; scroll-snap-type: x mandatory; }
.day { scroll-snap-align: start; display: grid; gap: 2px; justify-items: center; padding: 12px 8px; border-radius: var(--radius); border: 1.5px solid rgba(31, 38, 42, .22); background: var(--paper); cursor: pointer; transition: background-color .2s, border-color .2s, color .2s; }
.day:hover { border-color: var(--steel); }
.day .dw { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }
.day .dn { font-family: var(--f-display); font-stretch: 125%; font-weight: 800; font-size: 1.7rem; line-height: 1.05; }
.day .dm { font-size: .82rem; font-weight: 600; }
.day .dh { font-family: var(--f-mono); font-size: .6rem; color: var(--mute); margin-top: 4px; }
.day[aria-pressed="true"] { background: var(--steel); border-color: var(--steel); color: var(--dry); }
.day[aria-pressed="true"] .dw, .day[aria-pressed="true"] .dh { color: #A9B3B8; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.slot { min-height: 48px; border-radius: var(--radius); border: 1.5px solid rgba(31, 38, 42, .22); background: var(--paper); font-family: var(--f-mono); font-stretch: 90%; font-size: .9rem; font-weight: 500; cursor: pointer; transition: background-color .2s, border-color .2s, color .2s; }
.slot:hover:not([disabled]) { border-color: var(--steel); }
.slot[aria-pressed="true"] { background: var(--grit); border-color: var(--grit); color: #fff; }
.slot[disabled] { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.step { display: grid; gap: 16px; padding-block: 26px; border-top: 1px solid var(--line); }
.step:first-child { border-top: 0; padding-top: 0; }
.step-h { display: flex; align-items: baseline; gap: 12px; }
.step-h .n { font-family: var(--f-mono); font-size: .8rem; color: var(--wet); }
.pick { font-family: var(--f-display); font-stretch: 115%; font-weight: 700; font-size: 1.3rem; line-height: 1.25; margin: 8px 0 4px; }

/* ---------- Area checker ---------- */
.checker { display: flex; gap: 10px; flex-wrap: wrap; }
.checker input { flex: 1 1 180px; min-height: 52px; padding: 12px 14px; border-radius: var(--radius); border: 1.5px solid rgba(31, 38, 42, .3); background: var(--paper); font-family: var(--f-mono); font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.checker input::placeholder { text-transform: none; letter-spacing: 0; font-family: var(--f-body); color: var(--mute); }
.checker input:focus { outline: none; border-color: var(--grit); box-shadow: 0 0 0 3px rgba(47, 99, 160, .25); }
.checker-out { margin-top: 16px; min-height: 1.6em; }
.checker-out .res { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; align-items: center; padding: 16px 18px; border-radius: var(--radius); background: var(--dry-2); border-left: 4px solid var(--grit); }
.checker-out .res.far { border-left-color: var(--wet); }
.checker-out .miles { grid-row: span 2; font-family: var(--f-display); font-stretch: 125%; font-weight: 800; font-size: 2.2rem; line-height: 1; }
.checker-out .miles small { display: block; font-family: var(--f-mono); font-size: .62rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--mute); margin-top: 4px; }
.checker-out p { margin: 0; }
.panel--steel .checker-out .res { background: var(--steel-2); }
.panel--steel .checker-out .miles small { color: #A9B3B8; }

/* ---------- Hours ---------- */
.hours { width: 100%; border-collapse: collapse; font-size: 1rem; }
.hours th, .hours td { text-align: left; padding: 11px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours th { font-weight: 700; }
.hours td { font-family: var(--f-mono); font-stretch: 90%; font-size: .9rem; text-align: right; }
.hours tr.today th, .hours tr.today td { color: var(--grit-deep); }
.hours tr.today th::after { content: 'Today'; margin-left: 10px; font-family: var(--f-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; background: var(--grit); color: #fff; padding: 2px 6px; border-radius: 2px; vertical-align: 2px; }
.open-now { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.open-now i { width: 10px; height: 10px; border-radius: 50%; background: var(--wet); }
.open-now.is-open i { background: var(--wa); box-shadow: 0 0 0 4px rgba(30, 158, 80, .18); }

/* ---------- Services page ---------- */
.svc { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; padding-block: clamp(48px, 6vw, 88px); border-top: 1px solid var(--line); scroll-margin-top: 80px; }
.svc:nth-of-type(even) .svc-media { order: 2; }
.svc-media { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 3 / 4; }
.svc-media img:only-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
.svc-text { display: grid; gap: 16px; }
.svc-text ul { margin: 0; padding-left: 1.2em; display: grid; gap: 6px; }
.evidence { display: grid; gap: 4px; padding: 14px 16px; background: var(--paper); border-left: 4px solid var(--skim); border-radius: 0 var(--radius) var(--radius) 0; font-size: .96rem; }
.evidence q { font-style: italic; }
.evidence small { color: var(--mute); }
@media (max-width: 880px) { .svc { grid-template-columns: 1fr; } .svc:nth-of-type(even) .svc-media { order: 0; } }
.jump { display: flex; flex-wrap: wrap; gap: 8px; }
.jump a { padding: 8px 14px; border-radius: 99px; border: 1.5px solid rgba(31, 38, 42, .25); text-decoration: none; color: var(--steel); font-weight: 600; font-size: .92rem; background: var(--paper); }
.jump a:hover { border-color: var(--steel); }

.faq { display: grid; gap: 10px; }
.faq details { background: var(--paper); border-radius: var(--radius); box-shadow: 0 1px 0 var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 52px 18px 20px; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-family: var(--f-mono); font-size: 1.2rem; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 20px 18px; margin: 0; color: var(--steel-2); }

/* steps (a real sequence) */
.seq { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; counter-reset: s; list-style: none; padding: 0; margin: 0; }
.seq li { counter-increment: s; padding-top: 18px; border-top: 3px solid var(--steel); display: grid; gap: 8px; align-content: start; }
.seq li::before { content: counter(s, decimal-leading-zero); font-family: var(--f-mono); font-size: .78rem; color: var(--wet); }
.seq p { margin: 0; color: var(--steel-2); font-size: .98rem; }
.band--steel .seq li { border-top-color: var(--dry); }
.band--steel .seq p { color: #C9CFD2; }
@media (max-width: 880px) { .seq { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .seq { grid-template-columns: 1fr; } }

/* ---------- Work page ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filters button { min-height: 44px; padding: 8px 16px; border-radius: 99px; border: 1.5px solid rgba(31, 38, 42, .25); background: var(--paper); font-weight: 600; cursor: pointer; }
.filters button[aria-pressed="true"] { background: var(--steel); color: var(--dry); border-color: var(--steel); }
.gallery { columns: 3 280px; column-gap: 16px; }
.gallery figure { margin: 0 0 16px; break-inside: avoid; position: relative; }
.gallery figure[hidden] { display: none; }
.gallery button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: var(--radius); overflow: hidden; }
.gallery img { width: 100%; transition: transform .6s var(--ease); }
.gallery button:hover img { transform: scale(1.03); }
.gallery figcaption { font-size: .92rem; color: var(--steel-2); padding: 8px 2px 0; display: grid; gap: 2px; }
.gallery figcaption .label { color: var(--wet); font-size: .64rem; }
.phone-big { font-family: var(--f-display); font-stretch: 118%; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1; margin: 14px 0 22px; white-space: nowrap; }
.phone-big a { color: var(--steel); text-decoration: none; }
.pairs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 980px) { .pairs { grid-template-columns: 1fr; max-width: 560px; } }
.pair h3 { margin: 16px 0 6px; }
.pair p { margin: 0; color: #C9CFD2; font-size: .95rem; }
dialog.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 1100px); max-height: 92vh; }
dialog.lightbox::backdrop { background: rgba(20, 24, 26, .88); }
dialog.lightbox img { max-height: 82vh; width: auto; margin-inline: auto; border-radius: var(--radius); }
dialog.lightbox p { color: var(--dry); text-align: center; margin: 12px 0 0; }
dialog.lightbox .close { position: fixed; top: 16px; right: 16px; min-height: 46px; padding: 0 16px; border-radius: var(--radius); border: 0; background: var(--dry); color: var(--steel); font-weight: 700; cursor: pointer; }

/* ---------- Team ---------- */
.team { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.team-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.team-photos img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.team-photos img:first-child { margin-top: 40px; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; margin-top: 8px; border-top: 1px solid rgba(239, 223, 213, .2); }
.facts div { padding: 16px 0; border-bottom: 1px solid rgba(239, 223, 213, .2); }
.facts dt { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: #A9B3B8; }
.facts dd { margin: 4px 0 0; font-family: var(--f-display); font-stretch: 115%; font-weight: 700; font-size: 1.15rem; }
@media (max-width: 880px) { .team { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .facts dd { font-size: 1rem; } }

/* ---------- CTA + footer ---------- */
.cta { position: relative; overflow: hidden; }
.cta .wrap { display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: 32px; align-items: end; }
.cta h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); max-width: 14ch; }
@media (max-width: 880px) { .cta .wrap { grid-template-columns: 1fr; } }
.foot { background: var(--steel); color: #C9CFD2; padding-block: 56px 32px; font-size: .96rem; }
.foot a { color: var(--dry); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
.foot h3 { color: var(--dry); font-size: 1rem; margin-bottom: 12px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot .brand { color: var(--dry); margin-bottom: 14px; }
.foot .brand-mark { background: var(--dry); color: var(--steel); }
.foot .brand-mark b { color: var(--grit); }
.foot .brand-word small { color: #A9B3B8; }
.foot-base { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(239, 223, 213, .16); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: #9AA4A9; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal ---------- */
.js .rv { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.js .rv-d1 { transition-delay: .08s; } .js .rv-d2 { transition-delay: .16s; } .js .rv-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  .js .rv { opacity: 1; transform: none; }
  .marquee-track { animation: none; width: auto; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 10px; }
  .marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .marquee-track [aria-hidden="true"] { display: none; }
}
