/* ============================================================
   Gliding Brush Interior & Exterior Painting — "The Colour Change"
   Warm cream ground, warm charcoal ink, terracotta accent, sage support.
   Dusty plum is reserved for the before/after moment only.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --c-bg:        #F5EEDF;
  --c-surface:   #FFFCF6;
  --c-text:      #2F2A28;
  --c-muted:     #6B5F58;
  --c-line:      #E2D8C4;
  --c-brand:     #B3542F;
  --c-brand-ink: #FFFFFF;
  --c-accent:    #9E4526;
  --c-dark:      #2F2A28;
  --c-dark-text: #F5EEDF;

  /* site-specific extras */
  --c-band:      #EDE3D0;   /* deeper cream for alternating bands */
  --c-sage:      #5F6E56;   /* support tone */
  --c-plum:      #5B4658;   /* the "before" colour — before/after only */
  --c-trim:      #FFFDF8;   /* trim white */

  /* --- swatch wall: real interior tones, warm family --- */
  --sw-chalk:    #FAF6EE;
  --sw-cream:    #F5EEDF;
  --sw-linen:    #E8DCC4;
  --sw-sage:     #5F6E56;
  --sw-clay:     #B3542F;
  --sw-plum:     #5B4658;
  --sw-slate:    #6E7B82;
  --sw-char:     #2F2A28;

  --font-display: 'Instrument Serif', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body:    'Figtree', system-ui, -apple-system, 'Segoe UI', Helvetica, sans-serif;

  /* Hard edges throughout: every curve on this site comes from a paint shape,
     never from a rounded corner. */
  --radius: 0;
  --radius-sm: 0;
  --shadow: 0 22px 48px -32px rgba(47,42,40,.6);
  --shadow-soft: 0 40px 80px -56px rgba(47,42,40,.55);

  /* --- motion: real deceleration curves, no bounce, no elastic --- */
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:     180ms var(--ease-quart);
  --t:          320ms var(--ease-quint);
  --t-slow:     820ms var(--ease-expo);
}

/* ============================================================
   BASE SYSTEM  —  shared skeleton for all builds
   Site identity comes from the :root token block above this file.
   Required tokens: --c-bg --c-surface --c-text --c-muted --c-line
   --c-brand --c-brand-ink --c-accent --c-dark --c-dark-text
   --font-display --font-body --radius --radius-sm --shadow
   ============================================================ */

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; }
a { color: inherit; }

/* ---- type scale (fluid, 1.25 ratio) ---- */
:root {
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.0625rem;
  --fs-lg:   clamp(1.125rem, 0.35vw + 1.05rem, 1.25rem);
  --fs-xl:   clamp(1.35rem, 0.6vw + 1.2rem, 1.6rem);
  --fs-2xl:  clamp(1.65rem, 1.1vw + 1.4rem, 2.15rem);
  --fs-3xl:  clamp(2rem, 1.9vw + 1.6rem, 2.9rem);
  --fs-4xl:  clamp(2.4rem, 3vw + 1.7rem, 3.8rem);
  --fs-hero: clamp(2.6rem, 5.4vw + 0.9rem, 5rem);

  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 40px;  --s-8: 56px;
  --s-9: 72px;  --s-10: 96px; --s-11: 128px; --s-12: 160px;

  --container: 1180px;
  --container-wide: 1400px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: 160ms var(--ease);
  --t: 240ms var(--ease);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  text-wrap: balance;
  letter-spacing: -0.015em;
}
h1, h2, h3, h4, h5, p, li, dd, dt, td, th, figcaption, blockquote { overflow-wrap: break-word; }
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { text-wrap: pretty; }
strong { font-weight: 600; }

