/* ===========================================================
   Paint Gods — Painting & Decorating
   Chinchilla · Dalby · Miles
   =========================================================== */

:root {
  /* Brand */
  --blue:       #1b97d6;   /* logo blue */
  --blue-deep:  #0f6f9f;
  --blue-soft:  #e8f3fb;

  /* Ink / charcoal (warm neutral) */
  --ink:        #1b1a17;
  --ink-2:      #11100e;
  --ink-soft:   #34322d;

  /* Plaster surfaces */
  --plaster:    #f4efe6;   /* page bg */
  --paper:      #fbf8f2;   /* cards */
  --sand:       #ece3d4;   /* alt section */
  --line:       rgba(27,26,23,0.12);
  --line-2:     rgba(27,26,23,0.07);
  --muted:      #6c675e;

  /* Gold accent for trust/ratings */
  --gold:        #D4A843;
  --gold-dark:   #B8912E;

  /* Brush-stroke motif (baked colours for ::before backgrounds) */
  --brush-accent: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18'%3E%3Cpath d='M2,10 C18,5 34,12 52,8 C70,4 88,12 104,7 C112,5 117,9 118,8 C116,13 104,11 92,13 C70,16 48,11 28,14 C16,16 8,14 2,10 Z' fill='%231b97d6'/%3E%3C/svg%3E");
  --brush-light:  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18'%3E%3Cpath d='M2,10 C18,5 34,12 52,8 C70,4 88,12 104,7 C112,5 117,9 118,8 C116,13 104,11 92,13 C70,16 48,11 28,14 C16,16 8,14 2,10 Z' fill='%23bfe0f5'/%3E%3C/svg%3E");

  /* Accent is tweakable; defaults to logo blue */
  --accent:      var(--blue);
  --accent-deep: var(--blue-deep);
  --accent-soft: var(--blue-soft);
  --on-accent:   #ffffff;

  /* Type */
  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1600px;
  --gut: clamp(20px, 3vw, 52px);

  /* Shared card tokens — keep every card consistent site-wide */
  --card-radius: 10px;
  --card-pad: 30px 28px;
  --card-gap: 18px;
}

/* Accent variants (driven by Tweaks) */
html[data-accent="charcoal"] {
  --accent: #1b1a17;
  --accent-deep: #000000;
  --accent-soft: #ece6db;
  --on-accent: #fbf8f2;
}
html[data-accent="ochre"] {
  --accent: #b6853a;
  --accent-deep: #8a6325;
  --accent-soft: #f4ecdc;
  --on-accent: #1b1a17;
}

/* Heading font variants (Tweaks) */
html[data-head="bricolage"] { --font-head: "Bricolage Grotesque", system-ui, sans-serif; }
html[data-head="schibsted"] { --font-head: "Schibsted Grotesk", system-ui, sans-serif; }

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--plaster);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Faint plaster grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gut);
}

