:root {
  --ink: #091116;
  --ink-soft: #142027;
  --paper: #f7f3ec;
  --paper-bright: #fffdfa;
  --porcelain: #e8e1d7;
  --text: #121a1f;
  --muted: #675f55;
  --copper: #c78347;
  --copper-dark: #7f4725;
  --water: #8fc5d2;
  --water-dark: #2c7080;
  --line: rgba(17, 26, 31, 0.14);
  --light-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(5, 12, 16, 0.22);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  --page: min(1180px, calc(100vw - 40px));
  --image-hero-bathroom: url("./luxury-bathroom-hero.jpg");
  --image-why-lm: url("./lm-plumbing-hero-still.png");
  --image-ensuite: url("./project-ensuite-luxury.jpg");
  --image-emergency: url("./project-emergency-repair.jpg");
  --image-landlord: url("./project-landlord-refresh.jpg");
}


/* Unified site-wide dark theme */
:root {
  --paper: #091116;
  --paper-bright: #111d23;
  --porcelain: #17252c;
  --text: #f5f2ec;
  --muted: #b8b1a8;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}
* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body.modal-open { overflow: hidden; }
img, video { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font-weight: 900;
}
.skip-link:focus { transform: none; }

.site-nav {
  position: fixed;
  inset: 14px 16px auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 9px 10px;
  border: 1px solid rgba(201, 131, 71, 0.28);
  border-radius: 8px;
  color: white;
  background: rgba(7, 14, 18, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  font-weight: 950;
}
.brand img {
  width: 78px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}

/* Shared 8px spacing rhythm and clearer visual wayfinding */
.site-nav { gap: var(--space-3); padding: var(--space-1) var(--space-2); }
.nav-links { gap: var(--space-1); }
.hero-actions { gap: var(--space-2); margin: var(--space-4) 0 var(--space-3); }
.trust-line { gap: var(--space-1); }
.page-list li {
  position: relative;
  padding-left: var(--space-5);
}
.page-list li::before {
  position: absolute;
  left: var(--space-1);
  top: 50%;
  display: grid;
  width: var(--space-3);
  height: var(--space-3);
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #fff;
  background: var(--water-dark);
  font-size: .72rem;
  font-weight: 900;
  transform: translateY(-50%);
}
.page-projects article > span::before {
  display: inline-grid;
  width: var(--space-3);
  height: var(--space-3);
  margin-right: var(--space-1);
  place-items: center;
  border-radius: 50%;
  content: "◇";
  color: #fff;
  background: var(--copper-dark);
  font-size: .68rem;
  vertical-align: middle;
}

@media (max-width: 620px) {
  .button,
  .nav-call,
  .journey-button,
  .town-map-button,
  .nav-links a,
  .footer-link,
  .text-button,
  .privacy-actions button,
  summary {
    min-height: 44px;
  }
  input, select { min-height: 44px; }
  .footer-link, .text-button { display: inline-flex; align-items: center; }
}
.nav-links { display: flex; justify-content: center; gap: 4px; }
.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}
.nav-links a:hover, .nav-links a:focus-visible { color: white; background: rgba(255, 255, 255, 0.1); }
.nav-call {
  display: inline-flex;
  justify-content: center;
  padding: 11px 17px;
  border-radius: 999px;
  color: #150d08;
  background: #e2a15e;
  text-decoration: none;
  font-weight: 950;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: white;
  background: var(--ink);
}
.hero-poster, .hero-poster img, .hero-video, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-poster img, .hero-video { object-fit: cover; }
.hero-poster { opacity: 0.9; }
.hero-video {
  z-index: 1;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 10s linear;
  will-change: opacity, transform;
}
.hero-video.is-ready { opacity: 0.92; transform: scale(1); }
.hero-video.is-complete { transform: scale(1); }
.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4, 10, 14, 0.98) 0%, rgba(4, 10, 14, 0.82) 46%, rgba(4, 10, 14, 0.3) 76%, rgba(4, 10, 14, 0.44) 100%),
    linear-gradient(0deg, rgba(4, 10, 14, 0.86), transparent 48%);
  transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  width: var(--page);
  min-height: 820px;
  margin: 0 auto;
  padding: 126px 0 70px;
  transition: opacity 1.35s cubic-bezier(0.22, 1, 0.36, 1), transform 1.35s cubic-bezier(0.22, 1, 0.36, 1), filter 1.35s ease;
}
.hero-emblem {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: clamp(220px, 22vw, 310px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  pointer-events: none;
  perspective: 1200px;
  transition: top 1.3s cubic-bezier(0.22, 1, 0.36, 1), left 1.3s cubic-bezier(0.22, 1, 0.36, 1), width 1.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease, transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-emblem-frame {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 2;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44), 0 0 0 10px rgba(255, 255, 255, 0.08);
  transform-style: preserve-3d;
}
.hero-emblem-frame::after {
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 36%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.56), transparent);
  transform: skewX(-14deg);
}
.hero-emblem img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transform: rotateY(-24deg) scale(0.96);
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
  backface-visibility: visible;
  filter: brightness(0.82) saturate(0.9);
}
.hero.is-cinematic:not(.is-copy-revealed) .hero-shade { opacity: 0.25; }
.hero.is-cinematic.is-copy-revealed:not(.is-revealed) .hero-shade { opacity: 0.76; }
.hero.is-cinematic:not(.is-copy-revealed) .hero-copy,
.hero.is-cinematic:not(.is-revealed) .quick-panel {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(12px);
  pointer-events: none;
}
.hero-copy, .quick-panel {
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.55s ease;
}
.hero.is-cinematic .hero-emblem { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.hero.is-cinematic.is-branding .hero-emblem img { animation: lm-logo-arrival 2.9s cubic-bezier(0.2, 0.75, 0.25, 1) 1 both; }
.hero.is-cinematic.is-branding .hero-emblem-frame::after { animation: lm-logo-shine 1.6s ease 0.8s 1 both; }
.hero.is-cinematic.is-copy-revealed .hero-copy,
.hero.is-cinematic.is-revealed .quick-panel { opacity: 1; transform: none; filter: none; pointer-events: auto; }
.hero.is-cinematic.is-revealed .hero-shade { opacity: 1; }
.hero.is-cinematic.is-copy-revealed .hero-emblem {
  top: 96px;
  left: 100%;
  width: 122px;
  opacity: 0.78;
  transform: translate(calc(-100% - 24px), 0) scale(1);
}
.hero-intro-skip {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 28px;
  display: grid;
  min-width: 132px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 10px 14px 9px;
  color: white;
  background: rgba(6, 14, 18, 0.62);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-intro-skip i {
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}
.hero-intro-skip i::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: #ecb06d;
  transform: translateX(-100%);
}
.hero.is-cinematic .hero-intro-skip i::after { animation: hero-intro-progress 1.6s linear 1 both; }
.hero:not(.is-cinematic) .hero-intro-skip,
.hero.is-revealed .hero-intro-skip {
  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;
}
@keyframes lm-logo-arrival {
  0% { transform: rotateY(-24deg) scale(0.96); filter: brightness(0.82) saturate(0.9); }
  55% { transform: rotateY(210deg) scale(1.08); filter: brightness(1.16) saturate(1.08); }
  100% { transform: rotateY(360deg) scale(1.02); filter: brightness(1) saturate(1); }
}
@keyframes lm-logo-shine {
  0% { left: -55%; opacity: 0; }
  20% { opacity: 0.8; }
  100% { left: 120%; opacity: 0; }
}
@keyframes hero-intro-progress {
  to { transform: translateX(0); }
}
.hero-copy { max-width: 760px; }
.eyebrow {
  margin: 0 0 14px;
  color: #bee9f1;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.eyebrow.dark { color: var(--copper-dark); }
.journey-switch {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 24px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 17, 22, 0.62);
}
.journey-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}
.journey-button.is-active { color: #15100c; background: #ecb06d; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 6.2vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 28px; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  color: #17100b;
  background: #e1a15e;
  box-shadow: 0 14px 34px rgba(199, 131, 71, 0.24);
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
}
.button:hover { background: #ecb475; }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--water);
  outline-offset: 3px;
}
.button-quiet { color: white; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.08); box-shadow: none; }
.button-quiet:hover { background: rgba(255, 255, 255, 0.16); }
.button-light { color: var(--ink); background: var(--paper-bright); }
.button-wide { width: 100%; }
.button-back { color: var(--ink); border: 1px solid var(--line); background: transparent; box-shadow: none; }
.trust-line { display: flex; flex-wrap: wrap; gap: 9px; }
.trust-line span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 850;
}
.quick-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: white;
  background: rgba(7, 16, 21, 0.9);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}