/* ---- layout primitives ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--s-10); }
.section--tight { padding-block: var(--s-8); }
.section--loose { padding-block: var(--s-11); }
@media (max-width: 720px) {
  .section { padding-block: var(--s-8); }
  .section--tight { padding-block: var(--s-7); }
  .section--loose { padding-block: var(--s-9); }
}
.stack > * + * { margin-top: var(--s-4); }
.stack-lg > * + * { margin-top: var(--s-6); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.grid { display: grid; gap: var(--s-6); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

.split {
  display: grid;
  gap: clamp(var(--s-6), 5vw, var(--s-9));
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split--7-5 { grid-template-columns: 7fr 5fr; }
  .split--5-7 { grid-template-columns: 5fr 7fr; }
  .split--reverse > :first-child { order: 2; }
}

/* ---- shared text bits ---- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: block;
  margin-bottom: var(--s-3);
}
.lede { font-size: var(--fs-lg); line-height: 1.6; color: var(--c-muted); max-width: 58ch; }
.muted { color: var(--c-muted); }
.small { font-size: var(--fs-sm); }

/* ---- buttons ---- */
.btn {
  --btn-bg: var(--c-brand);
  --btn-fg: var(--c-brand-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 50px;
  padding: 0 var(--s-6);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid var(--btn-bg);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
  max-width: 100%;
}
/* On very narrow phones a long button label wraps rather than blowing out the grid */
@media (max-width: 400px) {
  .btn { white-space: normal; text-align: center; padding-inline: var(--s-5); }
}
.btn:hover { background: var(--c-dark); border-color: var(--c-dark); color: var(--c-dark-text); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--c-text); border-color: var(--c-line); }
.btn--ghost:hover { background: var(--c-text); border-color: var(--c-text); color: var(--c-bg); }
.btn--onDark { --btn-bg: transparent; --btn-fg: var(--c-dark-text); border-color: rgba(255,255,255,.35); }
.btn--onDark:hover { background: var(--c-dark-text); border-color: var(--c-dark-text); color: var(--c-dark); }
.btn--lg { min-height: 58px; padding-inline: var(--s-7); font-size: var(--fs-base); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---- links ---- */
.link {
  /* Real vertical padding gives a 44px+ touch target; the underline is drawn as a
     background image so it still sits tight under the text instead of at the box edge. */
  position: relative;
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-weight: 600; text-decoration: none;
  padding-block: 11px;
  background-image: linear-gradient(var(--c-brand), var(--c-brand));
  background-size: 100% 2px;
  background-position: left calc(100% - 9px);
  background-repeat: no-repeat;
  transition: gap var(--t-fast), background-image var(--t-fast);
}
.link:hover { gap: var(--s-3); background-image: linear-gradient(var(--c-text), var(--c-text)); }
.link svg { width: 16px; height: 16px; }

/* ---- focus ---- */
:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip {
  position: absolute; left: var(--s-4); top: -100px; z-index: 200;
  background: var(--c-dark); color: var(--c-dark-text);
  padding: var(--s-3) var(--s-5); border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 600;
  transition: top var(--t-fast);
}
.skip:focus { top: var(--s-4); }

/* ---- header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow var(--t);
}
.site-header.is-stuck { box-shadow: 0 6px 28px -18px rgba(0,0,0,.5); }
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5); min-height: var(--header-h);
}
.brand {
  display: inline-flex; align-items: center; gap: var(--s-3);
  text-decoration: none;
  /* shrinkable, so an over-long lockup compresses instead of overflowing the header */
  flex: 0 1 auto; min-width: 0;
}
.brand > span { min-width: 0; }
.brand__mark { flex: none; }
.brand__name { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.brand__sub {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-muted); margin-top: 3px;
}
.nav { display: flex; align-items: center; gap: var(--s-6); }
.nav__list { display: flex; align-items: center; gap: var(--s-6); list-style: none; padding: 0; margin: 0; }
.nav__link {
  text-decoration: none; font-size: var(--fs-sm); font-weight: 500;
  color: var(--c-text); padding: var(--s-2) 0; position: relative;
  transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--c-brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { font-weight: 600; }

.nav-toggle {
  display: none; width: 48px; height: 48px; cursor: pointer;
  align-items: center; justify-content: center; border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--c-text); position: relative; transition: background var(--t-fast); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--c-text);
  transition: transform var(--t), top var(--t);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--c-bg); border-bottom: 1px solid var(--c-line);
    padding: var(--s-4) var(--gutter) var(--s-6);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity var(--t), transform var(--t);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    box-shadow: 0 20px 40px -24px rgba(0,0,0,.45);
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: var(--s-4) 0; font-size: var(--fs-md); border-bottom: 1px solid var(--c-line); }
  .nav__link::after { display: none; }
  .nav__link[aria-current="page"] { color: var(--c-accent); }
  .nav .btn { margin-top: var(--s-5); width: 100%; }
}

/* ---- utility bar ---- */
.utility {
  background: var(--c-dark); color: var(--c-dark-text);
  font-size: var(--fs-sm);
}
.utility__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); min-height: 44px; flex-wrap: wrap;
}
.utility a {
  text-decoration: none; font-weight: 600;
  display: inline-flex; align-items: center;
  min-height: 44px; padding-inline: 2px;
}
.utility a:hover { text-decoration: underline; }

/* ---- cards ---- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: var(--s-6);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.card--link { text-decoration: none; display: block; cursor: pointer; }
.card--link:hover { border-color: var(--c-brand); box-shadow: var(--shadow); }
.card__icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: var(--radius-sm); background: var(--c-brand);
  color: var(--c-brand-ink); margin-bottom: var(--s-5);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: var(--s-3); }
.card p { color: var(--c-muted); font-size: var(--fs-md); }

.cards-3 { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); }
.cards-2 { display: grid; gap: var(--s-6); grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.cards-4 { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }

/* ---- media ---- */
.media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--c-line); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--4x3 { aspect-ratio: 4/3; }
.media--3x2 { aspect-ratio: 3/2; }
.media--1x1 { aspect-ratio: 1/1; }
.media--4x5 { aspect-ratio: 4/5; }
.media--16x9 { aspect-ratio: 16/9; }

/* ---- stats ---- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); gap: var(--s-5); }
.stat__num { font-family: var(--font-display); font-size: var(--fs-3xl); font-weight: 700; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stat__label { font-size: var(--fs-sm); color: var(--c-muted); margin-top: var(--s-2); }

/* ---- testimonials ---- */
.quote { display: flex; flex-direction: column; gap: var(--s-4); }
.quote__stars { display: flex; gap: 2px; color: var(--c-accent); }
.quote__stars svg { width: 16px; height: 16px; }
.quote__text { font-size: var(--fs-lg); line-height: 1.55; }
.quote__by { font-size: var(--fs-sm); color: var(--c-muted); font-weight: 600; }

/* ---- accordion ---- */
.faq { border-top: 1px solid var(--c-line); }
.faq details { border-bottom: 1px solid var(--c-line); }
.faq summary {
  cursor: pointer; list-style: none; padding: var(--s-5) var(--s-7) var(--s-5) 0;
  font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 600;
  position: relative; transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg); transition: transform var(--t);
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:hover { color: var(--c-accent); }
.faq__body { padding: 0 var(--s-7) var(--s-5) 0; color: var(--c-muted); }