/* Eyebrow / kicker */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .55s ease .1s, transform .55s cubic-bezier(.16,1,.3,1) .1s;
}
.kicker.brush-in::before { opacity: 1; transform: translateX(0); }
.kicker.on-dark { color: #cfe7f6; }
@media (prefers-reduced-motion: reduce) { .kicker::before { opacity: 1; transform: none; } }

/* Section rhythm */
section { position: relative; }
.section-pad { padding-block: clamp(72px, 9vw, 132px); }

.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.62;
  max-width: 58ch;
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: var(--pad-y) 26px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  border-radius: 6px;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: #fbf8f2;
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--ink-2); }
.btn-accent {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost.on-dark { color: #fbf8f2; border-color: rgba(255,255,255,.25); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.btn-lg { --pad-y: 18px; font-size: 16px; padding-inline: 32px; }
.btn .arw { transition: transform .2s ease; }
.btn:hover .arw { transform: translateX(3px); }

/* ===========================================================
   HEADER
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px -6px rgba(20,18,14,.10);
  transition: box-shadow .35s ease;
}

/* Trust top-bar */
.nav-topbar {
  overflow: hidden;
  max-height: 40px;
  border-bottom: 1px solid var(--line-2);
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.site-header.nav-compact .nav-topbar { max-height: 0; opacity: 0; }
.nav-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 40px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
}
.ntb-left { display: inline-flex; align-items: center; gap: 9px; min-width: 0; white-space: nowrap; }
.ntb-stars { color: var(--gold); letter-spacing: 1px; font-size: 12px; flex-shrink: 0; }
.ntb-score { font-family: var(--font-head); font-weight: 800; color: var(--ink); flex-shrink: 0; white-space: nowrap; }
.ntb-text { color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ntb-right { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; white-space: nowrap; }
.ntb-dot { color: var(--line); }
.ntb-right a { color: var(--muted); font-weight: 600; transition: color .15s; }
.ntb-right a:hover { color: var(--accent); }
.ntb-social { display: inline-flex; align-items: center; gap: 8px; margin-left: 4px; }
.ntb-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px; height: 25px;
  border-radius: 50%;
  color: var(--accent);
  border: 1px solid var(--line);
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.ntb-social a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.ntb-social svg { width: 13px; height: 13px; display: block; }

/* Main nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 96px;
  transition: height .4s cubic-bezier(.4,0,.2,1);
}
.site-header.nav-compact .nav { height: 64px; }

/* Brand */
.brand {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  padding: 8px 0;
  min-width: 90px;
}

/* Full circular logo — visible when expanded */
.brand-logo-full {
  height: 80px;
  width: auto;
  display: block;
  opacity: 1;
  transform: scale(1) translateX(0);
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
  position: relative;
  z-index: 2;
}
.site-header.nav-compact .brand-logo-full {
  opacity: 0;
  transform: scale(.82) translateX(-8px);
  pointer-events: none;
}

/* Wordmark — fades in when compact */
.brand-logo-word {
  height: 30px;
  width: auto !important;
  max-width: none !important;
  flex-shrink: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-10px) scale(.93);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity .5s cubic-bezier(.4,0,.2,1) .08s, transform .5s cubic-bezier(.4,0,.2,1) .08s;
}
.site-header.nav-compact .brand-logo-word {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
  pointer-events: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color .18s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .22s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  color: var(--accent-deep);
  background: #fff;
  border: 1.5px solid rgba(27,151,214,.22);
  border-radius: 8px;
  padding: 0 16px;
  height: 50px;
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--accent-soft); border-color: var(--accent); }
.nav-phone svg { color: var(--accent-deep); flex-shrink: 0; }
.np-text { display: flex; flex-direction: column; line-height: 1.15; }
.np-label { font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.np-num { font-size: 15px; font-weight: 800; }
.nav-book {
  height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
}
.nav-book .arw { transition: transform .2s ease; }
.nav-book:hover .arw { transform: translateX(3px); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  border-radius: 6px;
  width: 44px; height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
/* Animate bars into an X when the menu is open */
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Quick-call bar — shows under the nav on tablet/mobile where the
   Call/Book buttons are hidden. Part of the sticky header so it stays reachable. */
.callbar { display: none; }
@media (max-width: 1020px) {
  /* No divider line under the call bar (it's the header's bottom edge here) */
  .site-header { border-bottom: none; }
  .callbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 7px clamp(14px, 4vw, 26px);
    background: var(--accent);
    color: var(--on-accent);
    font-family: var(--font-head);
    border-top: none;
    box-shadow: 0 10px 22px -12px rgba(15,111,159,.55);
    -webkit-tap-highlight-color: transparent;
  }
  .callbar-left { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }

  /* Icon sits in a soft ring with a gentle pulse cue */
  .callbar-ring {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  }
  .callbar-ring::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.5);
    animation: callbar-pulse 2.4s ease-out infinite;
  }
  .callbar svg { width: 15px; height: 15px; }

  .callbar-copy { display: inline-flex; flex-direction: column; min-width: 0; line-height: 1.15; }
  .callbar-label {
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .callbar-tag {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .01em;
    color: rgba(255,255,255,.82);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .callbar-dot { opacity: .55; margin: 0 1px; }

  /* Phone number as the primary, contrasting tap chip */
  .callbar-num {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 9px;
    background: var(--on-accent);
    color: var(--accent-deep);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .01em;
    white-space: nowrap;
    box-shadow: 0 4px 10px -3px rgba(15,17,14,.35);
  }
  .callbar-num svg { width: 13px; height: 13px; flex-shrink: 0; }

  .callbar:active .callbar-num { transform: translateY(1px); }
  .callbar:active { filter: brightness(.97); }
}
@keyframes callbar-pulse {
  0%   { transform: scale(1);   opacity: .7; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .callbar-ring::before { animation: none; }
  .mobile-menu.open, .mobile-menu.open > * { animation: none; }
}
@media (max-width: 380px) {
  .callbar-tag { display: none; }
  .callbar-num { font-size: 14px; padding: 6px 11px; }
  .callbar-left { gap: 9px; }
}

/* Mobile menu drawer */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 90;
  flex-direction: column;
  gap: 2px;
  padding: clamp(16px,3vw,28px) var(--gut);
  background: #ffffff;
  border-top: 1px solid var(--line);
  box-shadow: 0 16px 36px -10px rgba(20,18,14,.20);
}
.mobile-menu.open { display: flex; animation: pg-menu-panel .3s cubic-bezier(.16,1,.3,1) both; }
.mobile-menu a {
  padding: 13px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu .btn { margin-top: 16px; color: #fff !important; }

/* Open animation — panel drops in, links stagger in from the side.
   Uses the same easing as the site-wide reveal for cohesion. */
@keyframes pg-menu-panel {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pg-menu-item {
  from { opacity: 0; transform: translateX(26px); }
  to   { opacity: 1; transform: translateX(0); }
}
.mobile-menu.open > * { animation: pg-menu-item .42s cubic-bezier(.16,1,.3,1) both; }
.mobile-menu.open > *:nth-child(1) { animation-delay: .05s; }
.mobile-menu.open > *:nth-child(2) { animation-delay: .09s; }
.mobile-menu.open > *:nth-child(3) { animation-delay: .13s; }
.mobile-menu.open > *:nth-child(4) { animation-delay: .17s; }
.mobile-menu.open > *:nth-child(5) { animation-delay: .21s; }
.mobile-menu.open > *:nth-child(6) { animation-delay: .25s; }
.mobile-menu.open > *:nth-child(7) { animation-delay: .29s; }

/* ===========================================================
   HERO
   =========================================================== */
/* Hero slides — crossfade slideshow */
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(.4,0,.2,1);
}
.hero-slide.active { opacity: 1; }
.hero-slide image-slot { width: 100%; height: 100%; display: block; }

/* Hero — full-bleed background image */
.hero {
  position: relative;
  min-height: calc(100vh - 148px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg image-slot {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-slide picture { display: block; width: 100%; height: 100%; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top,  rgba(12,10,8,.97) 0%,  rgba(12,10,8,.82) 28%, rgba(12,10,8,.55) 58%, rgba(12,10,8,.28) 100%),
    linear-gradient(to right, rgba(12,10,8,.6) 0%, rgba(12,10,8,.0) 55%);
}
.hero > .wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: clamp(36px, 4vw, 64px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(24px, 3vw, 48px);
  align-items: end;
}
html[data-hero="text"] .hero-grid { grid-template-columns: 1fr; max-width: 860px; }
html[data-hero="text"] .hero-booking { display: none; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  background: rgba(8,7,6,.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.94);
  white-space: nowrap;
}
.hero-eyebrow .he-pin { width: 15px; height: 15px; color: var(--blue); flex-shrink: 0; }
.hero h1 {
  font-size: clamp(30px, 3.4vw, 52px);
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.4), 0 6px 30px rgba(0,0,0,.55);
}
.hero-copy .hero-sub,
.hero-copy .hero-proof,
.hero-copy .hero-trust { text-shadow: 0 1px 2px rgba(0,0,0,.45), 0 4px 22px rgba(0,0,0,.5); }
.hero h1 .acctxt { color: var(--accent); position: relative; display: inline-block; }
/* Hand-painted brush underline */
.brush-underline {
  position: absolute;
  left: -1.5%; bottom: -0.16em;
  width: 103%; height: 0.42em;
  color: var(--gold);
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  transform: scaleX(.5);
  transform-origin: left center;
  transition: opacity .9s ease .5s, transform 1.1s cubic-bezier(.16,1,.3,1) .4s;
}
.brush-underline.brush-in { opacity: 1; transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .brush-underline { opacity: 1; transform: none; } }
.hero-sub {
  margin-top: 18px;
  font-size: clamp(15px, 1.2vw, 17px);
  color: rgba(255,255,255,.76);
  max-width: 46ch;
  line-height: 1.58;
}
.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-trust {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  font-size: 13.5px;
  color: rgba(255,255,255,.58);
}
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.hero-trust .tick {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.hero-trust .tick svg { width: 11px; height: 11px; fill: #fff; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }

/* Hero trust proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hp-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}
.hp-score {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.hp-sub { font-size: 13px; color: rgba(255,255,255,.5); }

/* Hero mobile-only book button */
.hero-book-mobile { display: none; margin-top: 16px; }

/* Hero booking card */
.hero-booking {
  align-self: end;
  display: flex;
  flex-direction: column;
}
.hbook-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 32px 64px -16px rgba(0,0,0,.55);
  overflow: hidden;
  border-radius: 10px;
}
/* Quick blue highlight glow when a "Book" CTA targets the form */
@keyframes book-glow {
  0%   { box-shadow: 0 0 0 0 rgba(27,151,214,0),   0 0 0 0 rgba(27,151,214,0); }
  14%  { box-shadow: 0 0 0 3px rgba(27,151,214,.85), 0 0 36px 10px rgba(27,151,214,.55); }
  100% { box-shadow: 0 0 0 0 rgba(27,151,214,0),   0 0 0 0 rgba(27,151,214,0); }
}
.hbook-card.book-glow { animation: book-glow 1.9s ease-out; }
@media (prefers-reduced-motion: reduce) { .hbook-card.book-glow { animation: none; } }
.hbook-card-head {
  background: var(--ink);
  padding: 20px 28px 18px;
  flex-shrink: 0;
  border-radius: 10px 10px 0 0;
}
.hbook-card-head .kicker { color: var(--blue); }
/* Calendar icon replaces the eyebrow dash on the booking header */
.hbook-card-head .kicker::before { display: none; }
.hbook-card-head .kicker .kicker-cal { width: 17px; height: 17px; flex-shrink: 0; color: var(--blue); }
.hbook-card-head p {
  color: rgba(255,255,255,.48);
  font-size: 13px;
  margin-top: 7px;
  line-height: 1.45;
}
/* Override book-panel when inside hero */
.hbook-card .book-panel {
  display: block;
  background: transparent;
  box-shadow: none;
  min-height: auto;
  flex: 1;
  color: var(--ink);
}
.hbook-card .book-aside { display: none !important; }
.hbook-card .book-main {
  width: 100%;
  padding: 22px 28px 20px;
}
.hbook-card .book-main-head .bmh-t { font-size: 16px; color: var(--blue); }
.hbook-card .book-confirm { padding: 36px 28px; }
.hbook-card .book-actions { padding-top: 20px; }
/* Compact calendar */
.hbook-card .cal-day { font-size: 13px; }
.hbook-card .cal-grid { gap: 3px; }
.hbook-card .cal-hint { font-size: 12px; margin-top: 12px; }
/* Compact time slots — 3 per row */
.hbook-card .slot-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
/* Timeframe / contact-preference options — 2 per row in the hero card */
.hbook-card .slot-grid.opt2 { grid-template-columns: repeat(2, 1fr); }
.hbook-card .slot { padding: 10px 10px; }
.hbook-card .slot .slot-t { font-size: 14px; }
.hbook-card .slot .slot-d { font-size: 11px; }
/* Intro screen sized for the compact hero card */
.hbook-card .book-main--intro { padding-top: 18px; padding-bottom: 18px; }
.hbook-card .bi-title { font-size: 22px; }
.hbook-card .bi-lead { font-size: 13.5px; margin-top: 10px; }
.hbook-card .bi-points { margin-top: 16px; gap: 9px; }
.hbook-card .bi-points li { font-size: 13px; }
.hbook-card .book-intro .btn-accent { margin-top: 20px; }
.hbook-card .bi-meta { margin-top: 12px; }

/* ---- Shorter desktop monitors: scale the hero so the whole thing always fits ---- */
@media (min-width: 1021px) and (max-height: 940px) {
  .hero { min-height: calc(100vh - 152px); }
  .hero > .wrap { padding-block: clamp(18px, 2.4vw, 36px); }
  .hero h1 { font-size: clamp(28px, 3vw, 44px); }
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-sub { margin-top: 14px; }
  .hero-actions { margin-top: 18px; }
  .hero-trust { margin-top: 14px; }
  .hbook-card-head { padding: 15px 26px 13px; }
  .hbook-card-head p { margin-top: 5px; }
  .hbook-card .book-main { padding: 16px 26px 14px; }
  .hbook-card .book-main-head { margin-bottom: 14px; }
  .hbook-card .cal-day { aspect-ratio: auto; height: 36px; }
  .hbook-card .cal-nav { margin-bottom: 12px; }
  .hbook-card .cal-hint { margin-top: 10px; }
  .hbook-card .book-actions { padding-top: 14px; }
  .hbook-card .bi-title { font-size: 20px; }
  .hbook-card .bi-points { margin-top: 13px; gap: 8px; }
  .hbook-card .book-intro .btn-accent { margin-top: 16px; }
}
@media (min-width: 1021px) and (max-height: 800px) {
  .hero { min-height: calc(100vh - 158px); }
  .hero > .wrap { padding-block: 14px; }
  .hero h1 { font-size: clamp(26px, 2.6vw, 38px); }
  .hero-sub { margin-top: 12px; font-size: 14.5px; }
  .hero-actions { margin-top: 14px; }
  .hero-eyebrow { margin-bottom: 12px; }
  .hbook-card-head { padding: 13px 24px 12px; }
  .hbook-card-head p { font-size: 12.5px; }
  .hbook-card .book-main { padding: 14px 24px 12px; }
  .hbook-card .book-main-head { margin-bottom: 10px; }
  .hbook-card .cal-day { height: 31px; font-size: 12.5px; }
  .hbook-card .slot { padding: 8px 9px; }
  .hbook-card .bi-title { font-size: 19px; }
  .hbook-card .bi-lead { font-size: 13px; margin-top: 8px; }
  .hbook-card .bi-points { margin-top: 11px; gap: 7px; }
  .hbook-card .bi-points li { font-size: 12.5px; }
  .hbook-card .book-intro .btn-accent { margin-top: 14px; }
  .hbook-card .bi-meta { margin-top: 10px; }
}
/* Card footer */
.hbook-card-foot {
  flex-shrink: 0;
  padding: 11px 28px;
  background: var(--plaster);
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.hbook-card-foot a {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink);
}
.hbok-card-foot a:hover { color: var(--accent-deep); }
.hbf-sep { color: var(--line); }

/* ===========================================================
   BEFORE / AFTER CAROUSEL
   =========================================================== */
.ba { background: var(--sand); }
.ba-head { margin-bottom: clamp(28px, 4vw, 48px); }

/* Stage */
.ba-stage { position: relative; overflow: hidden; border-radius: 10px; }
/* Slides live in a flex track that slides horizontally between projects */
.ba-track {
  display: flex;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}
.ba-slide { flex: 0 0 100%; min-width: 0; }
/* Non-active slides ease back slightly for depth as they slide away */
.ba-slide:not(.ba-slide--active) { transform: scale(.96); opacity: .5; transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .6s ease; }
.ba-slide.ba-slide--active { transform: none; opacity: 1; transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .6s ease; }
@media (prefers-reduced-motion: reduce) {
  .ba-track { transition: none; }
  .ba-slide:not(.ba-slide--active), .ba-slide.ba-slide--active { transition: none; transform: none; }
}

/* Comparison frame */
.ba-cmp {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
}
@media (max-width: 600px) { .ba-cmp { aspect-ratio: 4 / 3; } }

/* Before / after image layers */
.ba-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ba-layer image-slot,
.ba-layer img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
/* Images must never start a native drag — only the .ba-cmp handles the pointer */
.ba-layer { pointer-events: none; }
/* After layer — clipped from left; JS updates this inline */
.ba-after-layer { clip-path: inset(0 0 0 50%); }

/* Labels */
.ba-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(10,8,6,.72);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 5px 12px;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ba-tag--after { left: auto; right: 18px; }

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.ba-line {
  width: 2.5px;
  flex: 1;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,.45);
}
.ba-knob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}

/* Drag hint overlay */
.ba-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,8,6,.65);
  color: #fff;
  padding: 8px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  transition: opacity .4s ease;
  z-index: 20;
}
.ba-hint.hidden { opacity: 0; }

/* Controls row */
.ba-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  flex-wrap: wrap;
}
.ba-info-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.ba-info-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 5px;
  max-width: 56ch;
}
.ba-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ba-dots { display: flex; gap: 8px; align-items: center; }
/* Mobile: dots on the far left, the two arrows on the far right (edge to edge) */
@media (max-width: 600px) {
  .ba-nav { width: 100%; gap: 10px; }
  .ba-prev { margin-left: auto; }
}
.ba-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(27,26,23,.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.ba-dot.active {
  background: var(--accent);
  transform: scale(1.25);
}
/* Circular nav buttons — same interface as the gallery lightbox, in brand blue */
.ba-arr {
  width: 44px; height: 44px;
  padding: 0;
  border: 1px solid var(--accent);
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  flex-shrink: 0;
}
.ba-arr:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.ba-arr:active { transform: scale(.94); }

/* ===========================================================
   MARQUEE / AREAS STRIP
   =========================================================== */
.strip {
  background: var(--ink);
  color: #d9d4ca;
  padding-block: 17px;
  overflow: hidden;
}
.strip-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 38s linear infinite;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  will-change: transform;
}
/* Each <span> is one full copy. padding-right supplies the seam spacing so the
   copy is self-contained (content + trailing gap). With two identical copies,
   translateX(-50%) lands copy 2 exactly where copy 1 began — seamless at any
   width, on any device. */