.quick-panel h2 { margin-bottom: 18px; font-size: 1.72rem; line-height: 1.08; }
.quick-panel > p:not(.panel-kicker):not(.microcopy) { color: rgba(255, 255, 255, 0.7); }
.quick-panel label { color: rgba(255, 255, 255, 0.9); }
.quick-panel input,
.quick-panel select { border-color: rgba(255, 255, 255, 0.18); color: white; background: rgba(255, 255, 255, 0.08); }
.quick-panel input::placeholder { color: rgba(255, 255, 255, 0.48); }
.quick-panel select option { color: var(--text); background: white; }
.quick-panel .microcopy { color: rgba(255, 255, 255, 0.64); }
.response-steps { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.response-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.response-steps li > b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #fff; background: var(--ink-soft); }
.response-steps span, .response-steps strong, .response-steps small { display: block; }
.response-steps strong { margin-bottom: 3px; font-size: 0.9rem; }
.response-steps small { color: var(--muted); line-height: 1.45; }
.panel-kicker { margin-bottom: 8px; color: var(--copper-dark); font-size: 0.76rem; font-weight: 950; text-transform: uppercase; letter-spacing: 0.12em; }
label { display: grid; gap: 7px; color: var(--text); font-size: 0.84rem; font-weight: 900; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(18, 26, 31, 0.2);
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--text);
  background: #fffefa;
  outline: 0;
  font-weight: 750;
}
textarea { min-height: 110px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #766f65; }
.quick-panel label + label, .quick-panel label + .button { margin-top: 13px; }
.microcopy { margin: 13px 0 0; color: var(--muted); font-size: 0.8rem; font-weight: 800; }
.availability-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #2b9f72; box-shadow: 0 0 0 4px rgba(43, 159, 114, 0.14); }

.proof-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: -36px auto 0;
  overflow: hidden;
  border: 1px solid rgba(199, 131, 71, 0.26);
  border-radius: 8px;
  background: var(--paper-bright);
  box-shadow: 0 24px 60px rgba(6, 14, 18, 0.16);
}
.proof-strip > div { display: grid; grid-template-columns: 38px 1fr; gap: 13px; align-items: center; padding: 21px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border: 0; }
.proof-strip b, .proof-copy, .proof-copy > span { display: block; }
.proof-strip b { margin-bottom: 5px; color: var(--ink); }
.proof-copy > span { color: var(--muted); font-size: 0.86rem; }
.proof-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #fff; background: var(--ink-soft); font-size: 1rem; font-style: normal; font-weight: 950; }
.section { width: var(--page); margin: 0 auto; padding: 96px 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
  margin-bottom: 38px;
}
.section-heading h2, .contact-panel h2, .coverage h2, .story-intro h2, .final-cta h2, .faq h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}
.section-heading > p, .contact-panel > p, .coverage-copy > p, .story-intro > p { margin-bottom: 0; color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  color: white;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.service-card::before { content: ""; position: absolute; inset: 0; background: rgba(6, 14, 18, 0.7); }
.service-card > * { position: relative; z-index: 1; }
.emergency-card { background-image: var(--image-emergency); }
.bathroom-card { background-image: var(--image-ensuite); }
.maintenance-card { background-image: var(--image-landlord); }
.card-number { position: absolute; top: 18px; right: 20px; color: rgba(255, 255, 255, 0.42); font-size: 2.2rem; font-weight: 950; }
.card-label { margin: 96px 0 12px; color: #eeb578; text-transform: uppercase; font-size: 0.76rem; font-weight: 950; letter-spacing: 0.12em; }
.service-card h3 { max-width: 360px; margin-bottom: 16px; font-size: 2rem; line-height: 1.02; }
.service-card p:not(.card-label) { color: rgba(255, 255, 255, 0.76); line-height: 1.55; }
.text-action { min-height: 44px; border: 0; padding: 8px 0; color: white; background: transparent; font-weight: 950; cursor: pointer; }

.scroll-story {
  position: relative;
  min-height: 300vh;
  color: white;
  background: var(--ink);
}
.story-intro {
  width: var(--page);
  margin: 0 auto;
  padding: 100px 0 40px;
}
.story-intro h2 { max-width: 820px; }
.story-intro > p:last-child { max-width: 650px; color: rgba(255, 255, 255, 0.68); }
.player-mount { position: relative; min-height: 240vh; }
.story-stage {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  width: var(--page);
  height: 100vh;
  margin: 0 auto;
  padding: 80px 0 36px;
}
.story-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #03080b;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
}
.story-player > div { width: 100% !important; }
.story-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255, 255, 255, 0.18); }
.story-progress span { display: block; width: var(--progress, 0%); height: 100%; background: #e4a35f; }
.chapter-list { display: grid; gap: 10px; }
.chapter {
  padding: 18px;
  border-left: 3px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.chapter.is-active { border-color: #e4a35f; color: white; background: rgba(255, 255, 255, 0.06); }
.chapter span { display: block; margin-bottom: 5px; color: #a8d8e2; font-size: 0.75rem; text-transform: uppercase; font-weight: 950; letter-spacing: 0.1em; }
.chapter h3 { margin-bottom: 7px; font-size: 1.35rem; }
.chapter p { margin: 0; color: inherit; line-height: 1.5; font-size: 0.9rem; }
.player-fallback { position: sticky; top: 90px; width: var(--page); margin: 0 auto; }
.player-fallback video { display: block; width: 100%; border-radius: 8px; }
.noscript-note { width: var(--page); margin: 0 auto; }

.work { padding-top: 110px; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.project {
  overflow: hidden;
  border: 1px solid rgba(199, 131, 71, 0.22);
  border-radius: 8px;
  background: var(--paper-bright);
  box-shadow: 0 20px 60px rgba(10, 18, 22, 0.13);
}
.project picture, .project img { display: block; width: 100%; height: 100%; object-fit: cover; }
.project-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 0.9fr; }
.project-featured picture { min-height: 520px; }
.project-copy { padding: 26px; }
.project-featured .project-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 64px); }
.project-copy > span { color: var(--copper-dark); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; font-weight: 950; }
.project-copy h3 { margin: 14px 0; font-size: clamp(1.7rem, 3vw, 3.3rem); line-height: 1; }
.project-copy p { color: var(--muted); line-height: 1.6; }
.project-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 20px 0 26px; }
.project-facts div { padding: 14px; border: 1px solid var(--line); border-radius: 7px; }
.project-facts dt { color: var(--muted); font-size: 0.76rem; font-weight: 800; }
.project-facts dd { margin: 5px 0 0; font-weight: 950; }
.project-small { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.project-small picture { min-height: 300px; }
.portfolio-note { max-width: 780px; margin: 20px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

.decision-tools {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
}
.before-after {
  --split: 52%;
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border-radius: 8px;
  background-image: var(--image-emergency);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.before-after::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  background-image: var(--image-ensuite);
  background-position: center;
  background-size: cover;
}
.before-after::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; left: var(--split); width: 2px; background: white; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18); }
.compare-copy { position: absolute; z-index: 3; inset: 16px 18px auto; display: flex; justify-content: space-between; color: white; font-size: 0.8rem; font-weight: 950; text-transform: uppercase; letter-spacing: 0.1em; }
.before-after input { position: absolute; z-index: 4; left: 5%; right: 5%; bottom: 22px; width: 90%; accent-color: var(--copper); }
.contact-panel { padding: clamp(28px, 5vw, 58px); border-radius: 8px; background: #ede5da; }
.contact-panel h2 { font-size: clamp(2.5rem, 4.5vw, 4.4rem); }
.contact-benefits { display: grid; gap: 11px; margin: 28px 0; padding: 0; list-style: none; }
.contact-benefits li { position: relative; padding-left: 28px; color: var(--text); font-weight: 850; line-height: 1.45; }
.contact-benefits li::before { position: absolute; left: 0; content: "✓"; color: var(--water-dark); font-weight: 950; }

.coverage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  width: 100%;
  padding: 92px max(20px, calc((100vw - 1180px) / 2));
  color: white;
  background: #132127;
}
.coverage h2 { margin-bottom: 20px; }
.coverage-copy > p { color: rgba(255, 255, 255, 0.7); }
.coverage > *, .postcode-check, .postcode-check > * { min-width: 0; max-width: 100%; }
.postcode-check { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 26px; }
.area-result { min-height: 24px; margin: 13px 0 0 !important; color: #bde6ef !important; font-weight: 800; }
.map-shell { min-height: 420px; overflow: hidden; border: 1px solid var(--light-line); border-radius: 8px; background: #1e333d; box-shadow: var(--shadow); }
.map-placeholder { display: grid; min-height: 420px; place-items: center; align-content: center; padding: 38px; text-align: center; background-image: linear-gradient(rgba(8,17,22,.72), rgba(8,17,22,.72)), var(--image-landlord); background-position: center; background-size: cover; }
.map-placeholder::before { content: ""; position: absolute; }
.map-placeholder span, .map-placeholder p, .map-placeholder button { position: relative; }
.map-placeholder span { font-size: 1.6rem; font-weight: 950; }
.map-placeholder p { max-width: 500px; color: rgba(255, 255, 255, 0.82); }
.map-shell iframe { display: block; width: 100%; min-height: 420px; border: 0; }

.standards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.standards-grid article { padding: 24px; border-top: 3px solid var(--copper); background: #ebe3d8; }
.standards-grid b { color: var(--copper-dark); font-size: 1.8rem; }
.standards-grid h3 { margin: 34px 0 10px; }
.standards-grid p { margin: 0; color: var(--muted); line-height: 1.6; }
.faq { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(30px, 6vw, 90px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 20px 36px 20px 0; cursor: pointer; font-size: 1.08rem; font-weight: 900; }
.faq details p { padding: 0 40px 20px 0; color: var(--muted); line-height: 1.6; }


.reviews { overflow: hidden; padding: 94px 0 100px; color: white; background: #132127; }
.reviews-heading, .reviews-toolbar { width: var(--page); margin-inline: auto; }
.reviews-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 34px; align-items: end; }
.reviews-heading h2 { max-width: 760px; margin: 0; }
.reviews-rating { display: grid; justify-items: end; }
.reviews-rating strong { font-size: clamp(3rem, 6vw, 5.2rem); line-height: 0.85; }
.reviews-rating small { margin-top: 7px; color: rgba(255, 255, 255, 0.58); font-weight: 750; }
.review-stars { color: #e8a45f; letter-spacing: 0.08em; }
.reviews-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--light-line); }
.reviews-toolbar p { max-width: 690px; margin: 0; color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; line-height: 1.55; }
.review-toggle { flex: none; min-height: 42px; padding: 9px 15px; border: 1px solid rgba(255, 255, 255, 0.26); border-radius: 999px; color: white; background: transparent; cursor: pointer; font-weight: 850; }
.review-toggle:hover, .review-toggle:focus-visible { background: rgba(255, 255, 255, 0.1); }
.reviews-viewport { width: 100%; margin-top: 38px; overflow: hidden; }
.reviews-track { display: flex; width: max-content; animation: review-marquee 46s linear infinite; will-change: transform; }
.reviews-viewport:hover .reviews-track, .reviews-viewport:focus-within .reviews-track, .reviews-viewport.is-paused .reviews-track { animation-play-state: paused; }
.reviews-group { display: flex; gap: 16px; padding-right: 16px; }
.review-card { display: flex; width: clamp(292px, 34vw, 430px); min-height: 286px; flex-direction: column; justify-content: space-between; padding: 26px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 8px; background: #1b2d35; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16); }
.review-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-card-top > span:last-child { color: rgba(255, 255, 255, 0.48); font-size: 0.7rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
.review-card blockquote { margin: 30px 0; font-size: clamp(1.18rem, 1.8vw, 1.48rem); font-weight: 750; line-height: 1.4; }
.review-card footer { display: flex; align-items: center; justify-content: flex-start; gap: 13px; padding: 18px 0 0; color: rgba(255, 255, 255, 0.56); background: transparent; border-top: 1px solid var(--light-line); font-size: 0.78rem; }
.review-avatar { width: 52px; height: 52px; flex: 0 0 52px; border: 2px solid rgba(236, 176, 109, 0.72); border-radius: 50%; object-fit: cover; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24); }
.review-person, .review-person > span { display: block; }
.review-person strong { display: block; margin-bottom: 4px; color: white; font-size: 0.9rem; }
.review-person > span { line-height: 1.35; }
@keyframes review-marquee { to { transform: translateX(-50%); } }

.final-cta { padding: 100px max(20px, calc((100vw - 960px) / 2)); color: white; text-align: center; background: #0b151a; }
.final-cta h2 { max-width: 960px; margin: 0 auto 30px; }
.final-cta > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px 40px;
  align-items: center;
  padding: 34px max(20px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  background: #e8e0d5;
  font-size: 0.86rem;
}
.footer-brand { color: var(--ink); }
footer p { margin: 0; }
footer div { display: flex; flex-wrap: wrap; gap: 14px; }
footer a { text-decoration: none; font-weight: 850; }
footer small { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid var(--line); }
.mobile-book { display: none; }

.booking-dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  background: var(--paper-bright);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.46);
}
.booking-dialog::backdrop { background: rgba(3, 8, 11, 0.78); backdrop-filter: blur(8px); }
.dialog-shell { position: relative; padding: clamp(24px, 5vw, 48px); }
.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-size: 1.6rem;
}
.dialog-intro { padding-right: 50px; }
.dialog-intro h2, .booking-success h2 { margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; }
.dialog-intro > p:last-child { color: var(--muted); line-height: 1.55; }
.booking-progress { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin: 24px 0 8px; }
.booking-progress span { height: 6px; border-radius: 999px; background: #ddd6cc; }
.booking-progress span.is-active { background: var(--copper); }
.step-announcement { color: var(--muted); font-size: 0.82rem; font-weight: 850; }
.form-step { display: none; gap: 14px; padding-top: 12px; }
.form-step.is-active { display: grid; }
.form-step h3 { margin-bottom: 2px; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 6px; }
.form-actions > span { color: var(--muted); font-size: 0.8rem; }
.slot-note { margin: -2px 0 0; color: var(--muted); font-size: 0.8rem; }
.check-label { grid-template-columns: 22px 1fr; align-items: start; font-weight: 750; line-height: 1.45; }
.check-label input { width: 20px; min-height: 20px; margin-top: 1px; accent-color: var(--copper); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-note { min-height: 24px; margin: 12px 0 0; color: var(--copper-dark); font-weight: 850; }
.booking-success { padding: 36px 0 8px; text-align: center; }
.success-mark { display: grid; width: 64px; height: 64px; margin: 0 auto 24px; place-items: center; border-radius: 50%; color: white; background: #26835e; font-size: 1.8rem; font-weight: 950; }
.booking-success > p:not(.eyebrow) { color: var(--muted); line-height: 1.6; }
.reference-card { width: min(360px, 100%); margin: 24px auto; padding: 20px; border: 1px solid var(--line); border-radius: 8px; background: #f0e8dc; }
.reference-card span, .reference-card b { display: block; }
.reference-card span { color: var(--muted); font-size: 0.8rem; }
.reference-card b { margin-top: 7px; font-size: 1.4rem; }

@media (max-width: 980px) {
  :root { --page: min(100% - 28px, 760px); }
  .site-nav { grid-template-columns: auto 1fr auto auto; inset: 8px 8px auto; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 20px; height: 2px; background: white; }
  .nav-links {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: none;
    padding: 9px;
    border: 1px solid rgba(199, 131, 71, 0.28);
    border-radius: 8px;
    background: rgba(7, 14, 18, 0.96);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 13px; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; min-height: auto; padding: 112px 0 58px; }
  .hero-copy { max-width: 690px; }
  h1 { font-size: clamp(3.5rem, 10vw, 6.2rem); }
  .quick-panel { max-width: 600px; }
  .proof-strip { grid-template-columns: 1fr 1fr; margin-top: 0; }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .section { padding: 76px 0; }
  .section-heading, .decision-tools, .coverage, .faq { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .card-label { margin-top: 70px; }
  .scroll-story { min-height: 300vh; }
  .player-mount { min-height: 240vh; }
  .story-stage { grid-template-columns: 1fr; align-content: center; gap: 18px; padding-top: 82px; }
  .chapter-list { grid-template-columns: repeat(5, 1fr); }
  .chapter { padding: 12px; border-left: 0; border-top: 3px solid rgba(255, 255, 255, 0.16); }
  .chapter p { display: none; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured picture { min-height: 440px; }
  .project-small { grid-template-columns: 1fr; }
  .project-small picture { height: 280px; }
  .before-after { min-height: 500px; }
  .coverage { padding-block: 76px; }
  .standards-grid { grid-template-columns: 1fr 1fr; }
  .reviews-heading { grid-template-columns: 1fr; align-items: start; }
  .reviews-rating { justify-items: start; }
  footer { grid-template-columns: 1fr; }
  footer small { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --page: calc(100% - 24px); }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .site-nav { gap: 7px; }
  .brand span { font-size: 0.86rem; }
  .brand img { width: 58px; height: 42px; }
  .nav-call { padding: 10px 12px; font-size: 0.8rem; }
  .hero-poster { display: none; }
  .hero-video { object-position: center center; }
  .hero-video.is-ready { opacity: 0.78; }
  .hero-shade { background: linear-gradient(0deg, rgba(4, 10, 14, 0.98) 0%, rgba(4, 10, 14, 0.76) 62%, rgba(4, 10, 14, 0.5) 100%); }
  .hero.is-cinematic .hero-emblem { width: 148px; }
  .hero.is-cinematic.is-copy-revealed .hero-emblem {
    top: 86px;
    left: 100%;
    width: 62px;
    transform: translate(calc(-100% - 12px), 0) scale(1);
  }
  .hero-intro-skip { bottom: 18px; }
  .hero-layout { gap: 34px; padding: 94px 0 36px; }
  .eyebrow { font-size: 0.68rem; }
  .journey-switch { display: grid; grid-template-columns: 1fr 1fr; width: 100%; border-radius: 8px; }
  .journey-button { min-height: 44px; border-radius: 6px; padding: 8px 10px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); line-height: 0.92; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .trust-line span { font-size: 0.74rem; }
  .quick-panel { padding: 20px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }
  .section { padding: 62px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2, .contact-panel h2, .coverage h2, .story-intro h2, .final-cta h2, .faq h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .service-card { min-height: 300px; padding: 22px; }
  .service-card h3 { font-size: 1.7rem; }
  .story-intro { padding-top: 72px; }
  .scroll-story { min-height: 260vh; }
  .player-mount { min-height: 210vh; }
  .story-stage { height: 100svh; padding: 74px 0 24px; }
  .story-player { border-radius: 6px; }
  .chapter-list { gap: 4px; }
  .chapter { min-width: 0; padding: 9px 4px; }
  .chapter span { overflow: hidden; font-size: 0.58rem; text-overflow: ellipsis; white-space: nowrap; }
  .chapter h3 { margin: 0; font-size: 0.72rem; line-height: 1.15; }
  .work-grid { grid-template-columns: 1fr; }
  .project-featured { grid-column: auto; }
  .project-featured picture { min-height: 330px; }
  .project-featured .project-copy, .project-copy { padding: 22px; }
  .project-facts { grid-template-columns: 1fr; }
  .before-after { min-height: 420px; }
  .contact-panel { padding: 24px; }
  .coverage { padding: 64px 12px; }
  .postcode-check { grid-template-columns: 1fr; }
  .map-shell, .map-placeholder, .map-shell iframe { min-height: 330px; }
  .standards-grid { grid-template-columns: 1fr; }
  .standards-grid h3 { margin-top: 20px; }
  .faq { gap: 20px; }
  .reviews { padding: 64px 0 70px; }
  .reviews-heading h2 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .reviews-toolbar { align-items: flex-start; flex-direction: column; }
  .reviews-viewport { margin-top: 28px; }
  .reviews-track { animation-duration: 38s; }
  .review-card { width: min(82vw, 340px); min-height: 270px; padding: 22px; }
  .final-cta { padding: 74px 14px; }
  footer { padding: 28px 14px; }
  .mobile-book {
    position: fixed;
    z-index: 45;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    display: block;
    width: calc(100% - 20px);
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    color: #17100b;
    background: #e2a15e;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
    font-weight: 950;
  }
  .booking-dialog { width: 100%; max-width: none; max-height: 94svh; margin: auto 0 0; border-radius: 8px 8px 0 0; }
  .dialog-shell { padding: 24px 16px calc(22px + env(safe-area-inset-bottom)); }
  .dialog-intro { padding-right: 45px; }
  .dialog-intro h2 { font-size: 2.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; }
  .form-actions .button { flex: 1; padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-video { display: none !important; }
  .hero-layout { opacity: 1 !important; transform: none !important; filter: none !important; pointer-events: auto !important; }
  .hero-emblem img { animation: none !important; }
  .hero-intro-skip { display: none !important; }
  .reviews-viewport { overflow-x: auto; }
  .reviews-track { animation: none !important; }
  .reviews-group[aria-hidden="true"] { display: none; }
  .scroll-story { min-height: auto; padding-bottom: 60px; }
  .player-mount { min-height: auto; }
  .story-stage { position: relative; height: auto; min-height: auto; }
}

.footer-link, .text-button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.turnstile-slot { min-height: 30px; color: #d5dce0; font-size: 0.875rem; }

/* Keep native dropdown options readable on their light OS surface. */
select option, select optgroup { color: #17252b; background-color: #ffffff; }
.privacy-banner {
  position: fixed;
  z-index: 90;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #fff;
  background: #11191d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}
.privacy-banner[hidden] { display: none; }
.privacy-banner strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.privacy-banner p { margin: 0; color: #d9ddde; font-size: 0.86rem; }
.privacy-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: wrap; }
.privacy-banner .button { min-height: 44px; padding: 8px 16px; }
.privacy-dialog { width: min(610px, calc(100% - 24px)); padding: 0; border: 0; border-radius: 8px; color: #10181c; background: #f8f5ef; }
.privacy-dialog::backdrop { background: rgba(4, 10, 14, 0.78); backdrop-filter: blur(4px); }
.privacy-shell { padding: 28px; }
.privacy-shell h2 { margin: 4px 0 10px; font-size: clamp(2rem, 6vw, 3rem); line-height: 1; }
.privacy-shell > p { color: #5f574e; }
.privacy-option { display: flex; margin-top: 12px; padding: 15px; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid #d8d1c7; border-radius: 6px; background: #fff; }
.privacy-option span, .privacy-option small { display: block; }
.privacy-option small { margin-top: 3px; color: #6e665d; }
.privacy-option input { width: 21px; height: 21px; accent-color: #b56b32; }
.privacy-status { min-height: 20px; }
.privacy-legal { display: flex; gap: 16px; }
.legal-page { color: #11191d; background: #f4f0e8; }
.legal-header { padding: 18px max(20px, calc((100vw - 1040px) / 2)); border-bottom: 1px solid #d7d0c5; background: #fff; }
.legal-shell { width: min(840px, calc(100% - 36px)); margin: 0 auto; padding: 54px 0 90px; }
.legal-shell h1 { max-width: 780px; margin: 8px 0 22px; color: #11191d; font-size: clamp(2.8rem, 8vw, 5rem); }
.legal-shell h2 { margin: 38px 0 9px; font-size: 1.4rem; }
.legal-shell p, .legal-shell li { color: #4e4943; line-height: 1.75; }
.legal-shell a { color: #8a4a20; }
.legal-draft { padding: 14px 16px; border-left: 4px solid #ba672e; background: #fff; }
/* Dark-theme surfaces that previously used fixed light colours. */
.availability-card,
.proof-strip,
.contact-panel,
.standards-grid article,
.site-footer,
.booking-dialog,
.booking-panel,
.reference-card,
.privacy-dialog,
.privacy-option,
.legal-header,
.legal-draft {
  color: var(--text);
  border-color: var(--line);
  background: var(--paper-bright);
}
.availability-card p,
.proof-strip p,
.contact-panel p,
.standards-grid p,
.site-footer p,
.site-footer a,
.reference-card p,
.privacy-dialog p,
.privacy-option p,
.legal-page p,
.legal-page li { color: var(--muted); }
.booking-dialog input,
.booking-dialog select,
.booking-dialog textarea,
.privacy-dialog input,
.privacy-dialog select {
  color: var(--text);
  border-color: var(--line);
  background: #17252c;
}
.booking-dialog input::placeholder,
.booking-dialog textarea::placeholder { color: #918b83; }
.booking-progress span { background: #33434b; }
.legal-page { color: var(--text); background: var(--paper); }
.legal-header { border-bottom-color: var(--line); }
footer { color: var(--muted); background: #0d181e; }
.footer-brand { color: var(--text); }
.dialog-close { color: var(--text); background: #17252c; }
.button-light { color: var(--text); border: 1px solid var(--line); background: #17252c; }

.map-consent-panel { display: grid; min-height: inherit; padding: 28px; place-content: center; text-align: center; }

@media (max-width: 720px) {
  .privacy-banner { right: 10px; bottom: calc(72px + env(safe-area-inset-bottom)); left: 10px; align-items: stretch; flex-direction: column; }
  .privacy-actions { display: grid; grid-template-columns: 1fr; }
  .privacy-actions .button { width: 100%; }
  .privacy-shell { padding: 22px 16px calc(20px + env(safe-area-inset-bottom)); }
  .privacy-option { align-items: flex-start; }
  .legal-shell { padding-top: 38px; }
}
/* Shared, accessible scroll reveals for every public page. */
.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .78s cubic-bezier(.22, 1, .36, 1), transform .78s cubic-bezier(.22, 1, .36, 1);
}
.motion-ready [data-reveal="section-alt"] { transform: translateY(28px) scale(.992); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .motion-ready [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Site-wide card interaction motion */
.service-card,
.project,
.review-card,
.proof-strip > div,
.project-facts > div,
.reference-card {
  transform: translateY(0) scale(1);
  transform-origin: center;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), border-color .32s ease, box-shadow .42s ease, background-color .32s ease;
}
.project picture,
.project > img {
  overflow: hidden;
}
.project picture img,
.project > img {
  transition: transform .7s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}
@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .project:hover,
  .review-card:hover {
    z-index: 2;
    border-color: rgba(226, 161, 94, .62);
    box-shadow: 0 30px 78px rgba(8, 17, 22, .22);
    transform: translateY(-8px) scale(1.012);
  }
  .service-card:hover { background-size: 106%; }
  .project:hover picture img,
  .project:hover > img { filter: saturate(1.06); transform: scale(1.045); }
  .proof-strip > div:hover,
  .project-facts > div:hover,
  .reference-card:hover {
    position: relative;
    z-index: 2;
    border-color: rgba(199, 131, 71, .48);
    background-color: rgba(226, 161, 94, .09);
    box-shadow: 0 18px 42px rgba(8, 17, 22, .12);
    transform: translateY(-5px) scale(1.015);
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-card,
  .project,
  .review-card,
  .proof-strip > div,
  .project-facts > div,
  .reference-card,
  .project picture img,
  .project > img {
    transition: none !important;
  }
  .service-card:hover,
  .project:hover,
  .review-card:hover,
  .proof-strip > div:hover,
  .project-facts > div:hover,
  .reference-card:hover,
  .project:hover picture img,
  .project:hover > img {
    transform: none !important;
  }
}
/* Universal card and step-card motion */
.motion-card {
  position: relative;
  transform-origin: center;
  will-change: transform;
  transition-property: transform, opacity, border-color, box-shadow, background-color, filter !important;
  transition-duration: .42s !important;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
}
.motion-card img {
  transition: transform .68s cubic-bezier(.22, 1, .36, 1), filter .42s ease !important;
}
@media (hover: hover) and (pointer: fine) {
  .motion-card:hover,
  .motion-card:focus-visible,
  .motion-card:focus-within {
    z-index: 5 !important;
    opacity: 1 !important;
    border-color: rgba(226, 161, 94, .68) !important;
    box-shadow: 0 28px 72px rgba(7, 15, 19, .22) !important;
    filter: saturate(1.04);
    transform: translateY(-8px) scale(1.012) !important;
  }
  .motion-card:hover img,
  .motion-card:focus-within img {
    filter: saturate(1.08);
    transform: scale(1.045) !important;
  }
  .step-row.motion-card:hover,
  .why-journey-steps > article.motion-card:hover,
  .promise-details > article.motion-card:hover,
  .chapter.motion-card:hover {
    padding-right: 18px;
    padding-left: 18px;
    background-color: rgba(226, 161, 94, .09);
    transform: translateX(8px) scale(1.006) !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .motion-card,
  .motion-card img {
    will-change: auto;
    transition: none !important;
  }
  .motion-card:hover,
  .motion-card:focus-visible,
  .motion-card:focus-within,
  .motion-card:hover img,
  .motion-card:focus-within img {
    transform: none !important;
  }
}

/* Refined premium dark direction: warmer layers, clearer type, tighter rhythm. */
:root {
  --paper: #0d171c;
  --paper-bright: #15242b;
  --porcelain: #1b2c34;
  --text: #f4f1eb;
  --muted: #c0b9af;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 64px rgba(0,0,0,.3);
}
body { background: #0d171c; }
.section { padding-top: 80px; padding-bottom: 80px; }
.section-heading { margin-bottom: 40px; }
.section-heading h2,
.contact-panel h2,
.coverage h2,
.story-intro h2,
.reviews-heading h2,
.final-cta h2 { font-size: clamp(2.5rem,4.35vw,4.6rem); font-weight:800; letter-spacing:-.035em; line-height:.98; }
.services { background: #0d171c; }
.projects { background: #111e24; }
.contact-panel { background: linear-gradient(145deg,#172831,#132229); border:1px solid var(--line); }
.coverage { background: linear-gradient(135deg,#14252c,#1a3038); }
.standards { background: #0f1b21; }
.standards-grid article { background:#17272f; border:1px solid var(--line); border-top:3px solid var(--copper); }
.standards-grid b { color:#e2a15e; }
.reviews { background:#122129; }
.review-card { background:#1a2d35; }
.final-cta { background:linear-gradient(135deg,#0d181e,#13242b); }
footer { background:#0a1419; }
.proof-strip { background:#14242b; border-color:var(--line); }
.proof-strip b { color:var(--text); }
.proof-copy > span { color:var(--muted); }
.section-heading > p,
.project-copy p,
.contact-panel p,
.standards-grid p { color:var(--muted); font-weight:400; line-height:1.65; }
.service-card,
.project,
.review-card { border-color:var(--line); }
@media (max-width:900px) { .section { padding-top:68px; padding-bottom:68px; } }
@media (max-width:620px) {
  .section { padding-top:56px; padding-bottom:56px; }
  .section-heading h2,.contact-panel h2,.coverage h2,.story-intro h2,.reviews-heading h2,.final-cta h2 { font-size:clamp(2.2rem,10.5vw,3.15rem); }
}

/* Premium editorial and interaction layer. */
.nav-links a{position:relative}.nav-links a::after{position:absolute;right:12px;bottom:6px;left:12px;height:2px;content:"";background:linear-gradient(90deg,var(--orange),#ffd29b);transform:scaleX(0);transform-origin:left;transition:transform .28s ease}.nav-links a:hover::after,.nav-links a:focus-visible::after,.nav-links a[aria-current="page"]::after{transform:scaleX(1)}.nav-links a[aria-current="page"]{color:#fff}
.magnetic-action{--move-x:0px;--move-y:0px;transform:translate(var(--move-x),var(--move-y));transition:transform .18s ease,box-shadow .25s ease}.button.magnetic-action:hover,.nav-call.magnetic-action:hover{box-shadow:0 14px 34px rgba(229,157,85,.24)}
.premium-surface{--spot-x:50%;--spot-y:50%;position:relative;isolation:isolate;transition:transform .32s cubic-bezier(.2,.75,.2,1),border-color .32s ease,box-shadow .32s ease}.premium-surface:hover{border-color:rgba(229,157,85,.5);box-shadow:0 22px 48px rgba(0,0,0,.2),inset 0 1px rgba(255,255,255,.04);transform:translateY(-6px)}.premium-surface:not(.service-card):not(.work-card):hover{background-image:radial-gradient(circle at var(--spot-x) var(--spot-y),rgba(229,157,85,.1),transparent 38%)}
section[data-section-number]{position:relative}section[data-section-number]::before{position:absolute;top:24px;right:max(20px,calc((100vw - 1220px)/2));z-index:0;content:attr(data-section-number);color:rgba(143,197,210,.08);font-size:clamp(5rem,10vw,10rem);font-weight:900;line-height:1;letter-spacing:-.08em;pointer-events:none}section[data-section-number]>*{position:relative;z-index:1}
.cta-context{width:min(620px,calc(100% - 32px));margin:0 auto 32px;padding:18px 20px;display:flex!important;align-items:center;justify-content:flex-start!important;gap:16px!important;text-align:left;border:1px solid rgba(229,157,85,.3);border-radius:8px;background:rgba(255,255,255,.04);box-shadow:0 20px 50px rgba(0,0,0,.16)}.cta-context>span{display:grid;width:44px;height:44px;flex:0 0 44px;place-items:center;color:#081318;font-size:1.2rem;border-radius:50%;background:var(--orange)}.cta-context p{margin:0}.cta-context strong,.cta-context small{display:block}.cta-context strong{color:#fff;font-size:1rem}.cta-context small{margin-top:4px;color:var(--muted);font-size:.86rem;line-height:1.45}
.hero::after{position:absolute;right:26px;bottom:88px;width:1px;height:64px;content:"";background:linear-gradient(180deg,transparent,var(--orange),transparent);animation:premium-scroll-cue 2.2s ease-in-out infinite}@keyframes premium-scroll-cue{0%,100%{opacity:.25;transform:scaleY(.45);transform-origin:top}50%{opacity:1;transform:scaleY(1)}}
@media(max-width:700px){section[data-section-number]::before{top:12px;right:16px;font-size:4.8rem}.cta-context{align-items:flex-start;padding:16px}.premium-surface:hover{transform:none}.hero::after{display:none}}@media(prefers-reduced-motion:reduce){.magnetic-action,.premium-surface,.nav-links a::after{transition:none!important;transform:none!important}.hero::after{animation:none}}