/* ---- forms ---- */
.form { display: grid; gap: var(--s-5); }
.form__row { display: grid; gap: var(--s-5); grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); }
.field { display: grid; gap: var(--s-2); }
.field label { font-size: var(--fs-sm); font-weight: 600; }
.field label .req { color: var(--c-accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: var(--s-3) var(--s-4); min-height: 50px;
  background: var(--c-bg); color: var(--c-text);
  border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { min-height: 130px; resize: vertical; padding-top: var(--s-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-brand) 25%, transparent);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #C0392B; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__note { font-size: var(--fs-sm); color: var(--c-muted); }
.form__success {
  display: none; align-items: flex-start; gap: var(--s-3);
  padding: var(--s-5); border-radius: var(--radius);
  background: color-mix(in srgb, var(--c-brand) 14%, var(--c-bg));
  border: 1px solid var(--c-brand);
}
.form__success.is-visible { display: flex; }
.form__success svg { width: 22px; height: 22px; flex: none; color: var(--c-accent); }

/* ---- footer ---- */
.site-footer { background: var(--c-dark); color: var(--c-dark-text); padding-block: var(--s-9) var(--s-6); }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer__grid { display: grid; gap: var(--s-7); grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); }
.footer__title {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; opacity: .6; margin-bottom: var(--s-4);
}
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); font-size: var(--fs-sm); }
.footer__bottom {
  margin-top: var(--s-8); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between;
  font-size: var(--fs-xs); opacity: .65;
}
.map-embed { width: 100%; aspect-ratio: 16/10; border: 0; border-radius: var(--radius); filter: grayscale(1) contrast(1.05); }
.map-embed:hover { filter: none; }

/* ---- dark section ---- */
.on-dark { background: var(--c-dark); color: var(--c-dark-text); }
.on-dark .eyebrow, .on-dark .muted, .on-dark .lede { color: rgba(255,255,255,.72); }
.on-dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.on-dark .card p { color: rgba(255,255,255,.72); }
.on-dark .faq, .on-dark .faq details { border-color: rgba(255,255,255,.16); }
.on-dark .faq__body { color: rgba(255,255,255,.72); }

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---- lightbox ---- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(94vw, 1200px); max-height: 92dvh; }
.lightbox::backdrop { background: rgba(10,10,10,.9); }
.lightbox img { width: 100%; height: auto; max-height: 88dvh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: -8px; right: -8px; width: 44px; height: 44px;
  border-radius: 50%; background: #fff; color: #111; display: grid; place-items: center; cursor: pointer;
}
.lightbox__close svg { width: 20px; height: 20px; }

/* ---- misc ---- */
.tag {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 6px var(--s-3); border-radius: 999px;
  background: var(--c-surface); border: 1px solid var(--c-line);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em;
}
.rule { height: 1px; background: var(--c-line); border: 0; }
.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;
}

/* focus ring must stay visible on dark sections */
.on-dark :focus-visible, .site-footer :focus-visible, .utility :focus-visible { outline-color: var(--c-brand); }


/* ---- narrow-viewport safety: allow layout children to shrink below content width ---- */
.split > *, .grid > *, .cards-2 > *, .cards-3 > *, .cards-4 > *,
.stats > *, .form__row > *, .hero__grid > * { min-width: 0; }
/* catch site-specific grids too (.emerg__grid, .footer__grid, .trust__grid ...) */
[class*="__grid"] > *, [class*="__inner"] > *, [class*="-grid"] > * { min-width: 0; }

/* ============================================================
   Gliding Brush — site components
   Paint is the design language: strokes, wipes, stipple, drips.
   Every curve on this site comes from a paint shape, never a radius.
   ============================================================ */