.strip-track span { display: inline-flex; align-items: center; gap: 48px; padding-right: 48px; }
.strip-track .sep { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ===========================================================
   SERVICES
   =========================================================== */
.sec-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px 56px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.sec-head h2 { font-size: clamp(30px, 4.2vw, 52px); }
.sec-head .lead { padding-bottom: 5px; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: var(--card-pad);
  position: relative;
  overflow: hidden;
  transition: transform 150ms cubic-bezier(.2,.7,.2,1), box-shadow 150ms ease, border-color 150ms ease, background 150ms ease;
  border-radius: var(--card-radius);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -18px rgba(20,18,14,.26);
  border-color: rgba(27,26,23,.15);
  background: #fff;
}
/* Icon (left) + number tag (top-right), tops aligned — like the process cards */
.svc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}
.svc-ic {
  width: 46px; height: 46px;
  color: var(--accent);
  flex-shrink: 0;
}
.svc-ic svg { width: 100%; height: 100%; display: block; }
.svc-num {
  margin-top: 5px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  white-space: nowrap;
}
.svc-card h3 { font-size: 25px; margin: 0 0 12px; letter-spacing: -0.02em; }
.svc-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }
.svc-card .svc-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tags em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 100px;
}
.svc-card .svc-edge {
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--accent);
  transition: height .3s ease;
}
.svc-card:hover .svc-edge { height: 100%; }

/* ===========================================================
   STANDARD (dark) — proper prep / no shortcuts
   =========================================================== */
.standard {
  background: var(--ink-2);
  color: #ece7dd;
  position: relative;
  overflow: hidden;
}
.standard::after {
  content: "";
  position: absolute;
  inset: 0;
  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='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
.standard .wrap { position: relative; z-index: 1; }
.standard h2 { color: #fff; font-size: clamp(30px, 4.2vw, 54px); }
.standard h2 .acctxt { color: var(--accent); }
.standard .lead { color: rgba(255,255,255,.72); }
.std-grid {
  margin-top: clamp(44px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}
.std-item {
  position: relative;
  top: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  overflow: hidden;
  transition:
    top .22s cubic-bezier(.2,.7,.2,1),
    background .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}
.std-item:hover {
  top: -6px;
  background: rgba(255,255,255,.06);
  border-color: rgba(27,151,214,.40);
  box-shadow: 0 18px 36px -18px rgba(0,0,0,.55);
}
/* Growing left accent line (clipped to the rounded corners by overflow:hidden) */
.std-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--accent);
  pointer-events: none;
  z-index: 1;
  transition: height .4s cubic-bezier(.16,1,.3,1);
}
.std-item:hover::before { height: 100%; }
/* Touch devices: kill the sticky-hover lift and the left accent line that gets stuck on after a tap */
@media (hover: none) {
  .std-item:hover { top: 0; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.09); box-shadow: none; }
  .std-item::before, .std-item:hover::before { display: none; height: 0; }
  .proof-grid .si-ic, .proof-grid .si-stars, .proof-grid .si-logo { margin-left: 0; }
}
.std-item .si-ic {
  width: 40px; height: 40px;
  color: var(--accent);
  margin-bottom: 22px;
}
.std-item h4 { color: #fff; font-size: 19px; margin-bottom: 9px; letter-spacing: -0.01em; }
.std-item p { color: rgba(255,255,255,.6); font-size: 14.5px; line-height: 1.55; }

/* ===========================================================
   WORK / PROJECTS
   =========================================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.work-card { position: relative; }
.work-card image-slot {
  width: 100%;
  height: 340px;
}
.work-card .work-meta { margin-top: 16px; }
.work-card .work-meta h4 { font-size: 19px; letter-spacing: -0.01em; }
.work-card .work-meta .wm-place {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 9px;
}
.work-card .work-meta p { color: var(--ink-soft); font-size: 14.5px; margin-top: 7px; line-height: 1.55; }
.work-card.tall image-slot { height: 716px; }

/* ===========================================================
   PROCESS
   =========================================================== */
.process { background: var(--sand); }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
  counter-reset: step;
  margin-top: clamp(40px, 5vw, 60px);
}
.proc-cta { display: flex; justify-content: center; margin-top: clamp(34px, 4vw, 52px); }
.proc-step {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: var(--card-pad);
  position: relative;
  border-radius: var(--card-radius);
  transition: transform 150ms cubic-bezier(.2,.7,.2,1), box-shadow 150ms ease, background 150ms ease;
}
.proc-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -16px rgba(20,18,14,.22);
  background: #fff;
}
/* Step connector lines */
@media (prefers-reduced-motion: no-preference) {
  .proc-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 48px;
    left: 100%;
    width: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(27,151,214,.1));
    pointer-events: none;
    z-index: 2;
  }
}
/* Tablet / mobile — cards stack into a vertical timeline; the connector
   becomes a vertical line running down the icon column, gap to gap. */
