/* Kn.tiling demo site
   Tokens: porcelain ground, Victorian ink, bottle-green glaze, the lime of the Kn.tiling roundel,
   grout grey for every joint and hairline. Laser red marks the setting-out line and keyboard focus. */

@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: "Martian Mono";
  src: url("../fonts/MartianMono-var.woff2") format("woff2");
  font-weight: 100 800;
  font-stretch: 75% 112.5%;
  font-display: swap;
}

:root {
  --porcelain: #edefea;
  --porcelain-2: #e3e6df;
  --paper: #f7f8f5;
  --grout: #c7cbc3;
  --grout-2: #d7dad3;
  --ink: #131816;
  --ink-2: #48504c;
  --bottle: #1d4a3c;
  --bottle-deep: #11302a;
  --lime: #d6de7c;
  --clay: #b4583a;
  --laser: #e4322b;
  --wa: #25d366;

  --display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Martian Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --joint: 6px;            /* grout joint between tiled blocks */
  --edge: 2px;             /* rectified tile edge */
  --gutter: clamp(16px, 4vw, 56px);
  --max: 1320px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--laser); outline-offset: 3px; border-radius: var(--edge); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: var(--porcelain); padding: 10px 14px; border-radius: var(--edge); }
.skip:focus { top: 12px; }

/* ---------- Type ---------- */
.display, h1, h2, h3 {
  font-family: var(--display);
  font-stretch: 125%;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: .95;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 6.4vw, 6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); font-weight: 780; }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.45rem); font-weight: 720; letter-spacing: -0.01em; line-height: 1.1; font-stretch: 112%; }
p { margin: 0 0 1em; }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-2); max-width: 36em; }
.label, .eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--ink-2); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--laser); }
.muted { color: var(--ink-2); }
.est { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-2); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }
.section--paper { background: var(--paper); }
.section--bottle { background: var(--bottle); color: var(--porcelain); }
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 24px 48px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head p { margin: 16px 0 0; max-width: 34em; color: var(--ink-2); }
.section--bottle .section-head p, .section--bottle .muted { color: #bcd0c6; }
.section--bottle .eyebrow { color: #bcd0c6; }

/* the page itself reads as a wall of 600 x 600 tiles, drawn at a whisper */
.tiled-bg {
  background-color: var(--porcelain);
  background-image:
    linear-gradient(to right, rgba(199, 203, 195, .55) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(199, 203, 195, .55) 1px, transparent 1px);
  background-size: 120px 120px;
  background-position: -1px -1px;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--ink); --fg: var(--porcelain);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 12px 22px;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid var(--bg); border-radius: var(--edge);
  font-family: var(--display); font-stretch: 112%; font-weight: 650; font-size: 15.5px; letter-spacing: .005em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--wa { --bg: var(--bottle); --fg: var(--paper); }
.btn--wa svg { color: var(--lime); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--porcelain); }
.btn--lime { --bg: var(--lime); --fg: var(--ink); }
.btn--light { --bg: var(--paper); --fg: var(--ink); }
.btn--small { min-height: 40px; padding: 8px 14px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-arrow { font-family: var(--display); font-stretch: 112%; font-weight: 650; text-decoration: none; border-bottom: 2px solid var(--lime); padding-bottom: 2px; }
.link-arrow:hover { border-color: var(--laser); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(237, 239, 234, .9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--grout);
}
.site-header .wrap { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name { font-family: var(--display); font-stretch: 125%; font-weight: 850; font-size: 20px; letter-spacing: -.02em; line-height: 1; }
.brand__name span { color: var(--laser); }
.brand__sub { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); margin-top: 4px; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; text-decoration: none; padding: 10px 12px;
  font-family: var(--display); font-stretch: 108%; font-weight: 600; font-size: 15px;
}
.nav a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--laser); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { display: flex; gap: 8px; align-items: center; }
.icon-btn { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: var(--edge); border: 1.5px solid var(--ink); background: transparent; cursor: pointer; text-decoration: none; }
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn--wa { background: var(--bottle); border-color: var(--bottle); color: var(--lime); }
.menu-btn { display: none; }
.menu-btn span { display: block; width: 20px; height: 2px; background: currentColor; position: relative; transition: transform .25s var(--ease), background-color .2s; }
.menu-btn span::before, .menu-btn span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: currentColor; transition: transform .25s var(--ease); }
.menu-btn span::before { top: -6px; } .menu-btn span::after { top: 6px; }
.site-header.is-open .menu-btn span { background: transparent; }
.site-header.is-open .menu-btn span::before { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .menu-btn span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-btn { display: inline-grid; }
  .header-cta .btn { display: none; }
  .site-header.is-open .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--porcelain); border-bottom: 1px solid var(--grout);
    padding: 8px var(--gutter) 24px;
  }
  .site-header.is-open .nav a { font-size: 22px; font-stretch: 118%; padding: 14px 0; border-bottom: 1px solid var(--grout); }
  .site-header.is-open .nav a::after { display: none; }
  .site-header.is-open .nav a[aria-current="page"] { color: var(--bottle); }
  .site-header.is-open .nav .nav__quote { display: flex; margin-top: 16px; border: 0; }
}
.nav__quote { display: none; }