/* ---- type: Instrument Serif is a single-weight face ---- */
:root {
  --fs-xl:   clamp(1.4rem, 0.75vw + 1.22rem, 1.75rem);
  --fs-2xl:  clamp(1.8rem, 1.3vw + 1.45rem, 2.45rem);
  --fs-3xl:  clamp(2.2rem, 2.2vw + 1.6rem, 3.25rem);
  --fs-4xl:  clamp(2.6rem, 3.2vw + 1.8rem, 4.2rem);
  --container: 1200px;
  --header-h: 80px;
}
h1, h2, h3, h4, h5 { font-weight: 400; letter-spacing: -0.012em; }
h1 { line-height: 1.02; }
h2 { line-height: 1.06; }
h3, h4 { line-height: 1.15; }
.faq summary { font-weight: 400; }
.stat__num { font-weight: 400; }
.brand__name { font-weight: 400; }
.serif { font-family: var(--font-display); font-weight: 400; }
.it { font-style: italic; }
.on-dark h1 em, .on-dark h2 em, .on-dark h3 em { color: #E39A72; font-style: italic; }
.eyebrow { color: var(--c-accent); }
.lede { color: var(--c-muted); }
.tag { border-radius: 0; }
.lightbox__close { border-radius: 0; }
.media { background: var(--c-band); }

/* ============================================================
   1. THE STIPPLE — roller texture over the whole page
   Fixed and pointer-events:none so it never repaints on scroll.
   ============================================================ */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   2. THE STROKE — section transitions
   The stroke is filled with the INCOMING colour, so the page reads
   as one surface being repainted rather than a stack of bands.
   Usage: <div class="sd" style="--from:…;--to:…"><svg>…</svg></div>
   ============================================================ */
.sd { background: var(--from, transparent); line-height: 0; position: relative; }
.sd svg {
  display: block; width: 100%;
  height: clamp(46px, 6vw, 96px);
  fill: var(--to, var(--c-bg));
  color: var(--to, var(--c-bg));
}
.sd--tall svg { height: clamp(64px, 9vw, 150px); }
/* flipped: the stroke hangs from the top instead of rising from the bottom */
.sd--flip svg { transform: scaleY(-1); }

/* ---- the small repeated brush mark under headings ---- */
.brush-rule {
  width: 76px; height: 6px; background: var(--c-brand);
  clip-path: polygon(0 22%, 100% 0, 100% 76%, 0 100%);
  margin-bottom: var(--s-5);
}
.brush-rule--dark { background: var(--c-bg); }

/* ============================================================
   3. THE DRAW — strokes that paint themselves in
   JS measures each path and sets --len; CSS runs the transition.
   ============================================================ */
.draw { stroke-dasharray: var(--len, 1200); stroke-dashoffset: var(--len, 1200); transition: stroke-dashoffset 1200ms var(--ease-expo); }
.is-in .draw, .draw.is-in { stroke-dashoffset: 0; }

/* ---- the drip: used exactly twice on the page ---- */
.drip { transform-origin: top center; transform: scaleY(0); transition: transform 1400ms var(--ease-expo) 260ms; }
.is-in .drip, .drip.is-in { transform: scaleY(1); }

/* ============================================================
   4. REVEAL — content dries into focus
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); filter: blur(7px); transition: opacity 820ms var(--ease-expo), transform 820ms var(--ease-expo), filter 820ms var(--ease-expo); }
.reveal.is-in { opacity: 1; transform: none; filter: blur(0); }

/* ============================================================
   5. BUTTONS — nested arrow, physical press
   ============================================================ */
.btn { transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast); }
.btn:active { transform: scale(.98); }
.btn__ic {
  width: 28px; height: 28px; flex: none; display: grid; place-items: center;
  margin-left: var(--s-3); margin-right: -10px;
  background: rgba(255,255,255,.18);
  transition: transform var(--t-fast), background var(--t-fast);
}
.btn__ic svg { width: 14px; height: 14px; }
.btn:hover .btn__ic { transform: translate(3px, -2px); background: rgba(255,255,255,.3); }
.btn--ghost .btn__ic { background: rgba(47,42,40,.09); }
.btn--ghost:hover .btn__ic { background: rgba(245,238,223,.22); }

/* ---- utility strip ---- */
.utility__inner {
  justify-content: center; gap: var(--s-5); min-height: 42px;
  font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
}
.utility a { color: var(--c-bg); border-bottom: 1px solid rgba(245,238,223,.4); }
.utility a:hover { text-decoration: none; border-color: var(--c-bg); }

/* ---- brand wordmark + header ---- */
.brand__mark { color: var(--c-brand); width: 34px; height: 34px; transition: transform var(--t); }
.brand__name { font-size: var(--fs-xl); }
.site-header__inner { min-height: var(--header-h); }
.site-header { transition: box-shadow var(--t), background-color var(--t); }
.site-header.is-stuck { background: rgba(255,252,246,.94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--c-line), 0 18px 40px -34px rgba(47,42,40,.5); }
.site-header.is-stuck .brand__mark { transform: scale(.9); }
.site-footer .brand__name { font-size: var(--fs-2xl); }
.site-footer .brand__mark { color: var(--c-brand); }

/* ============================================================
   6. HERO — editorial split, image inside a painted mask
   ============================================================ */
.hero { position: relative; padding-block: var(--s-9) var(--s-11); overflow: hidden; }
.hero__wash {
  position: absolute; z-index: 0; pointer-events: none; max-width: none;
  top: -6%; right: -14%; width: min(78vw, 900px); height: auto;
  color: var(--c-brand); opacity: .10;
}
.hero__grid { position: relative; z-index: 1; display: grid; gap: clamp(var(--s-7), 5vw, var(--s-10)); align-items: center; }
@media (min-width: 980px) { .hero__grid { grid-template-columns: 1.04fr 0.96fr; } }
.hero h1 {
  font-size: clamp(2.5rem, 4.6vw + 1rem, 4.95rem);
  max-width: 17ch; letter-spacing: -0.03em; line-height: 1.0;
}
.hero h1 em { color: var(--c-accent); font-style: italic; }
.hero__lede { margin-top: var(--s-6); font-size: var(--fs-lg); color: var(--c-muted); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-7); }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-6);
  margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid var(--c-line);
  font-size: var(--fs-sm); color: var(--c-muted);
}
.hero__fact { display: inline-flex; align-items: center; gap: var(--s-2); }
.hero__fact svg { width: 17px; height: 17px; color: var(--c-accent); flex: none; }

/* the painted mask — an irregular, brushed edge instead of a rectangle */
.hero__media { position: relative; }
.brushmask { clip-path: url(#gb-brushmask); background: var(--c-band); }
.brushmask img { width: 100%; height: 100%; object-fit: cover; transition: transform 1400ms var(--ease-expo); }
.hero__media .brushmask { aspect-ratio: 3/3.55; }
.hero__media:hover .brushmask img { transform: scale(1.03); }
@media (max-width: 979px) { .hero__media .brushmask { aspect-ratio: 4/3; } }
.hero__stamp {
  position: absolute; left: calc(-1 * var(--s-5)); bottom: var(--s-7); z-index: 2;
  background: var(--c-dark); color: var(--c-bg);
  padding: var(--s-4) var(--s-5); max-width: 15ch;
  box-shadow: var(--shadow);
}
.hero__stamp b { display: block; font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1.1; }
.hero__stamp span { display: block; margin-top: 6px; font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: rgba(245,238,223,.75); }
@media (max-width: 620px) { .hero__stamp { left: 0; bottom: calc(-1 * var(--s-4)); } .hero__media { margin-bottom: var(--s-6); } }

/* ---- star rating ---- */
.stars { display: inline-flex; gap: 3px; color: var(--c-accent); }
.stars svg { width: 16px; height: 16px; }
.rating { display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-6); font-size: var(--fs-sm); color: var(--c-muted); }

/* ---- band helpers ---- */
.band { background: var(--c-band); }
.band-surface { background: var(--c-surface); }

/* ---- trust strip ---- */
.strip { display: grid; gap: var(--s-6); grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr)); }
.strip__item { border-top: 2px solid var(--c-dark); padding-top: var(--s-4); }
.strip__num { display: block; font-family: var(--font-display); font-size: var(--fs-3xl); line-height: 1; letter-spacing: -0.03em; }
.strip__label { display: block; margin-top: var(--s-3); font-size: var(--fs-sm); color: var(--c-muted); max-width: 32ch; }