@media (max-width: 1020px) {
  .proc-step:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    top: 100%;
    left: 48px;
    transform: translateX(-50%);
    width: 2px;
    height: var(--card-gap);
    background: linear-gradient(180deg, var(--accent), rgba(27,151,214,.12));
    pointer-events: none;
    z-index: 2;
  }
}
/* Icon (left) + step label (top-right), tops aligned on one row */
.proc-step .ps-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
/* Step icon (Phosphor) — replaces the old numbered circle */
.proc-step .ps-ic {
  width: 40px; height: 40px;
  color: var(--accent);
  flex-shrink: 0;
}
.proc-step .ps-ic svg { width: 100%; height: 100%; display: block; }
/* Small "01 / Step one" label — top-right, aligned to the icon top */
.proc-step .ps-tag {
  margin-top: 3px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  text-align: right;
}
.proc-step .ps-tag b { color: var(--accent); font-weight: 800; }
.proc-step h4 { font-size: 20px; margin-bottom: 10px; letter-spacing: -0.01em; }
.proc-step p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* ===========================================================
   ABOUT / ETHAN
   =========================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.about-media img {
  width: 100%;
  height: clamp(440px, 44vw, 600px);
  object-fit: cover;
  object-position: center top;
  border-radius: 4px;
  display: block;
  box-shadow: 0 30px 60px -34px rgba(20,18,14,.5);
}
.about h2 { font-size: clamp(30px, 4vw, 50px); margin-bottom: 24px; }
.about .lead + .lead { margin-top: 18px; }
.about-sign {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-sign .as-name { font-family: var(--font-head); font-weight: 800; font-size: 18px; }
.about-sign .as-role { font-size: 14px; color: var(--muted); }
.about-quote {
  margin-top: 30px;
  border-left: 3px solid var(--accent);
  padding-left: 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 21px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-ic {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: background .2s, border-color .2s;
}
.faq-ic::before, .faq-ic::after {
  content: ""; position: absolute; background: var(--ink);
  left: 50%; top: 50%; transition: transform .25s ease, background .2s;
}
.faq-ic::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq-ic::after  { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.open .faq-ic { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-ic::before, .faq-item.open .faq-ic::after { background: var(--on-accent); }
.faq-item.open .faq-ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 0 28px; color: var(--ink-soft); font-size: 16px; line-height: 1.62; max-width: 60ch; }

/* ===========================================================
   BOOKING
   =========================================================== */
.booking { background: var(--ink-2); color: #ece7dd; position: relative; overflow: hidden; }
.booking::after {
  content: ""; position: absolute; inset: 0;
  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='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05; pointer-events: none;
}
.booking .wrap { position: relative; z-index: 1; }
.booking .kicker { color: #cfe7f6; }
.book-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 52px); }
.booking h2 { color: #fff; font-size: clamp(30px, 4vw, 52px); }
.booking .book-head .lead { color: rgba(255,255,255,.72); margin-top: 18px; }

.book-panel {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.6);
}
.book-aside {
  background: var(--ink);
  color: #ece7dd;
  padding: 40px 38px;
  display: flex;
  flex-direction: column;
}
.book-aside h3 { color: #fff; font-size: 24px; letter-spacing: -0.02em; }
.book-aside .ba-lead { color: rgba(255,255,255,.62); font-size: 15px; margin-top: 14px; line-height: 1.6; }
.book-steps { margin-top: 36px; display: flex; flex-direction: column; gap: 4px; }
.book-step-ind {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  color: rgba(255,255,255,.45);
  font-size: 15px;
  transition: color .2s;
}
.book-step-ind .bsi-n {
  width: 30px; height: 30px; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  transition: all .2s;
}
.book-step-ind.active { color: #fff; }
.book-step-ind.active .bsi-n { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }
.book-step-ind.done .bsi-n { background: rgba(255,255,255,.16); border-color: transparent; color:#fff; }
.book-aside .ba-foot {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.book-aside .ba-foot a { color: #fff; font-family: var(--font-head); font-weight: 700; }

.book-main { padding: 40px 38px; display: flex; flex-direction: column; }
.book-main-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 22px; }
.book-main-head .bmh-t { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.book-main-head .bmh-step { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Calendar */
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cal-nav .cal-month { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.cal-nav button {
  width: 36px; height: 36px; border: 1px solid var(--line); background: var(--paper);
  border-radius: 3px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.cal-nav button:hover:not(:disabled) { background: var(--accent-soft); border-color: var(--accent); }
.cal-nav button:disabled { opacity: .3; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-dow {
  text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted); padding-bottom: 6px;
}
.cal-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .14s, color .14s, border-color .14s;
}
.cal-day:hover:not(:disabled) { background: var(--accent-soft); border-color: var(--accent); }
.cal-day:disabled { color: rgba(27,26,23,.22); cursor: not-allowed; }
.cal-day.empty { border: none; cursor: default; }
.cal-day.today { font-weight: 800; box-shadow: inset 0 0 0 1px var(--line); }
.cal-day.selected { background: var(--ink); color: #fbf8f2; border-color: var(--ink); font-weight: 700; }
.cal-hint { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }

/* Time slots */
.slot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 4px; }
.slot {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 4px;
  padding: 15px 16px;
  cursor: pointer;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, transform .18s cubic-bezier(.22,.61,.36,1), box-shadow .18s ease;
}
.slot:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(27,26,23,.09); }
.slot:active { transform: translateY(0); box-shadow: 0 3px 9px rgba(27,26,23,.08); }
.slot.selected {
  border-color: var(--ink); background: var(--ink); color: #fbf8f2;
  box-shadow: 0 0 0 3px var(--accent-soft), 0 10px 24px rgba(27,26,23,.16);
}
.slot.selected:hover { transform: translateY(-2px); }
.slot .slot-t { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.slot .slot-d { font-size: 12.5px; opacity: .7; margin-top: 3px; }
.slot.selected .slot-d { opacity: .65; }
.book-selected-date {
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  padding: 13px 16px;
  border-radius: 3px;
  font-size: 14px;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.book-selected-date strong { font-family: var(--font-head); }

/* Details form */
.book-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.book-form .fld { display: flex; flex-direction: column; gap: 7px; }
.book-form .fld.full { grid-column: 1 / -1; }
.book-form label {
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft);
}
.book-form label .req { color: var(--accent-deep); }
.book-form input, .book-form textarea, .book-form select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--plaster);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s, background .15s;
}
.book-form input:focus, .book-form textarea:focus, .book-form select:focus {
  outline: none; border-color: var(--accent); background: var(--paper);
}
.book-form textarea { resize: vertical; min-height: 78px; }
.book-form input.invalid { border-color: #c0392b; background: #fdf3f1; }
.seg { display: flex; gap: 8px; }
.seg button {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--plaster);
  border-radius: 3px;
  padding: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  cursor: pointer; color: var(--ink-soft);
  transition: all .15s;
}
.seg button.on { background: var(--ink); color: #fbf8f2; border-color: var(--ink); }

.book-actions { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 12px; }
.book-actions .spacer { flex: 1; }
.btn-text {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-text:hover { color: var(--ink); }
.book-err { color: #c0392b; font-size: 13px; font-weight: 600; }

/* Confirmation */
.book-confirm { grid-column: 1 / -1; padding: 60px 38px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.book-confirm .bc-ic {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); color: var(--on-accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 26px;
}
.book-confirm h3 { font-size: 30px; letter-spacing: -0.02em; }
.book-confirm p { color: var(--ink-soft); margin-top: 14px; max-width: 44ch; }
.book-summary {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--plaster);
}
.book-summary .bs-cell { padding: 18px 28px; text-align: left; border-right: 1px solid var(--line); }
.book-summary .bs-cell:last-child { border-right: none; }
.book-summary .bs-k { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.book-summary .bs-v { font-family: var(--font-head); font-weight: 700; font-size: 17px; margin-top: 5px; }

/* Intro / start screen */
.book-main--intro { justify-content: center; }
.book-intro { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.bi-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; font-size: 11.5px;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--blue); background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  padding: 6px 12px; border-radius: 999px;
}
.bi-title { font-size: 27px; letter-spacing: -0.02em; margin-top: 16px; line-height: 1.08; }
.bi-lead { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-top: 12px; max-width: 46ch; }
.bi-points { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.bi-points li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink); line-height: 1.4;
}
.bi-points li svg { flex-shrink: 0; margin-top: 1px; color: var(--accent-deep); }
.book-intro .btn-accent { margin-top: 28px; }
.bi-meta { margin-top: 16px; font-size: 12.5px; color: var(--muted); font-weight: 600; }

/* ---------- Step-change entrance animations ---------- */
@keyframes bookFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes bookPop { from { opacity: 0; transform: scale(.55); } to { opacity: 1; transform: scale(1); } }
.book-anim .book-main-head,
.book-anim .book-intro,
.book-anim .cal-hint,
.book-anim .book-actions { animation: bookFadeIn .42s cubic-bezier(.22,.61,.36,1) both; }
.book-anim .book-main-head { animation-delay: 0s; }
.book-anim .cal-hint { animation-delay: .26s; }
.book-anim .book-actions { animation-delay: .14s; }
/* Stagger option cards */
.book-anim .slot { animation: bookFadeIn .4s cubic-bezier(.22,.61,.36,1) both; }
.book-anim .slot-grid .slot:nth-child(1) { animation-delay: .06s; }
.book-anim .slot-grid .slot:nth-child(2) { animation-delay: .12s; }
.book-anim .slot-grid .slot:nth-child(3) { animation-delay: .18s; }
.book-anim .slot-grid .slot:nth-child(4) { animation-delay: .24s; }
/* Stagger detail fields */
.book-anim .book-form .fld { animation: bookFadeIn .4s cubic-bezier(.22,.61,.36,1) both; }
.book-anim .book-form .fld:nth-child(1) { animation-delay: .05s; }
.book-anim .book-form .fld:nth-child(2) { animation-delay: .11s; }
.book-anim .book-form .fld:nth-child(3) { animation-delay: .17s; }
.book-anim .book-form .fld:nth-child(4) { animation-delay: .23s; }
.book-anim .book-form .fld:nth-child(5) { animation-delay: .29s; }
/* Intro: stagger its inner blocks */
.book-anim .book-intro > * { animation: bookFadeIn .44s cubic-bezier(.22,.61,.36,1) both; }
.book-anim .book-intro .bi-badge { animation-delay: .02s; }
.book-anim .book-intro .bi-title { animation-delay: .08s; }
.book-anim .book-intro .bi-lead { animation-delay: .14s; }
.book-anim .book-intro .bi-points { animation-delay: .20s; }
.book-anim .book-intro .btn-accent { animation-delay: .28s; }
.book-anim .book-intro .bi-meta { animation-delay: .34s; }
/* Confirmation */
.book-anim .book-confirm .bc-ic { animation: bookPop .5s cubic-bezier(.34,1.4,.5,1) both; }
.book-anim .book-confirm h3 { animation: bookFadeIn .44s cubic-bezier(.22,.61,.36,1) both; animation-delay: .12s; }
.book-anim .book-confirm p { animation: bookFadeIn .44s cubic-bezier(.22,.61,.36,1) both; animation-delay: .2s; }
.book-anim .book-confirm .book-summary { animation: bookFadeIn .44s cubic-bezier(.22,.61,.36,1) both; animation-delay: .28s; }
.book-anim .book-confirm .btn { animation: bookFadeIn .44s cubic-bezier(.22,.61,.36,1) both; animation-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  .book-anim, .book-anim *,
  .slot, .slot:hover, .slot:active { animation: none !important; transition: none !important; }
  .slot:hover, .slot.selected:hover { transform: none; }
}

/* ===========================================================
   BENTO WORK GALLERY
   =========================================================== */
.wb-slideshow {
  position: relative;
  overflow: hidden;
}
.wb-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
}
.wb-page {
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  /* row heights are derived from per-tile aspect-ratio */
}
.wb-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  background: var(--ink);
  border-radius: 8px;
}
.wb-item image-slot,
.wb-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}
.wb-item:hover image-slot,
.wb-item:focus-visible image-slot,
.wb-item:hover img,
.wb-item:focus-visible img { transform: scale(1.065); }
.wb-ov {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
  pointer-events: none;
}
.wb-ov svg { opacity: 0; transition: opacity .25s; }
.wb-item:hover .wb-ov,
.wb-item:focus-visible .wb-ov { background: rgba(0,0,0,.28); }
.wb-item:hover .wb-ov svg,
.wb-item:focus-visible .wb-ov svg { opacity: 1; }

/* Page A — two on top, three on the bottom */
.wb-page--a > .wb-item:nth-child(1) { grid-column: 1/4; grid-row: 1; aspect-ratio: 16/9; }
.wb-page--a > .wb-item:nth-child(2) { grid-column: 4/7; grid-row: 1; aspect-ratio: 16/9; }
.wb-page--a > .wb-item:nth-child(3) { grid-column: 1/3; grid-row: 2; aspect-ratio: 4/3; }
.wb-page--a > .wb-item:nth-child(4) { grid-column: 3/5; grid-row: 2; aspect-ratio: 4/3; }
.wb-page--a > .wb-item:nth-child(5) { grid-column: 5/7; grid-row: 2; aspect-ratio: 4/3; }
/* Page B — three on top, two on the bottom (flipped) */
.wb-page--b > .wb-item:nth-child(1) { grid-column: 1/3; grid-row: 1; aspect-ratio: 4/3; }
.wb-page--b > .wb-item:nth-child(2) { grid-column: 3/5; grid-row: 1; aspect-ratio: 4/3; }
.wb-page--b > .wb-item:nth-child(3) { grid-column: 5/7; grid-row: 1; aspect-ratio: 4/3; }
.wb-page--b > .wb-item:nth-child(4) { grid-column: 1/4; grid-row: 2; aspect-ratio: 16/9; }
.wb-page--b > .wb-item:nth-child(5) { grid-column: 4/7; grid-row: 2; aspect-ratio: 16/9; }

/* Arrows */
.wb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.wb-arrow:hover { background: #fff; box-shadow: 0 8px 26px rgba(0,0,0,0.24); }
.wb-arrow:active { transform: translateY(-50%) scale(.94); }
.wb-arrow--prev { left: 14px; }
.wb-arrow--next { right: 14px; }

/* Dots */
.wb-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 22px;
}
.wb-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background .25s, width .25s;
}
.wb-dot.is-active { background: var(--accent); width: 26px; border-radius: 5px; }

/* Responsive slideshow */
@media (max-width: 760px) {
  .wb-page { grid-template-columns: repeat(2, 1fr); }
  .wb-page > .wb-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 4/3 !important; }
  .wb-page > .wb-item:first-child { grid-column: span 2 !important; aspect-ratio: 16/9 !important; }
  .wb-arrow { width: 40px; height: 40px; }
  .wb-arrow--prev { left: 8px; }
  .wb-arrow--next { right: 8px; }
}

/* ===========================================================
   GALLERY LIGHTBOX
   =========================================================== */
.pg-lb {
  position: fixed;
  inset: 0;
  z-index: 99999;
  flex-direction: column;
  background: rgba(11,10,8,.97);
  opacity: 0;
  transition: opacity .3s ease;
}
.pg-lb--vis { opacity: 1; }

.pg-lb-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pg-lb-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.pg-lb-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255,255,255,.88);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pg-lb-desc {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pg-lb-topright { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.pg-lb-count {
  font-family: var(--font-head);
  font-size: 13px;
  color: rgba(255,255,255,.3);
  font-weight: 600;
  letter-spacing: .06em;
}
.pg-lb-close {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.45);
  border-radius: 3px;
  transition: color .18s, background .18s;
}
.pg-lb-close:hover { color: #fff; background: rgba(255,255,255,.08); }

.pg-lb-stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 72px;
  min-height: 0;
}
.pg-lb-imgwrap {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-lb-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 2px;
  display: block;
}
.pg-lb-empty {
  color: rgba(255,255,255,.3);
  font-size: 15px;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 40px;
  max-width: 36ch;
  line-height: 1.55;
}
@keyframes pgLbFadeIn {
  from { opacity: 0; transform: scale(.98); }
  to   { opacity: 1; transform: scale(1); }
}
.pg-lb-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 10;
  flex-shrink: 0;
}
.pg-lb-nav:hover { background: var(--accent); border-color: var(--accent); }
.pg-lb-nav:active { transform: translateY(-50%) scale(.94); }
.pg-lb-prev { left: 18px; }
.pg-lb-next { right: 18px; }

.pg-lb-film-wrap {
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.55);
}
.pg-lb-film {
  display: flex;
  gap: 4px;
  padding: 10px 16px;
  overflow-x: auto;
  justify-content: safe center;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.15) transparent;
  -webkit-overflow-scrolling: touch;
}
.pg-lb-thumb {
  flex-shrink: 0;
  width: 88px; height: 58px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 2px;
  opacity: .38;
  cursor: pointer;
  padding: 0;
  background: rgba(255,255,255,.06);
  transition: opacity .2s, border-color .2s;
}
.pg-lb-thumb:hover { opacity: .72; }
.pg-lb-thumb--on { border-color: var(--accent); opacity: 1; }
.pg-lb-ti { width: 100%; height: 100%; }
.pg-lb-ti img { width: 100%; height: 100%; object-fit: cover; display: block; user-select: none; }

@media (max-width: 760px) {
  .pg-lb-stage { padding: 12px 56px; }
  .pg-lb-prev { left: 8px; }
  .pg-lb-next { right: 8px; }
  .pg-lb-thumb { width: 64px; height: 42px; }
}
/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials { background: var(--sand); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  margin-top: clamp(36px, 4vw, 52px);
}
.testi-grid--google {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 150ms cubic-bezier(.2,.7,.2,1), box-shadow 150ms ease, background 150ms ease;
}
.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -18px rgba(20,18,14,.22);
  background: #fff;
}
.google-review-card {
  padding: clamp(28px, 3.3vw, 38px);
}
.google-review-card .tc-quote {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
}
.tc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 19px;
  line-height: 1;
}
.tc-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.tc-topline .tc-stars { margin-bottom: 0; }
.tc-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(20,18,14,.10);
  background: #fff;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px -16px rgba(20,18,14,.35);
}
.tc-google-badge .tb-glogo { width: 15px; height: 15px; color: #4285f4; }
.tc-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}
.tc-client {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #0b5f91);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  box-shadow: 0 10px 22px -14px rgba(20,18,14,.45);
}
/* Divider only when photos follow the client block — no dangling line otherwise */
.tc-client:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.tc-name { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.tc-loc  { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }
.tc-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 16px;
  margin-inline: -28px;
}
.tc-photo-wrap { position: relative; overflow: hidden; }
.tc-photo-wrap image-slot { width: 100%; height: 120px; display: block; }
.tc-photo-tag {
  position: absolute;
  bottom: 8px; left: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10,8,6,.62);
  padding: 3px 8px;
  border-radius: 3px;
  pointer-events: none;
}