/* ---------- Home hero: drawn -> laid ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--grout); }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(32px, 5vw, 80px); align-items: center; padding-block: clamp(40px, 6vw, 88px); }
.hero h1 { margin-bottom: 26px; font-size: clamp(2.5rem, 5.3vw, 5.1rem); }
.hero h1 em { font-style: normal; color: var(--bottle); }
.hero .lede { margin-bottom: 30px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 28px; align-items: center; }
.rating-chip { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.rating-chip strong { font-family: var(--display); font-stretch: 125%; font-weight: 800; font-size: 26px; line-height: 1; }
.stars { display: inline-flex; gap: 2px; color: var(--ink); }
.stars svg { width: 15px; height: 15px; }
.rating-chip .label { color: var(--ink-2); }

.stage { position: relative; }
.stage__frame {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--joint);
  padding: var(--joint); background: var(--grout); border-radius: var(--edge);
  aspect-ratio: 8 / 5.6;
}
.stage__panel { position: relative; overflow: hidden; background: var(--paper); border-radius: 1px; margin: 0; }
.stage__panel svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.stage__panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage__tag {
  position: absolute; left: 10px; top: 10px; z-index: 2;
  background: var(--paper); color: var(--ink); padding: 5px 8px; border-radius: var(--edge);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
}
.stage__tag--dark { background: var(--ink); color: var(--paper); }
.stage__laser {
  position: absolute; z-index: 3; top: -14px; bottom: -14px; left: 50%; width: 2px; margin-left: -1px;
  background: var(--laser); box-shadow: 0 0 10px 1px rgba(228, 50, 43, .55);
  transform-origin: top; animation: laser-draw 1s var(--ease) both;
}
.stage__laser::before, .stage__laser::after { content: ""; position: absolute; left: 50%; width: 9px; height: 9px; margin-left: -4.5px; border: 2px solid var(--laser); border-radius: 50%; background: var(--porcelain); }
.stage__laser::before { top: -4px; } .stage__laser::after { bottom: -4px; }
@keyframes laser-draw { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.stage__photo { transition: opacity .5s var(--ease), clip-path .8s var(--ease); clip-path: inset(0 0 0 0); }
.stage__photo.is-leaving { opacity: 0; }
.stage__photo.is-entering { clip-path: inset(0 100% 0 0); }
.stage__caption { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.stage__caption p { margin: 0; font-size: 14.5px; line-height: 1.45; color: var(--ink-2); }
.stage__caption .label { display: block; color: var(--ink); margin-bottom: 4px; }
.stage__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 14px;
  border: 1.5px solid var(--ink); border-radius: var(--edge); background: transparent; cursor: pointer;
  font-family: var(--display); font-stretch: 108%; font-weight: 600; font-size: 14px;
  transition: background-color .2s, color .2s;
}
.chip:hover { background: var(--porcelain-2); }
.chip[aria-selected="true"], .chip[aria-pressed="true"], .chip.is-active { background: var(--ink); color: var(--paper); }
.chip__swatch { width: 14px; height: 14px; border-radius: 1px; flex: none; box-shadow: inset 0 0 0 1px rgba(0,0,0,.15); }

/* tiles being laid */
.pattern-svg .t { transform-box: fill-box; transform-origin: center; }
.pattern-svg.is-laying .t { animation: lay .55s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes lay { from { opacity: 0; transform: scale(.55); } to { opacity: 1; transform: none; } }

/* ---------- Proof band (Google review topics as a spec sheet) ---------- */
.proof { background: var(--ink); color: var(--paper); }
.proof .wrap { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); align-items: center; padding-block: 34px; }
.proof__score { display: flex; align-items: center; gap: 18px; }
.proof__score strong { font-family: var(--display); font-stretch: 125%; font-weight: 850; font-size: clamp(3rem, 5vw, 4.4rem); line-height: .9; color: var(--lime); }
.proof__score .stars { color: var(--lime); }
.proof__score .label { color: #b9c2bd; }
.topics { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.topics li { display: inline-flex; align-items: center; gap: 10px; border: 1px solid #3a4440; border-radius: var(--edge); padding: 7px 10px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .03em; }
.topics b { font-weight: 700; color: var(--lime); }

/* ---------- Tiled grid (grout joints between blocks) ---------- */
.grid-tiled { display: grid; gap: var(--joint); padding: var(--joint); background: var(--grout); border-radius: var(--edge); }
.svc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.svc-card { position: relative; display: flex; flex-direction: column; background: var(--paper); text-decoration: none; overflow: hidden; border-radius: 1px; }
.svc-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--porcelain-2); }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-card:hover .svc-card__img img { transform: scale(1.04); }
.svc-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card__body p { margin: 0; color: var(--ink-2); font-size: 15.5px; }
.svc-card__foot { margin-top: auto; padding-top: 8px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.svc-card__go { font-family: var(--display); font-stretch: 112%; font-weight: 650; font-size: 14.5px; }
.svc-card:hover .svc-card__go { color: var(--bottle); }

/* ---------- Before / after ---------- */
.ba { position: relative; overflow: hidden; border-radius: var(--edge); background: var(--ink); aspect-ratio: 4 / 3; --pos: 50%; user-select: none; touch-action: pan-y; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { clip-path: inset(0 0 0 var(--pos)); }
.ba__line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--laser); box-shadow: 0 0 10px rgba(228,50,43,.6); pointer-events: none; }
.ba__knob { position: absolute; top: 50%; left: var(--pos); width: 48px; height: 48px; margin: -24px 0 0 -24px; border-radius: 50%; background: var(--paper); border: 2px solid var(--laser); display: grid; place-items: center; pointer-events: none; box-shadow: 0 6px 20px rgba(0,0,0,.25); }
.ba__knob svg { width: 22px; height: 22px; }
.ba input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.ba input[type="range"]:focus-visible ~ .ba__knob { outline: 3px solid var(--laser); outline-offset: 3px; }
.ba__tag { position: absolute; bottom: 12px; z-index: 1; padding: 6px 9px; border-radius: var(--edge); background: rgba(19, 24, 22, .82); color: var(--paper); font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; pointer-events: none; }
.ba__tag--l { left: 12px; } .ba__tag--r { right: 12px; background: var(--lime); color: var(--ink); }
.ba-wrap { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.ba-wrap h2 { margin-bottom: 18px; }
.note-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.note-list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; color: var(--ink-2); font-size: 15.5px; }
.note-list li::before { content: ""; width: 14px; height: 14px; margin-top: 5px; background: var(--lime); box-shadow: 0 0 0 1px var(--ink); transform: rotate(45deg); }

/* ---------- Work grid ---------- */
.work-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(120px, 12vw, 190px); grid-auto-flow: dense; }
.work-item { position: relative; margin: 0; overflow: hidden; background: var(--porcelain-2); grid-column: span 3; grid-row: span 2; border-radius: 1px; }
.work-item.w-4 { grid-column: span 4; } .work-item.w-5 { grid-column: span 5; } .work-item.w-6 { grid-column: span 6; }
.work-item.h-3 { grid-row: span 3; } .work-item.h-4 { grid-row: span 4; } .work-item.h-1 { grid-row: span 1; }
.work-item button { all: unset; position: absolute; inset: 0; cursor: zoom-in; }
.work-item button:focus-visible { outline: 3px solid var(--laser); outline-offset: -3px; }
.work-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .4s; }
.work-item:hover img { transform: scale(1.035); }
.work-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 12px 10px;
  background: linear-gradient(transparent, rgba(12, 16, 14, .78)); color: var(--paper);
  font-size: 13.5px; line-height: 1.35; pointer-events: none;
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s var(--ease);
}
.work-item figcaption .label { display: block; color: var(--lime); font-size: 9.5px; margin-bottom: 3px; }
.work-item:hover figcaption, .work-item:focus-within figcaption { opacity: 1; transform: none; }
.work-item[hidden] { display: none; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filters .chip b { font-family: var(--mono); font-weight: 500; font-size: 11px; opacity: .7; }

/* lightbox */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100vh; width: 100vw; height: 100vh; margin: 0; }
.lightbox::backdrop { background: rgba(10, 13, 12, .92); }
.lightbox__inner { position: relative; width: 100%; height: 100%; display: grid; grid-template-rows: 1fr auto; padding: 56px 16px 16px; gap: 12px; }
.lightbox img { max-width: 100%; max-height: 100%; margin: auto; object-fit: contain; border-radius: var(--edge); align-self: center; justify-self: center; min-height: 0; }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--paper); max-width: 1100px; width: 100%; margin: 0 auto; }
.lightbox__bar p { margin: 0; font-size: 15px; }
.lightbox__bar .label { color: var(--lime); display: block; }
.lightbox__nav { display: flex; gap: 8px; }
.lightbox .icon-btn { border-color: var(--paper); color: var(--paper); }
.lightbox__close { position: absolute; top: 10px; right: 16px; }