/* ---- the three promises ---- */
.promises { display: grid; gap: var(--s-8); }
@media (min-width: 920px) {
  .promises { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .promise { padding-inline: clamp(var(--s-5), 3vw, var(--s-8)); border-left: 1px solid var(--c-line); }
  .promise:first-child { padding-left: 0; border-left: 0; }
  .promise:last-child { padding-right: 0; }
}
.promise__n { display: block; font-family: var(--font-display); font-style: italic; font-size: var(--fs-2xl); color: var(--c-accent); line-height: 1; margin-bottom: var(--s-4); }
.promise h3 { font-size: var(--fs-2xl); margin-bottom: var(--s-4); }
.promise p { color: var(--c-muted); }
.promise__q { margin-top: var(--s-6); border-left: 3px solid var(--c-brand); padding-left: var(--s-4); }
.promise__q q { font-family: var(--font-display); font-style: italic; font-size: var(--fs-lg); line-height: 1.4; display: block; }
.promise__q cite { display: block; margin-top: var(--s-3); font-style: normal; font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); font-weight: 600; }

/* ---- interior / exterior photographic panels ---- */
.panels { display: grid; gap: var(--s-4); }
@media (min-width: 840px) { .panels { grid-template-columns: 1fr 1fr; } }
.panel { position: relative; display: block; overflow: hidden; text-decoration: none; color: #fff; background: var(--c-dark); }
.panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1400ms var(--ease-expo), opacity var(--t); }
.panel:hover img { transform: scale(1.045); opacity: .9; }
.panel__body {
  position: relative; z-index: 2; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(var(--s-5), 3vw, var(--s-7));
  background: linear-gradient(180deg, rgba(30,26,25,0) 18%, rgba(30,26,25,.74) 58%, rgba(30,26,25,.95) 100%);
}
.panel__kicker { font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase; font-weight: 600; color: #F1DCD1; }
.panel h3 { font-size: var(--fs-2xl); margin: var(--s-3) 0; color: #fff; }
.panel p { color: rgba(255,255,255,.93); font-size: var(--fs-md); max-width: 40ch; }
.panel__more { display: inline-flex; align-items: center; gap: var(--s-2); margin-top: var(--s-5); font-size: var(--fs-sm); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; border-bottom: 2px solid var(--c-brand); padding-bottom: 3px; align-self: flex-start; transition: gap var(--t-fast), border-color var(--t-fast); }
.panel__more svg { width: 16px; height: 16px; }
.panel:hover .panel__more { gap: var(--s-3); border-color: #fff; }

/* ============================================================
   SIGNATURE DEVICE — the colour change
   ============================================================ */
.compare { margin: 0; }
.compare__frame {
  position: relative; overflow: hidden; aspect-ratio: 16/9;
  border: 1px solid rgba(245,238,223,.24);
}
@media (max-width: 700px) { .compare__frame { aspect-ratio: 4/3; } }
.compare__layer { position: absolute; inset: 0; }
.compare__before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, #6B5266 0%, #5B4658 52%, #493747 100%);
}
.compare__after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(47,42,40,.05) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, #FCF7EC 0%, #F5EEDF 55%, #E9DFC9 100%);
}
.compare__frame::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 11%; z-index: 3;
  background: linear-gradient(180deg, var(--c-trim), #F1E9DA);
  border-top: 1px solid rgba(47,42,40,.24); pointer-events: none;
}
.compare__chip {
  position: absolute; bottom: 15%; left: clamp(var(--s-4), 3vw, var(--s-6)); z-index: 4;
  display: inline-flex; align-items: center; gap: var(--s-3);
  padding: 9px var(--s-4); background: rgba(30,26,25,.88); color: #F5EEDF;
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.compare__chip--after { left: auto; right: clamp(var(--s-4), 3vw, var(--s-6)); }
.compare__dot { width: 14px; height: 14px; flex: none; border: 1px solid rgba(245,238,223,.5); }
.compare__dot--plum { background: var(--c-plum); }
.compare__dot--cream { background: var(--c-bg); }
.compare__seam {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; margin-left: -1.5px;
  background: var(--c-brand); z-index: 6; pointer-events: none;
}
.compare__range {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  width: 100%; height: 56px; margin: 0; z-index: 7;
  -webkit-appearance: none; appearance: none; background: transparent; cursor: ew-resize;
}
.compare__range::-webkit-slider-runnable-track { height: 56px; background: transparent; border: 0; }
.compare__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 48px; height: 48px; margin-top: 2px;
  border-radius: 0; border: 2px solid var(--c-bg); cursor: ew-resize;
  background: var(--c-brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5EEDF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.5 6l-5 6 5 6M14.5 6l5 6-5 6'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
  box-shadow: 0 10px 26px -12px rgba(0,0,0,.8);
}
.compare__range::-moz-range-track { height: 56px; background: transparent; border: 0; }
.compare__range::-moz-range-thumb {
  width: 48px; height: 48px; border-radius: 0; border: 2px solid var(--c-bg); cursor: ew-resize;
  background: var(--c-brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5EEDF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.5 6l-5 6 5 6M14.5 6l5 6-5 6'/%3E%3C/svg%3E") center / 22px 22px no-repeat;
}
.compare__range:focus { outline: none; }
.compare__range:focus-visible { outline: 3px solid var(--c-bg); outline-offset: -3px; }
.compare__label {
  display: block; margin-top: var(--s-4); font-size: var(--fs-sm);
  color: rgba(245,238,223,.84); max-width: 56ch;
}
.compare__cap { margin-top: var(--s-6); }
.compare__cap q { font-family: var(--font-display); font-style: italic; font-size: var(--fs-xl); line-height: 1.42; display: block; }
.compare__cap cite { display: block; margin-top: var(--s-4); font-style: normal; font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: rgba(245,238,223,.84); }
.compare__note { margin-top: var(--s-5); font-size: var(--fs-sm); color: rgba(245,238,223,.75); max-width: 48ch; }

/* ============================================================
   7. THE SWATCH WALL — pick a colour, the wall repaints
   ============================================================ */
.swatch { position: relative; }
.swatch__stage {
  position: relative; overflow: hidden;
  /* width must stay definite: with only min-height set, aspect-ratio resolves the
     WIDTH from the height and blows the stage out of its column. */
  width: 100%; max-width: 100%;
  aspect-ratio: 21/9; min-height: 300px;
  border: 1px solid var(--c-line);
}
@media (max-width: 760px) { .swatch__stage { aspect-ratio: 4/3; min-height: 240px; } }
.swatch__field { position: absolute; inset: 0; background: var(--wall, var(--sw-cream)); }
.swatch__wipe {
  position: absolute; inset: 0; background: var(--wall-next, var(--sw-cream));
  clip-path: inset(0 100% 0 0);
}
.swatch__wipe.is-wiping { clip-path: inset(0 0 0 0); transition: clip-path 900ms var(--ease-expo); }
/* roller texture + trim so it reads as a wall, not a colour chip */
.swatch__tex {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 104px);
  mix-blend-mode: overlay;
}
.swatch__trim {
  position: absolute; left: 0; right: 0; bottom: 0; height: 10%; pointer-events: none;
  background: linear-gradient(180deg, var(--c-trim), #F1E9DA);
  border-top: 1px solid rgba(47,42,40,.22);
}
.swatch__name {
  position: absolute; left: clamp(var(--s-4), 3vw, var(--s-7)); top: clamp(var(--s-4), 3vw, var(--s-6));
  z-index: 3; background: rgba(30,26,25,.86); color: #F5EEDF;
  padding: var(--s-4) var(--s-5); max-width: 22ch;
}
.swatch__name b { display: block; font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1.1; }
.swatch__name span { display: block; margin-top: 5px; font-size: var(--fs-xs); letter-spacing: .13em; text-transform: uppercase; color: rgba(245,238,223,.72); }
.swatch__picker { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); padding: 0; list-style: none; }
.swatch__btn {
  width: 62px; height: 62px; cursor: pointer; position: relative;
  border: 1px solid rgba(47,42,40,.18); background: var(--sw);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.swatch__btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.swatch__btn[aria-pressed="true"] { box-shadow: 0 0 0 2px var(--c-bg), 0 0 0 4px var(--c-dark); }
.swatch__btn::after { content: attr(data-label); position: absolute; left: 0; right: 0; top: calc(100% + 8px); font-family: var(--font-body); font-size: var(--fs-xs); color: var(--c-muted); text-align: center; white-space: nowrap; }
.swatch__picker li { margin-bottom: var(--s-6); }
.swatch__hint { margin-top: var(--s-5); font-size: var(--fs-sm); color: var(--c-muted); max-width: 52ch; }

/* ============================================================
   8. PROCESS — steps joined by a stroke that paints itself
   ============================================================ */
.process { position: relative; }
.process__line { position: absolute; left: 0; right: 0; top: 8px; height: 26px; pointer-events: none; display: none; }
@media (min-width: 1080px) { .process__line { display: block; } }
.process__line svg { width: 100%; height: 100%; }
.steps { display: grid; gap: var(--s-6); position: relative; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); gap: var(--s-7); } }
@media (min-width: 1080px) { .steps { grid-template-columns: repeat(4, 1fr); padding-top: var(--s-7); } }
.step { border-top: 2px solid var(--c-dark); padding-top: var(--s-5); }
@media (min-width: 1080px) { .step { border-top: 0; padding-top: 0; } }
.step__n { display: block; font-family: var(--font-display); font-style: italic; font-size: var(--fs-2xl); line-height: 1; color: var(--c-accent); margin-bottom: var(--s-3); }
.step h3 { font-size: var(--fs-xl); margin-bottom: var(--s-3); }
.step p { color: var(--c-muted); font-size: var(--fs-md); }

/* ============================================================
   9. REVIEWS — one featured, two supporting, Z-axis cascade
   No stock faces: monogram initials only.
   ============================================================ */
.reviews { display: grid; gap: var(--s-5); }
@media (min-width: 900px) { .reviews { grid-template-columns: 1.25fr 1fr; align-items: start; gap: var(--s-6); } }
.review {
  background: var(--c-surface); border: 1px solid var(--c-line);
  padding: clamp(var(--s-5), 3vw, var(--s-7));
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: transform var(--t), box-shadow var(--t);
}
.review__text { font-family: var(--font-display); font-size: var(--fs-lg); line-height: 1.44; }
.review--lead .review__text { font-size: var(--fs-2xl); line-height: 1.3; }
.review--lead { background: var(--c-band); }
.review__by { margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--c-line); display: flex; align-items: center; gap: var(--s-3); font-size: var(--fs-sm); font-weight: 600; color: var(--c-muted); }
.review__mono {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center;
  background: var(--c-brand); color: #fff;
  font-family: var(--font-display); font-size: 1.05rem; line-height: 1;
}
.reviews__stack { display: grid; gap: var(--s-5); }
@media (min-width: 900px) {
  .reviews__stack .review:nth-child(1) { transform: rotate(-.7deg); }
  .reviews__stack .review:nth-child(2) { transform: rotate(.6deg) translateX(var(--s-4)); }
  .reviews__stack .review:hover { transform: rotate(0) translateX(0); box-shadow: var(--shadow-soft); }
}