.review-cta {
  margin-top: clamp(22px, 3vw, 32px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.review-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 6px;
  background: var(--ink-2);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 16px 30px -20px rgba(20,18,14,.55);
  transition: transform 150ms cubic-bezier(.2,.7,.2,1), background 150ms ease, box-shadow 150ms ease;
}
.review-cta-btn .tb-glogo { width: 17px; height: 17px; color: #fff; }
.review-cta-btn:hover {
  transform: translateY(-2px);
  background: var(--accent);
  box-shadow: 0 18px 34px -20px rgba(27,151,214,.65);
}
@media (max-width: 700px) {
  .review-cta { align-items: stretch; }
  .review-cta-btn { width: 100%; }
}

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .testi-grid--google { grid-template-columns: 1fr; } }
@media (max-width: 560px)  { .testi-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   LOCATION / SERVICE AREAS
   =========================================================== */
.locations {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.locations::after {
  content: "";
  position: absolute;
  inset: 0;
  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='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}
.locations .wrap { position: relative; z-index: 1; }
.locations h2 { color: #fff; }
.locations .lead { color: rgba(255,255,255,.62); }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: clamp(36px, 4vw, 52px);
}
.loc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  padding: 26px 20px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 150ms cubic-bezier(.2,.7,.2,1), background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.loc-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.55);
}
.loc-hq {
  border-color: rgba(27,151,214,.38);
  background: rgba(27,151,214,.06);
}
.loc-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 10px 10px 0 0;
}
.loc-ic { color: var(--accent); margin-bottom: 14px; }
.loc-card h3 {
  color: #fff;
  font-size: clamp(17px, 1.8vw, 21px);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.loc-region {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-bottom: 14px;
}
.loc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.loc-tags span {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 3px 9px;
}
.loc-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.55; }
@media (max-width: 1100px) { .loc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px)  { .loc-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   SITE FOOTER
   =========================================================== */
.site-footer { background: var(--ink-2); color: #b8b2a6; padding-block: clamp(56px, 6vw, 84px) 36px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { min-width: 0; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; max-width: 30ch; color: rgba(255,255,255,.55); }
.footer-social { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--accent);
  border: 1px solid rgba(255,255,255,.14);
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.footer-social a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 17px; height: 17px; display: block; }
.footer-col h5 {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
.footer-col h5::before {
  content: ""; width: 18px; height: 2px; border-radius: 2px;
  background: var(--accent); flex-shrink: 0;
}
/* Generic footer link/text rule — exclude the contact items and the button so
   they keep their own layout (the :not()s here add specificity, so anything
   that must override them needs to match or exclude too). */
.footer-col a:not(.footer-book):not(.fc-item), .footer-col p:not(.fc-item) { display: block; font-size: 14.5px; color: rgba(255,255,255,.6); padding: 6px 0; }
.footer-col a:not(.footer-book):not(.fc-item) { transition: color .18s ease; }
.footer-col a:not(.footer-book):not(.fc-item):hover { color: #fff; }

/* Contact column — fixed icon column so every icon + text line up perfectly */
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-contact .fc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 6px 0;
  font-size: 14.5px;
  line-height: 1.3;
  color: rgba(255,255,255,.6);
}
.footer-contact .fc-ic {
  flex: 0 0 20px;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.footer-contact .fc-ic svg { width: 18px; height: 18px; display: block; fill: currentColor; }
.footer-contact .fc-txt { min-width: 0; }
/* Email/phone links brighten the text on hover (icon stays accent) */
.footer-contact a.fc-item { transition: color .18s ease; }
.footer-contact a.fc-item:hover .fc-txt { color: #fff; }
/* Phone — emphasised but same size as the other rows */
.footer-contact .fc-item--phone { font-family: var(--font-head); font-weight: 800; }
.footer-contact .fc-item--phone .fc-txt { color: var(--accent); }
/* Book a quote — identical to the header button (.nav-book) */
.footer-book {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 24px;
  width: auto;
  height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  align-self: flex-start;
}

/* Footer certifications / trust strip, using the same proof marks as the hero trust bar */
.footer-trust {
  display: grid;
  grid-template-columns: auto auto minmax(240px, 1fr);
  align-items: center;
  gap: 18px clamp(28px, 4vw, 52px);
  margin-top: clamp(30px, 3.5vw, 46px);
}
.footer-trust .footer-trust-item {
  justify-content: flex-start;
  padding-inline: 0;
}
.footer-trust .footer-trust-item + .footer-trust-item {
  padding-left: clamp(24px, 3vw, 40px);
  border-left: 1px solid rgba(255,255,255,.12);
}
.footer-trust .tb-qbcc { height: 42px; }
.footer-trust .c5-laurel { height: 44px; }
.footer-trust .c5-stars { font-size: 14px; }
.footer-trust .c5-title { font-size: 16px; }
.footer-trust .c5-sub { font-size: 10.5px; }
.ft-trust-copy { color: rgba(255,255,255,.4); font-size: 13px; line-height: 1.6; max-width: 340px; margin-left: auto; }
@media (max-width: 1020px) {
  .footer-trust { grid-template-columns: auto auto; }
  .ft-trust-copy { grid-column: 1 / -1; margin-left: 0; max-width: 520px; }
}
@media (max-width: 620px) {
  .footer-trust {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .footer-trust .footer-trust-item {
    justify-content: center;
    width: 100%;
    padding: 14px 0;
  }
  .footer-trust .footer-trust-item + .footer-trust-item {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .footer-trust .tb-item--qbcc {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-trust .tb-qbcc { height: 38px; }
  .footer-trust .c5-laurel { height: 38px; }
  .footer-trust .c5-title { font-size: 14px; }
  .footer-trust .c5-sub { font-size: 10px; }
  .ft-trust-copy {
    padding-top: 14px;
    margin-inline: auto;
    text-align: center;
    max-width: 300px;
    font-size: 12.5px;
    line-height: 1.55;
  }
}

.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px;
  padding-top: 28px; font-size: 13px; color: rgba(255,255,255,.4);
}
.footer-bottom .fb-left { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom .fb-zelexis { color: rgba(255,255,255,.55); font-weight: 600; transition: color .18s ease; }
.footer-bottom .fb-zelexis:hover { color: var(--accent); }
.footer-bottom .fb-tags { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
/* Accent "/" separators echo the scrolling brand strip */
.footer-bottom .fb-tags span { display: inline-flex; align-items: center; gap: 14px; }
.footer-bottom .fb-tags span:not(:last-child)::after {
  content: "/"; color: var(--accent); opacity: .7; font-weight: 700;
}
/* Drop the location/category tag list on mobile — keeps the bottom bar clean */
@media (max-width: 640px) { .footer-bottom .fb-tags { display: none; } }

/* ===========================================================
   REVEAL ANIMATION + STAGGER
   =========================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.75s cubic-bezier(.16,1,.3,1),
      transform 0.75s cubic-bezier(.16,1,.3,1);
    transition-delay: var(--reveal-delay, 0ms);
  }
  .reveal.in { opacity: 1; transform: none; }

  /* Stagger delays — left-to-right for card grids */
  .svc-grid > .reveal:nth-child(1),
  .proc-grid > .reveal:nth-child(1),
  .testi-grid > .reveal:nth-child(1),
  .loc-grid > .reveal:nth-child(1)  { --reveal-delay: 0ms; }

  .svc-grid > .reveal:nth-child(2),
  .proc-grid > .reveal:nth-child(2),
  .testi-grid > .reveal:nth-child(2),
  .loc-grid > .reveal:nth-child(2)  { --reveal-delay: 90ms; }

  .svc-grid > .reveal:nth-child(3),
  .proc-grid > .reveal:nth-child(3),
  .testi-grid > .reveal:nth-child(3),
  .loc-grid > .reveal:nth-child(3)  { --reveal-delay: 180ms; }

  .svc-grid > .reveal:nth-child(4),
  .proc-grid > .reveal:nth-child(4),
  .loc-grid > .reveal:nth-child(4)  { --reveal-delay: 270ms; }

  .svc-grid > .reveal:nth-child(5),
  .loc-grid > .reveal:nth-child(5)  { --reveal-delay: 360ms; }

  .svc-grid > .reveal:nth-child(6)  { --reveal-delay: 450ms; }

  /* Section headings — slight upward entry, no delay */
  .sec-head .kicker { transition-delay: 0ms; }
  .sec-head h2      { transition-delay: 60ms; }
  .sec-head .lead   { transition-delay: 140ms; }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1020px) {
  .hero { min-height: 0; }
  .hero > .wrap { justify-content: flex-end; padding-block: clamp(48px, 9vw, 72px); }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-book-mobile { display: none; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .std-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.tall { grid-column: span 2; }
  .work-card.tall image-slot { height: 340px; }
  .proc-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ntb-right { display: none; }
  /* Collapse the desktop nav to the hamburger before the links can overflow
     or slide behind the logo */
  .nav-links, .nav-phone, .nav-book { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { margin-left: auto; }
  .nav { gap: 16px; }
}
@media (max-width: 760px) {
  .nav-topbar { display: none; }
  .nav { height: 72px; gap: 16px; }
  .site-header.nav-compact .nav { height: 60px; }
  .brand-logo-full { height: 56px; }
  .brand-logo-word { height: 26px; }
  .sec-head { grid-template-columns: 1fr; align-items: start; }
  .svc-grid { grid-template-columns: 1fr; }
  .book-panel { grid-template-columns: 1fr; }
  .book-aside { display: none; }
  .book-form { grid-template-columns: 1fr; }
  .book-summary { grid-template-columns: 1fr; }
  .book-summary .bs-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero-badge { left: 12px; }

  /* Hero — full-screen photo with the copy PINNED to the bottom of the frame
     so the eyebrow, heading, buttons and trust row are always visible on any
     phone (svh = visible viewport, so the browser address bar can't cut it off).
     The booking form flows in below the first screen. */
  /* --hh = the sticky header height (nav + call bar) so the first screen fills
     exactly the area below it; tweak this one value if the header height changes. */
  .hero {
    --hh: 122px;
    min-height: calc(100vh - var(--hh));
    min-height: calc(100svh - var(--hh));
    display: block; overflow: hidden; background: #0b0a08;
  }
  .hero-bg, .hero-scrim {
    position: absolute; inset: 0 0 auto 0;
    height: calc(100vh - var(--hh));
    height: calc(100svh - var(--hh));
  }
  .hero-scrim {
    background: linear-gradient(to top,
      rgba(11,10,8,.97) 0%,
      rgba(11,10,8,.88) 16%,
      rgba(11,10,8,.55) 44%,
      rgba(11,10,8,.20) 72%,
      rgba(11,10,8,.04) 100%);
  }
  .hero > .wrap { display: block; flex: none; padding: 0; }
  .hero-grid { display: block; }
  .hero-copy {
    position: relative; z-index: 2;
    box-sizing: border-box;
    min-height: calc(100vh - var(--hh));
    min-height: calc(100svh - var(--hh));
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 70px var(--gut) calc(26px + env(safe-area-inset-bottom));
  }
  .hero-booking { position: relative; z-index: 2; margin-top: 0; padding: 30px var(--gut) 44px; align-self: stretch; }
  .hbook-card { box-shadow: 0 24px 60px -24px rgba(0,0,0,.7); }
  .hero h1 { font-size: clamp(27px, 8vw, 37px); }
  .hero-eyebrow { font-size: 11px; letter-spacing: .14em; margin-bottom: 13px; }
  .hero-sub { font-size: 13.5px; margin-top: 11px; max-width: 46ch; }
  .hero-proof { margin-top: 13px; transform: scale(.92); transform-origin: left; }
  .hero-actions { margin-top: 16px; }
  .hero-actions .btn { --pad-y: 13px; font-size: 14px; padding-inline: 18px; }
  .hero-trust { margin-top: 14px; font-size: 12px; gap: 7px 16px; }
}
@media (max-width: 460px) {
  .std-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.tall { grid-column: auto; }
  .proc-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   GLOBAL POLISH
   =========================================================== */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; touch-action: manipulation; }
html { scroll-padding-top: 80px; }

/* ===========================================================
   CTA — uploadable image background + dark overlay
   =========================================================== */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-2);
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.cta-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(12,10,8,.94) 0%, rgba(12,10,8,.8) 42%, rgba(12,10,8,.72) 100%),
    radial-gradient(130% 120% at 50% 8%, rgba(27,151,214,.20) 0%, rgba(12,10,8,0) 56%);
}
.cta > .wrap { position: relative; z-index: 2; }
.cta-inner {
  max-width: 780px; margin: 0 auto; text-align: center;
  padding-block: clamp(84px, 11vw, 156px);
}
.cta-inner .kicker { justify-content: center; }
.cta-title {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05; letter-spacing: -0.025em;
  margin: 20px 0 0;
}
.cta-title .acctxt { position: relative; white-space: nowrap; color: #fff; }
.cta-sub {
  margin: 26px auto 0; max-width: 54ch;
  font-size: clamp(16px, 1.3vw, 18px);
  color: rgba(255,255,255,.76); line-height: 1.62;
}
.cta-sub .cta-em { color: #fff; font-weight: 600; }
.cta-actions {
  margin-top: 36px; display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
@media (max-width: 560px) {
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

/* ===========================================================
   ENQUIRY — 2-panel contact: info cards (left) + form (right)
   =========================================================== */
.enquiry {
  background: var(--ink-2);
  color: #ece7dd;
  position: relative;
}
.enquiry .wrap { position: relative; z-index: 1; }
.enquiry h2 { color: #fff; }
.enquiry .lead { color: rgba(255,255,255,.72); }
.enq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(18px, 2.4vw, 32px);
  align-items: start;
}
.enq-info { display: flex; flex-direction: column; gap: var(--card-gap); }
.enq-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--card-radius);
  padding: 24px 26px;
  text-decoration: none;
  position: relative;
  top: 0;
  transition: top .22s cubic-bezier(.2,.7,.2,1), border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
a.enq-card:hover {
  top: -4px;
  background: rgba(255,255,255,.06);
  border-color: rgba(27,151,214,.40);
  box-shadow: 0 18px 36px -18px rgba(0,0,0,.55);
}
.enq-ic {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--card-radius);
  background: rgba(27,151,214,.15);
  color: var(--accent);
}
.enq-ic svg { width: 26px; height: 26px; display: block; }
.enq-ct { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.enq-lbl {
  font-family: var(--font-head);
  font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.enq-ct strong { color: #fff; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; word-break: break-word; }
.enq-ct small { color: rgba(255,255,255,.5); font-size: 13px; }

.enq-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--card-radius);
  padding: clamp(24px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 14px;
}
.enq-botcheck { position: absolute; left: -9999px; }
.enq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.enq-field { display: flex; flex-direction: column; gap: 7px; }
.enq-field > span {
  font-family: var(--font-head);
  font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.7);
}
.enq-field input, .enq-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  background: rgba(255,255,255,.05);
  color: #fff;
  width: 100%;
  transition: border-color .15s, background .15s;
}
.enq-field input::placeholder, .enq-field textarea::placeholder { color: rgba(255,255,255,.38); }
.enq-field input:focus, .enq-field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,.08);
}
.enq-field textarea { resize: vertical; min-height: 96px; }
.enq-submit { margin-top: 4px; align-self: flex-start; }
.enq-status { font-size: 14px; margin: 2px 0 0; min-height: 1px; }
.enq-status.ok { color: #7cc6ee; font-weight: 600; }
.enq-status.err { color: #ff7a6e; font-weight: 600; }

@media (max-width: 900px) {
  .enq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .enq-row { grid-template-columns: 1fr; }
  .enq-card { padding: 20px; gap: 14px; }
  .enq-submit { align-self: stretch; text-align: center; justify-content: center; }
}

/* ===========================================================
   UNIFIED HOVER LIFT — cards lift on the y-axis with a blue
   accent edge on hover.
   The cards also carry .reveal, whose `.reveal.in { transform:none }`
   (and transform-only transition) clobbers a transform-based hover.
   So the lift is driven by `top` instead — independent of transform —
   and the transition is restored here (higher specificity than
   .reveal) with the entrance timing + stagger delay preserved on
   opacity/transform, and a snappy no-delay curve for the hover props.
   =========================================================== */
.reveal.svc-card,
.reveal.testi-card {
  position: relative;
  top: 0;
  transition:
    opacity 0.75s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    top .22s cubic-bezier(.2,.7,.2,1),
    box-shadow .22s ease,
    border-color .22s ease,
    background .22s ease;
}
.reveal.svc-card:hover,
.reveal.testi-card:hover {
  top: -6px;
  background: #fff;
}
.reveal.svc-card:hover {
  border-color: rgba(27,151,214,.40);
  box-shadow: 0 22px 44px -18px rgba(20,18,14,.26);
}
.reveal.testi-card:hover {
  box-shadow: 0 22px 44px -18px rgba(20,18,14,.22);
}
/* Blue accent edge fades in on hover */
.svc-card::after,
.testi-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  box-shadow: inset 0 0 0 1px rgba(27,151,214,.30);
  transition: opacity .25s ease;
}
.svc-card:hover::after,
.testi-card:hover::after { opacity: 1; }

/* How it works — same top-based lift, with a growing left accent line.
   (.proc-step already uses ::after for the step connector dash, so the
   left line lives on ::before.) */
.reveal.proc-step {
  top: 0;
  transition:
    opacity 0.75s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(.16,1,.3,1) var(--reveal-delay, 0ms),
    top .22s cubic-bezier(.2,.7,.2,1),
    box-shadow .22s ease,
    background .22s ease;
}
.reveal.proc-step:hover {
  top: -6px;
  background: #fff;
  box-shadow: 0 18px 36px -16px rgba(20,18,14,.22);
}
.proc-step::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 0;
  background: var(--accent);
  border-radius: var(--card-radius) 0 0 var(--card-radius);
  pointer-events: none;
  z-index: 1;
  transition: height .4s cubic-bezier(.16,1,.3,1);
}
.proc-step:hover::before { height: 100%; }

/* ===========================================================
   REELS — vertical video clips, loop + tap for full screen
   Dark section, matching "The Paint Gods standard"
   =========================================================== */
.reels {
  background: var(--ink-2);
  color: #ece7dd;
  position: relative;
  overflow: hidden;
}
.reels::after {
  content: "";
  position: absolute;
  inset: 0;
  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='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
.reels .wrap { position: relative; z-index: 1; }
.reels h2 { color: #fff; }
.reels .lead { color: rgba(255,255,255,.72); }
.reel-wrap { max-width: 860px; margin: 0 auto; }
.reel-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.reel {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  background: var(--ink);
  aspect-ratio: 9 / 16;
  outline: none;
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: 16px;
  box-shadow: 0 18px 44px -18px rgba(0,0,0,0.65);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.reel:hover,
.reel:focus-visible {
  box-shadow: 0 22px 54px -18px rgba(0,0,0,0.75), 0 0 0 4px rgba(27,151,214,0.32);
}
.reel-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.2,1), opacity .55s ease;
}
/* crossfade the loop: fade out the last moment, fade back in from the start */
.reel-vid.is-looping { opacity: 0; }
.reel:hover .reel-vid,
.reel:focus-visible .reel-vid { transform: scale(1.05); }
/* Dark hint overlay — keeps the loop visible but signals "tap to play" */
.reel-ov {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(12,11,9,0.45), rgba(12,11,9,0.18) 45%, rgba(12,11,9,0.30));
  transition: background .3s;
  pointer-events: none;
}
.reel:hover .reel-ov,
.reel:focus-visible .reel-ov { background: linear-gradient(to top, rgba(12,11,9,0.34), rgba(12,11,9,0.10) 45%, rgba(12,11,9,0.22)); }
.reel-play {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(15,111,159,0.55), 0 0 0 6px rgba(255,255,255,0.10);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.reel-play svg { display: block; } /* triangle is already optically centred in its viewBox */
.reel:hover .reel-play,
.reel:focus-visible .reel-play { transform: scale(1.09); background: var(--accent-deep); }

/* Carousel controls — dots + arrows, shown on mobile only (bottom-right arrows) */
.reel-controls { display: none; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; }
.reel-dots { display: flex; gap: 9px; }
.reel-dot {
  width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.22); cursor: pointer; transition: background .25s, width .25s;
}
.reel-dot.is-active { background: var(--accent); width: 26px; border-radius: 5px; }
.reel-nav { display: flex; gap: 10px; }
.reel-nav .ba-arr { width: 42px; height: 42px; }

/* Fullscreen viewer */
.reel-fs {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,9,8,0.94);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s ease, visibility .32s ease;
}
.reel-fs.open { opacity: 1; visibility: visible; }
.reel-fs-vid {
  height: min(92vh, 92vw * 16 / 9);
  max-width: 92vw;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: 2px solid var(--blue);
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: scale(.95);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.reel-fs.open .reel-fs-vid { transform: scale(1); }
.reel-fs-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.reel-fs-close:hover { background: rgba(255,255,255,0.26); }

/* Up-close split — videos left, copy right */
.reels-split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.reels-media { grid-column: 1; }
.reels-copy { grid-column: 2; }
.reels-media .reel-wrap { max-width: none; margin: 0; }
.reels-media .reel-row { gap: 16px; }
.reels-copy h2 { color: #fff; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 20px; }
.reels-copy .lead { color: rgba(255,255,255,.74); }
.reels-copy-sub { color: rgba(255,255,255,.5); font-size: 14px; margin-top: 16px; }

/* Certified & trusted — head + card row, matching the Paint Gods Standard section */
.proof-block {
  margin-top: clamp(60px, 8vw, 104px);
  padding-top: clamp(52px, 7vw, 92px);
  border-top: 1px solid rgba(255,255,255,.10);
}
.proof-grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
/* Proof cards — same trust elements as the bar (white QBCC, laurel badge, Google avatars).
   A fixed 48px icon slot keeps every card heading aligned. */
.proof-grid .pc-ic { display: flex; align-items: center; justify-content: flex-start; height: 48px; margin-bottom: 20px; }
.pc-qbcc { height: 44px; width: auto; display: block; }
.pc-laurels { gap: 7px; }
.pc-laurels .c5-laurel { height: 46px; width: auto; opacity: .92; flex-shrink: 0; }
.pc-laurels .c5-laurel--flip { transform: scaleX(-1); }
.pc-stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; line-height: 1; }
.pc-google { gap: 16px; }
.proof-grid .g-avatars { display: inline-flex; align-items: center; }
.proof-grid .g-av { width: 28px; height: 28px; font-size: 13px; }
.proof-grid .g-av + .g-av { margin-left: -9px; }
.proof-grid .g-plus { font-size: 15px; margin-left: 4px; }
.pc-rev { display: inline-flex; align-items: center; gap: 8px; }
.pc-rev .tb-glogo { width: 16px; height: 16px; }
a.std-item { display: block; text-decoration: none; }
a.std-item:hover h4, a.std-item:hover .pc-rev { color: #fff; }

/* Mobile — stack the up-close split; videos become a swipe slider; cards stack */
@media (max-width: 860px) {
  .reels-split { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 40px); }
  .reels-media, .reels-copy { grid-column: auto; }
  .reels-copy { order: 1; }
  .reels-media { order: 2; }
  .proof-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .proof-block { margin-top: clamp(46px, 9vw, 68px); padding-top: clamp(40px, 8vw, 56px); }
}
@media (max-width: 760px) {
  .reel-wrap { max-width: 100%; }
  .reel-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 9%;
    scrollbar-width: none;
  }
  .reel-row::-webkit-scrollbar { display: none; }
  .reel { flex: 0 0 82%; scroll-snap-align: center; }
  .reel-play { width: 56px; height: 56px; }
  .reel-controls { display: flex; }
}

/* ===========================================================
   TRUST BAR — dark proof strip directly under the hero
   =========================================================== */
.trustbar {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.trustbar::after {
  content: "";
  position: absolute;
  inset: 0;
  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='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
}
.trustbar .wrap { position: relative; z-index: 1; }
.trustbar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  padding-block: clamp(20px, 2.1vw, 30px);
}
.tb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding-inline: clamp(12px, 2vw, 36px);
}
.tb-item + .tb-item { border-left: 1px solid rgba(255,255,255,.10); }
.tb-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tb-stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; line-height: 1; }
.tb-txt { display: flex; flex-direction: column; line-height: 1.2; }
.tb-txt strong {
  font-family: var(--font-head);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.tb-txt small { color: rgba(255,255,255,.5); font-size: 12px; margin-top: 3px; }

/* QBCC — logo left + text on desktop/tablet (vertical stack only on mobile) */
.tb-item--qbcc .tb-txt { line-height: 1.25; }
.tb-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.tb-qbcc { height: 34px; width: auto; max-width: none; display: block; }

/* Class 5 finish — native: laurel | stars + title + sub | flipped laurel (tight) */
.tb-item--class5 { justify-content: center; }
.c5-badge { display: inline-flex; align-items: center; gap: 4px; }
.c5-laurel { height: 40px; width: auto; opacity: .92; flex-shrink: 0; }
.c5-laurel--flip { transform: scaleX(-1); }
.c5-mid { display: flex; flex-direction: column; align-items: center; gap: 0; }
.c5-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; line-height: 1.2; }
.c5-title { font-family: var(--font-head); color: #fff; font-weight: 800; font-size: 15px; letter-spacing: .05em; line-height: 1.1; }
.c5-sub { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .02em; margin-top: -2px; }

/* Google reviews — avatar cluster + stars (left), rating + label (right), bottoms level */
.tb-item--google { gap: 14px; align-items: flex-end; }
.g-left { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.g-avatars { display: inline-flex; align-items: center; }
.g-av {
  width: 20px; height: 20px; border-radius: 50%; box-sizing: border-box;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 10px; color: #fff;
  border: 2px solid var(--ink-2);
}
.g-av--1 { background: #5b8def; }
.g-av--2 { background: #d97a5b; }
.g-av--3 { background: #57a05f; }
.g-av + .g-av { margin-left: -8px; }
.g-plus {
  margin-left: 4px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  color: #fff;
}
.g-stars { color: var(--gold); font-size: 14px; letter-spacing: 1.5px; line-height: 1; }
.g-right { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.g-right strong { font-family: var(--font-head); color: #fff; font-weight: 800; font-size: 18px; line-height: 1; letter-spacing: -0.01em; }
.g-rev { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); font-size: 12px; font-weight: 600; transition: color .18s ease; }
a.tb-item--google { text-decoration: none; cursor: pointer; }
a.tb-item--google:hover .g-rev { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
a.tb-item--google:hover .g-right strong { color: #fff; }
.tb-glogo { width: 14px; height: 14px; flex-shrink: 0; }

/* Mobile — stack into a single centred column; QBCC goes logo-above-text here */
@media (max-width: 860px) {
  .trustbar-row { grid-template-columns: 1fr; padding-block: 4px; }
  .tb-item { justify-content: center; gap: 14px; padding: 16px clamp(6px, 3vw, 20px); }
  .tb-item--qbcc { flex-direction: column; gap: 7px; }
  .tb-item--qbcc .tb-txt { align-items: center; text-align: center; }
  .tb-item--class5 { justify-content: center; }
  .tb-item--google { justify-content: center; align-items: center; }
  .tb-item + .tb-item { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
}