/* ---------- Reviews marquee ---------- */
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee__track { display: flex; gap: var(--joint); width: max-content; animation: slide 60s linear infinite; }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 75s; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee + .marquee { margin-top: var(--joint); }
@keyframes slide { to { transform: translateX(calc(-50% - var(--joint) / 2)); } }
.quote-card { width: clamp(270px, 30vw, 400px); flex: none; background: var(--bottle-deep); border: 1px solid #2c5446; border-radius: var(--edge); padding: 24px 24px 20px; display: flex; flex-direction: column; gap: 16px; }
.quote-card blockquote { margin: 0; font-family: var(--display); font-stretch: 108%; font-weight: 560; font-size: 19px; line-height: 1.3; color: var(--paper); }
.quote-card footer { margin-top: auto; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: #bcd0c6; }
.quote-card .stars { color: var(--lime); }
.quote-card--photo { position: relative; padding: 0; overflow: hidden; width: clamp(170px, 16vw, 220px); margin: 0; }
.quote-card--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quote-card { margin: 0; min-height: 210px; }

/* ---------- Process ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--joint); background: var(--grout); padding: var(--joint); border-radius: var(--edge); counter-reset: step; }
.steps li { background: var(--paper); padding: 22px 20px 24px; counter-increment: step; display: flex; flex-direction: column; gap: 10px; }
.steps li::before { content: counter(step, decimal-leading-zero); font-family: var(--mono); font-size: 12px; color: var(--laser); }
.steps p { margin: 0; font-size: 15px; color: var(--ink-2); }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.about__pics { display: grid; grid-template-columns: 1fr 1fr; gap: var(--joint); padding: var(--joint); background: var(--grout); border-radius: var(--edge); }
.about__pics img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.about__pics img:first-child { grid-row: span 2; aspect-ratio: auto; height: 100%; min-height: 0; }
.about__pics { align-items: stretch; grid-template-rows: auto auto; }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--grout); border: 1px solid var(--grout); margin-top: 28px; }
.facts div { background: var(--porcelain); padding: 14px 16px; }
.facts dt { margin: 0 0 4px; }
.facts dd { margin: 0; font-family: var(--display); font-stretch: 112%; font-weight: 650; font-size: 16px; line-height: 1.3; }

/* ---------- Visualiser teaser on home ---------- */
.teaser { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.teaser__svg { aspect-ratio: 5 / 4; background: var(--grout); padding: var(--joint); border-radius: var(--edge); }
.teaser__svg svg { width: 100%; height: 100%; display: block; }
.teaser .chip { border-color: var(--porcelain); color: var(--porcelain); }
.teaser .chip:hover { background: rgba(255,255,255,.08); }
.teaser .chip[aria-pressed="true"] { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--lime); }
.cta-band .wrap { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px 48px; align-items: center; padding-block: clamp(48px, 7vw, 88px); }
.cta-band h2 { max-width: 14em; }
.cta-band p { margin: 14px 0 0; max-width: 34em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bottle-deep); color: #c9d8d0; font-size: 15px; }
.site-footer .wrap { padding-block: 56px 28px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
.site-footer h3 { color: var(--paper); font-size: 15px; font-stretch: 112%; margin-bottom: 14px; letter-spacing: 0; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.site-footer .brand__name { color: var(--paper); }
.site-footer .brand__sub { color: #9fb5aa; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 20px; border-top: 1px solid #2a4a40; font-size: 13px; color: #9fb5aa; }

/* ---------- Inner page head ---------- */
.page-head { border-bottom: 1px solid var(--grout); }
.page-head .wrap { padding-block: clamp(48px, 7vw, 96px) clamp(36px, 5vw, 64px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px 48px; align-items: end; }
.page-head h1 { font-size: clamp(2.3rem, 5.6vw, 5rem); }
.page-head .lede { margin: 20px 0 0; }
.crumb { font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 20px; display: block; }
.crumb a { text-decoration: none; }
.crumb a:hover { color: var(--laser); }

/* ---------- Services page ---------- */
.svc { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 80px); align-items: start; padding-block: clamp(48px, 7vw, 96px); border-top: 1px solid var(--grout); scroll-margin-top: 80px; }
.svc:first-of-type { border-top: 0; }
.svc--flip .svc__media { order: 2; }
.svc__media { display: grid; grid-template-columns: 2fr 1fr; gap: var(--joint); padding: var(--joint); background: var(--grout); border-radius: var(--edge); position: sticky; top: 96px; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 4; }
.svc__media img:first-child { grid-row: span 2; aspect-ratio: auto; }
.svc__body h2 { margin-bottom: 18px; }
.svc__body h3 { margin: 28px 0 12px; font-size: 1.05rem; }
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.ticks li { position: relative; padding-left: 28px; font-size: 16px; }
.ticks li::before { content: ""; position: absolute; left: 2px; top: .55em; width: 11px; height: 11px; background: var(--bottle); transform: rotate(45deg); }
.price { display: grid; grid-template-columns: 1fr auto; gap: 6px 16px; align-items: baseline; margin-top: 26px; padding: 18px 18px 16px; border: 1.5px solid var(--ink); border-radius: var(--edge); background: var(--paper); }
.price strong { font-family: var(--display); font-stretch: 118%; font-weight: 780; font-size: 22px; }
.price .est { grid-column: 1 / -1; }
.evidence { margin-top: 22px; padding-left: 16px; border-left: 3px solid var(--lime); font-size: 15.5px; color: var(--ink-2); }
.evidence cite { font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: .04em; display: block; margin-top: 6px; color: var(--ink); }
.jump { display: flex; flex-wrap: wrap; gap: 8px; }
.jump a { text-decoration: none; }

.materials { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--joint); background: var(--grout); padding: var(--joint); border-radius: var(--edge); }
.materials div { background: var(--paper); padding: 20px; }
.materials p { margin: 8px 0 0; font-size: 15px; color: var(--ink-2); }

.faq { display: grid; gap: var(--joint); }
.faq details { background: var(--paper); border: 1px solid var(--grout); border-radius: var(--edge); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 22px; position: relative; font-family: var(--display); font-stretch: 112%; font-weight: 680; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 24px; top: 50%; width: 12px; height: 12px; margin-top: -8px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details > div { padding: 0 22px 20px; color: var(--ink-2); max-width: 46em; }

/* ---------- Visualiser page ---------- */
.vis { display: grid; grid-template-columns: minmax(0, 7fr) minmax(320px, 4fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
.vis__stage { position: sticky; top: 90px; }
.scene { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--edge); background: #d9dcd5; border: var(--joint) solid var(--grout); }
.scene__wall { position: absolute; left: 0; right: 0; top: 0; height: 46%; background: linear-gradient(#e7e8e3, #d8dad3); }
/* the floor is a plane hinged at the skirting and tipped away from you */
.scene__floor { position: absolute; left: 0; right: 0; top: 42%; bottom: 0; overflow: hidden; perspective: 620px; perspective-origin: 50% -40%; background: #cfd2cb; }
.scene__floor-plane { position: absolute; left: -90%; right: -90%; top: 0; height: 330%; transform-origin: 50% 0; transform: rotateX(66deg); }
.scene__floor-plane svg, .scene__wall svg { width: 100%; height: 100%; display: block; }
.scene__wall { height: 42%; }
.scene__skirting { position: absolute; left: 0; right: 0; top: 42%; height: 9px; margin-top: -9px; background: #f5f5f1; box-shadow: 0 2px 0 rgba(0,0,0,.08); z-index: 2; }
.scene__shade { position: absolute; inset: 0; pointer-events: none; z-index: 3; background: linear-gradient(rgba(0,0,0,.08), transparent 30%), radial-gradient(130% 100% at 50% 10%, transparent 60%, rgba(0,0,0,.22)); }
.scene[data-surface="wall"] .scene__wall { height: 80%; }
.scene[data-surface="wall"] .scene__skirting { top: 80%; }
.scene[data-surface="wall"] .scene__floor { top: 80%; }
.section--ink { background: var(--ink); color: var(--paper); }
.scene__flat { position: absolute; inset: 0; }
.scene__flat svg { width: 100%; height: 100%; display: block; }
.scene__readout { position: absolute; left: 10px; bottom: 10px; z-index: 4; display: flex; flex-wrap: wrap; gap: 6px; }
.scene__readout span { background: rgba(247, 248, 245, .92); padding: 5px 8px; border-radius: var(--edge); font-family: var(--mono); font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase; }
.view-toggle { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; align-items: center; }
.real { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: center; margin-top: 18px; padding: var(--joint); background: var(--grout); border-radius: var(--edge); }
.real img { width: 120px; height: 120px; object-fit: cover; }
.real div { background: var(--paper); height: 100%; padding: 12px 14px; display: flex; flex-direction: column; justify-content: center; }
.real p { margin: 4px 0 0; font-size: 14.5px; line-height: 1.4; color: var(--ink-2); }

.panel { background: var(--paper); border: 1px solid var(--grout); border-radius: var(--edge); }
.panel + .panel { margin-top: var(--joint); }
.panel__head { padding: 16px 20px; border-bottom: 1px solid var(--grout); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.panel__head h2 { font-size: 20px; font-stretch: 118%; }
.panel__body { padding: 18px 20px 22px; display: grid; gap: 20px; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend, .field > label, .field__label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 9px; padding: 0; }
.seg { display: flex; flex-wrap: wrap; gap: 6px; }
.seg input, .swatches input, .choices input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.seg label { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 7px 12px; border: 1.5px solid var(--grout); border-radius: var(--edge); cursor: pointer; font-family: var(--display); font-stretch: 106%; font-weight: 600; font-size: 14px; background: var(--porcelain); transition: border-color .15s, background-color .15s; }
.seg label:hover { border-color: var(--ink); }
.seg input:checked + label { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.seg input:focus-visible + label, .swatches input:focus-visible + label, .choices input:focus-visible + label { outline: 3px solid var(--laser); outline-offset: 2px; }
.seg svg { width: 22px; height: 22px; flex: none; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.swatches label { width: 40px; height: 40px; border-radius: var(--edge); cursor: pointer; box-shadow: inset 0 0 0 1px rgba(0,0,0,.18); position: relative; }
.swatches input:checked + label { box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--ink); }
.swatch-name { font-size: 14px; margin-top: 8px; color: var(--ink-2); min-height: 1.4em; }
.field { display: grid; }
.field input[type="number"], .field input[type="text"], .field input[type="tel"], .field input[type="email"], .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 12px; background: var(--porcelain); border: 1.5px solid var(--grout); border-radius: var(--edge); font-size: 16px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-2); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--laser); outline-offset: 1px; border-color: var(--ink); }
.field__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field__hint { font-size: 13.5px; color: var(--ink-2); margin-top: 6px; }
.field__error { font-size: 14px; color: #b3261e; margin-top: 6px; font-weight: 600; }
.field__error:empty { display: none; }
.unit { position: relative; }
.unit input { padding-right: 44px; }
.unit::after { content: attr(data-unit); position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-family: var(--mono); font-size: 12px; color: var(--ink-2); pointer-events: none; }
input[type="range"].slider { width: 100%; accent-color: var(--bottle); height: 28px; }

.estimate { background: var(--ink); color: var(--paper); border-radius: var(--edge); padding: 20px; display: grid; gap: 14px; }
.estimate dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; margin: 0; }
.estimate dt { color: #aeb8b3; font-size: 14.5px; }
.estimate dd { margin: 0; text-align: right; font-family: var(--mono); font-size: 14px; }
.estimate .total { border-top: 1px solid #39433f; padding-top: 12px; }
.estimate .total dd { font-family: var(--display); font-stretch: 118%; font-weight: 780; font-size: 24px; color: var(--lime); }
.estimate .est { color: #aeb8b3; }

/* ---------- Reviews page ---------- */
.score-board { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.score-big { background: var(--ink); color: var(--paper); border-radius: var(--edge); padding: 28px; }
.score-big strong { display: block; font-family: var(--display); font-stretch: 125%; font-weight: 850; font-size: clamp(5rem, 11vw, 8.5rem); line-height: .85; color: var(--lime); }
.score-big .stars { color: var(--lime); margin: 18px 0 10px; }
.score-big .stars svg { width: 22px; height: 22px; }
.score-big p { margin: 0 0 20px; color: #b9c2bd; }
.bars { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.bars li { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 6px 16px; align-items: baseline; }
.bars span { font-family: var(--display); font-stretch: 110%; font-weight: 620; }
.bars b { font-family: var(--mono); font-weight: 500; font-size: 13px; }
.bars i { grid-column: 1 / -1; height: 10px; background: var(--porcelain-2); border-radius: 1px; overflow: hidden; display: block; box-shadow: inset 0 0 0 1px var(--grout); }
.bars i::before { content: ""; display: block; height: 100%; width: var(--w); background: repeating-linear-gradient(90deg, var(--bottle) 0 22px, var(--grout) 22px 24px); }
.review-grid { columns: 3 300px; column-gap: var(--joint); }
.review { break-inside: avoid; margin: 0 0 var(--joint); background: var(--paper); border: 1px solid var(--grout); border-radius: var(--edge); padding: 24px; }
.review blockquote { margin: 14px 0 18px; font-family: var(--display); font-stretch: 108%; font-weight: 600; font-size: 21px; line-height: 1.28; }
.review footer { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.review footer .label { color: var(--ink-2); }
.review figure { margin: 0 -24px -24px; padding-top: 0; }
.review figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.review__reply { margin: 16px 0 0; padding: 12px 14px; background: var(--porcelain); border-left: 3px solid var(--bottle); font-size: 14.5px; color: var(--ink-2); }
.review__who { font-family: var(--display); font-stretch: 112%; font-weight: 700; }

/* ---------- Quote page ---------- */
.quote-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.form { display: grid; gap: 28px; }
.form-step { background: var(--paper); border: 1px solid var(--grout); border-radius: var(--edge); padding: 22px 22px 24px; display: grid; gap: 18px; }
.form-step h2 { font-size: 21px; font-stretch: 118%; display: flex; align-items: baseline; gap: 12px; }
.form-step h2 .label { color: var(--laser); }
.choices { display: flex; flex-wrap: wrap; gap: 8px; }
.choices label { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 14px; border: 1.5px solid var(--grout); border-radius: var(--edge); background: var(--porcelain); cursor: pointer; font-family: var(--display); font-stretch: 106%; font-weight: 600; font-size: 15px; transition: border-color .15s, background-color .15s; }
.choices label::before { content: ""; width: 12px; height: 12px; border: 1.5px solid var(--ink-2); border-radius: 1px; transform: rotate(45deg); flex: none; transition: background-color .15s; }
.choices input[type="radio"] + label::before { border-radius: 50%; transform: none; }
.choices label:hover { border-color: var(--ink); }
.choices input:checked + label { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.choices input:checked + label::before { background: var(--lime); border-color: var(--lime); }
.wa-preview { position: sticky; top: 92px; background: #e4ddd2; background-image: radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px); background-size: 14px 14px; border-radius: var(--edge); overflow: hidden; border: 1px solid var(--grout); }
.wa-preview__head { background: var(--bottle); color: var(--paper); padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.wa-preview__head .brand__mark { width: 34px; height: 34px; }
.wa-preview__head b { font-family: var(--display); font-stretch: 112%; font-weight: 700; display: block; line-height: 1.2; }
.wa-preview__head small { color: #bcd0c6; font-size: 12.5px; }
.wa-preview__body { padding: 18px 14px 20px; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }
.bubble { align-self: flex-end; max-width: 92%; background: #d9fdd3; color: #111b21; border-radius: 8px 0 8px 8px; padding: 10px 12px 18px; font-size: 14.5px; line-height: 1.45; white-space: pre-wrap; position: relative; box-shadow: 0 1px 1px rgba(0,0,0,.12); word-break: break-word; }
.bubble::after { content: "now"; position: absolute; right: 8px; bottom: 3px; font-size: 10.5px; color: #667781; }
.wa-preview__foot { padding: 14px; display: grid; gap: 8px; background: rgba(255,255,255,.55); }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--joint); background: var(--grout); padding: var(--joint); border-radius: var(--edge); }
.contact-card { background: var(--paper); padding: 24px 22px; text-decoration: none; display: flex; flex-direction: column; gap: 10px; min-height: 190px; transition: background-color .2s; }
.contact-card:hover { background: var(--porcelain); }
.contact-card svg { width: 26px; height: 26px; color: var(--bottle); }
.contact-card strong { font-family: var(--display); font-stretch: 112%; font-weight: 700; font-size: 19px; line-height: 1.25; word-break: break-word; }
.contact-card .label { color: var(--ink-2); margin-top: auto; }
.contact-card--wa { background: var(--bottle); color: var(--paper); }
.contact-card--wa:hover { background: var(--bottle-deep); }
.contact-card--wa svg { color: var(--lime); }
.contact-card--wa .label { color: #bcd0c6; }
.hours { width: 100%; border-collapse: collapse; font-size: 16px; }
.hours th, .hours td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--grout); }
.hours th { font-weight: 600; font-family: var(--display); font-stretch: 110%; }
.hours td { font-family: var(--mono); font-size: 14px; text-align: right; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--bottle); }
.hours tr.is-today th::after { content: "Today"; margin-left: 10px; font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; background: var(--lime); color: var(--ink); padding: 3px 6px; border-radius: var(--edge); vertical-align: 2px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 72px); align-items: start; }
.area-card { background: var(--ink); color: var(--paper); border-radius: var(--edge); overflow: hidden; }
.area-card svg { display: block; width: 100%; height: auto; }
.area-card div { padding: 20px 22px 24px; }
.area-card p { color: #b9c2bd; margin: 8px 0 16px; }
.status { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; }
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--grout); }
.status.is-open::before { background: #2fae62; box-shadow: 0 0 0 4px rgba(47, 174, 98, .2); }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps li:last-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vis { grid-template-columns: minmax(0, 1fr); }
  .vis__stage { position: relative; top: 0; }
  .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .materials { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-layout { grid-template-columns: 1fr; }
  .wa-preview { position: relative; top: 0; }
}
@media (max-width: 820px) {
  .section-head, .page-head .wrap, .cta-band .wrap { grid-template-columns: 1fr; }
  .ba-wrap, .about, .teaser, .svc, .score-board, .two-col { grid-template-columns: 1fr; }
  .svc--flip .svc__media { order: 0; }
  .svc__media { position: relative; top: 0; }
  .proof .wrap { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); grid-auto-rows: 120px; }
  .work-item, .work-item.w-4, .work-item.w-5 { grid-column: span 3; }
  .work-item.w-6 { grid-column: span 6; }
  .work-item.h-3, .work-item.h-4 { grid-row: span 2; }
  .hide-sm { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .materials { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .stage__caption { grid-template-columns: 1fr; }
  .stage__caption > :first-child { display: none; }
  .field__row { grid-template-columns: 1fr; }
  .price { grid-template-columns: 1fr; }
  .btn-row .btn { flex: 1 1 100%; }
  .real { grid-template-columns: 88px 1fr; }
  .real img { width: 88px; height: 88px; }
  .brand__sub { display: none; }
  .quote-card blockquote { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
  .marquee__track { animation: none; }
  .marquee__track [aria-hidden="true"] { display: none; }
}