/* ---- tones / colour advice ---- */
.tones { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(130px, 100%), 1fr)); gap: var(--s-4); list-style: none; padding: 0; margin: 0; }
.tone__chip { display: block; height: 84px; border: 1px solid rgba(47,42,40,.16); }
.tone--cream { background: #F5EEDF; }
.tone--sage  { background: #5F6E56; }
.tone--terra { background: #B3542F; }
.tone--plum  { background: #5B4658; }
.tone__name { display: block; margin-top: var(--s-3); font-family: var(--font-display); font-size: var(--fs-lg); }
.tone__note { display: block; font-size: var(--fs-sm); color: var(--c-muted); }

/* ---- checklists ---- */
.spec { display: grid; gap: var(--s-3); list-style: none; padding: 0; margin: 0; }
.spec li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: var(--fs-md); }
.spec svg { width: 18px; height: 18px; color: var(--c-accent); flex: none; margin-top: 6px; }
.on-dark .spec svg { color: var(--c-brand-ink); }
.on-dark .spec li { color: rgba(255,255,255,.9); }

/* ---- services blocks ---- */
.svc-block { display: grid; gap: clamp(var(--s-6), 4vw, var(--s-9)); align-items: start; }
@media (min-width: 980px) {
  .svc-block { grid-template-columns: 5fr 7fr; }
  .svc-block--flip > :first-child { order: 2; }
}
.svc-detail { display: grid; gap: var(--s-6); margin-top: var(--s-7); }
@media (min-width: 660px) { .svc-detail { grid-template-columns: repeat(2, 1fr); } }
.svc-detail > div { border-top: 1px solid var(--c-line); padding-top: var(--s-4); }
.svc-detail h4 { margin-bottom: var(--s-3); }
.svc-detail p { color: var(--c-muted); font-size: var(--fs-md); }

/* ============================================================
   10. GALLERY — varied ratios, not a uniform stock grid
   ============================================================ */
.bento { display: grid; gap: var(--s-4); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .bento { grid-template-columns: repeat(6, 1fr); } }
.bento .gal { margin: 0; }
@media (min-width: 900px) {
  .bento .gal:nth-child(1) { grid-column: span 4; }
  .bento .gal:nth-child(2) { grid-column: span 2; }
  .bento .gal:nth-child(3) { grid-column: span 2; }
  .bento .gal:nth-child(4) { grid-column: span 2; }
  .bento .gal:nth-child(5) { grid-column: span 2; }
}
.gallery { column-count: 1; column-gap: var(--s-4); }
@media (min-width: 620px) { .gallery { column-count: 2; } }
@media (min-width: 1020px) { .gallery { column-count: 3; } }
.gal {
  display: block; width: 100%; padding: 0; margin: 0 0 var(--s-4); cursor: zoom-in;
  break-inside: avoid; text-align: left; background: var(--c-surface);
  border: 1px solid var(--c-line); overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1200ms var(--ease-expo); }
.bento .gal img { aspect-ratio: 4/3; }
@media (min-width: 900px) { .bento .gal:nth-child(1) img { aspect-ratio: 16/9; } }
.gal__cap { display: block; padding: var(--s-4); font-size: var(--fs-sm); color: var(--c-muted); transition: color var(--t-fast); }
.gal:hover { border-color: var(--c-brand); box-shadow: var(--shadow); }
.gal:hover img { transform: scale(1.04); }
.gal:hover .gal__cap { color: var(--c-text); }

/* ---- page head ---- */
.page-head { background: var(--c-band); padding-block: var(--s-9) var(--s-8); }
.page-head h1 { font-size: var(--fs-4xl); max-width: 19ch; }
.page-head p { margin-top: var(--s-5); font-size: var(--fs-lg); color: var(--c-muted); max-width: 58ch; }
.crumbs { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--s-6); }
.crumbs a { text-decoration: none; border-bottom: 1px solid var(--c-line); }
.crumbs a:hover { border-color: var(--c-accent); color: var(--c-accent); }

/* ---- contact ---- */
.contact-grid { display: grid; gap: clamp(var(--s-7), 5vw, var(--s-9)); align-items: start; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 7fr 5fr; } }
.contact-card { background: var(--c-surface); border: 1px solid var(--c-line); padding: var(--s-6); }
.contact-card + .contact-card { margin-top: var(--s-5); }
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-5); }
.contact-list li { display: flex; gap: var(--s-4); }
.contact-list > li > svg { width: 22px; height: 22px; color: var(--c-accent); flex: none; margin-top: 3px; }
.ct__label { display: block; font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); font-weight: 600; margin-bottom: 2px; }
.ct__value { font-family: var(--font-display); font-size: var(--fs-xl); text-decoration: none; }
a.ct__value:hover { color: var(--c-accent); }
.card-title { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--c-muted); margin-bottom: var(--s-5); }

/* dark contact block on the home page */
.enquire { background: var(--c-dark); color: var(--c-dark-text); }
.enquire h2 { color: var(--c-bg); }
.enquire .lede, .enquire p { color: rgba(245,238,223,.8); }
.enquire .field label { color: var(--c-bg); }
.enquire .field input, .enquire .field textarea, .enquire .field select {
  background: rgba(245,238,223,.06); border-color: rgba(245,238,223,.26); color: var(--c-bg);
}
.enquire .field input::placeholder, .enquire .field textarea::placeholder { color: rgba(245,238,223,.5); }
.enquire .field input:focus, .enquire .field textarea:focus, .enquire .field select:focus { border-color: var(--c-brand); box-shadow: 0 0 0 3px rgba(179,84,47,.35); }
.enquire .form__note { color: rgba(245,238,223,.7); }
.enquire .form__success { background: rgba(179,84,47,.16); border-color: var(--c-brand); color: var(--c-bg); }
.enquire__aside .brushmask { aspect-ratio: 4/5; }

/* ---- vertical ghost wordmark ---- */
.ghost {
  position: absolute; right: -.06em; top: 50%; z-index: 0; pointer-events: none;
  transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl;
  font-family: var(--font-display); font-size: clamp(4rem, 11vw, 10rem);
  line-height: 1; letter-spacing: .06em; color: var(--c-text); opacity: .05;
  user-select: none;
}
@media (max-width: 900px) { .ghost { display: none; } }

/* ---- closing CTA band ---- */
.cta-band { background: var(--c-brand); color: #fff; position: relative; overflow: hidden; }
.cta-band__inner { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-6); }
.cta-band h2 { font-size: var(--fs-3xl); max-width: 20ch; color: #fff; }
.cta-band p { margin-top: var(--s-3); color: #fff; max-width: 46ch; }
.cta-band .btn { --btn-bg: var(--c-dark); --btn-fg: var(--c-bg); border-color: var(--c-dark); }
.cta-band .btn:hover { background: #fff; border-color: #fff; color: var(--c-brand); }
.cta-band .btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.65); }
.cta-band .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--c-brand); }
.cta-band :focus-visible { outline-color: #fff; }

/* ---- sticky mobile call bar ---- */
.callbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: var(--c-brand); border-top: 1px solid rgba(47,42,40,.35); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: var(--s-3); min-height: 58px; color: #fff; text-decoration: none; font-weight: 600; font-size: var(--fs-sm); letter-spacing: .06em; text-transform: uppercase; }
.callbar svg { width: 18px; height: 18px; }
@media (max-width: 720px) {
  .callbar { display: block; }
  body { padding-bottom: 58px; }
}

/* ---- footer touches ---- */
.site-footer { position: relative; overflow: hidden; }
.site-footer .brand { margin-bottom: var(--s-5); color: var(--c-dark-text); }
.footer__note { font-size: var(--fs-sm); color: rgba(245,238,223,.75); max-width: 36ch; }
/* Paint running off the terracotta band above into the dark footer.
   A tiled CSS mask keeps the drips at a natural size at every viewport width —
   stretching one wide SVG turns them into spikes on a phone. */
.footer__drip {
  position: absolute; top: -1px; left: 0; right: 0;
  height: clamp(22px, 3vw, 46px);
  background: var(--c-brand);
  pointer-events: none;
  display: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='64' viewBox='0 0 240 64'%3E%3Cpath d='M0,0H240V8H206C202,8,201,26,196,26C191,26,190,8,186,8H150C146,8,144,52,138,52C132,52,130,8,126,8H86C82,8,81,34,76,34C71,34,70,8,66,8H28C24,8,23,20,19,20C15,20,14,8,10,8H0Z' fill='%23000'/%3E%3C/svg%3E") repeat-x left top / auto 100%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='64' viewBox='0 0 240 64'%3E%3Cpath d='M0,0H240V8H206C202,8,201,26,196,26C191,26,190,8,186,8H150C146,8,144,52,138,52C132,52,130,8,126,8H86C82,8,81,34,76,34C71,34,70,8,66,8H28C24,8,23,20,19,20C15,20,14,8,10,8H0Z' fill='%23000'/%3E%3C/svg%3E") repeat-x left top / auto 100%;
}
/* Without mask support the element would be a solid slab — better to show nothing. */
@supports ((-webkit-mask-image: url('')) or (mask-image: url(''))) {
  .footer__drip { display: block; }
}

/* ============================================================
   REDUCED MOTION — every stroke sits fully drawn, nothing hides
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .draw { stroke-dashoffset: 0 !important; transition: none !important; }
  .drip { transform: scaleY(1) !important; transition: none !important; }
  .swatch__wipe.is-wiping { transition: none !important; }
  .reviews__stack .review { transform: none !important; }
  .gal img, .panel img, .brushmask img { transition: none !important; }
}


/* ---- offscreen SVG definitions (clip paths) ---- */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---- the process connector takes the brand colour ---- */
.process__line svg { color: var(--c-brand); }

/* ---- work-preview header row keeps the link off the baseline of the h2 ---- */
.band-surface .link { margin-bottom: var(--s-2); }
