:root {
  --ink: #071927;
  --ink-soft: #0d2638;
  --ocean: #087fa1;
  --ocean-bright: #15aed1;
  --orange: #ff6b2b;
  --orange-light: #ff8b57;
  --paper: #f7f9f8;
  --white: #ffffff;
  --mist: #dce7e9;
  --muted: #657681;
  --line: rgba(7, 25, 39, 0.14);
  --radius: 4px;
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --shadow: 0 30px 80px rgba(7, 25, 39, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background: radial-gradient(520px circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(21, 174, 209, 0.07), transparent 55%);
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  transition: background 250ms ease, box-shadow 250ms ease, color 250ms ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 249, 248, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(100% - 3rem, 1440px);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,255,255,0.55);
  clip-path: inherit;
}
.brand-mark span { position: relative; z-index: 1; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.25rem; }
.brand-copy small { margin-top: 0.25rem; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.72; }
.site-nav { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 3rem); }
.site-nav a { position: relative; font-size: 0.9rem; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 2px;
  background: var(--orange);
  transition: right 220ms ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: 0.75rem 1rem; border: 1px solid currentColor; }
.nav-cta span { display: inline-block; margin-left: 0.3rem; transition: transform 180ms ease; }
.nav-cta:hover span { transform: translate(2px, -2px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  height: min(920px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding: 8rem max(1.5rem, calc((100vw - 1440px) / 2)) 5rem;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero-glow {
  position: absolute;
  z-index: -1;
  width: 52vw;
  height: 52vw;
  left: -23vw;
  top: 20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,127,161,0.35), transparent 67%);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; padding-right: 1rem; }
.eyebrow { margin: 0 0 1.35rem; color: var(--ocean); font-size: 0.76rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; }
.eyebrow span { display: inline-block; width: 38px; height: 2px; margin: 0 0.8rem 0.2rem 0; background: currentColor; }
.hero .eyebrow, .eyebrow.light { color: var(--ocean-bright); }
h1, h2, h3 { margin: 0; font-family: var(--display); text-transform: uppercase; line-height: 0.91; }
h1 { max-width: 820px; font-size: clamp(5rem, 8.2vw, 9rem); letter-spacing: -0.055em; }
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-lede { max-width: 630px; margin: 2rem 0 0; color: #c7d5dc; font-size: clamp(1rem, 1.4vw, 1.18rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--orange); box-shadow: 8px 8px 0 rgba(255,107,43,0.16); }
.button-primary:hover { background: var(--orange-light); box-shadow: 11px 11px 0 rgba(255,107,43,0.16); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,0.38); background: transparent; }
.button-ghost:hover { background: rgba(255,255,255,0.08); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 0.8rem 1.25rem; margin-top: 2.4rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.16); color: #9fb0ba; font-size: 0.78rem; font-weight: 700; }
.trust-strip span { display: flex; align-items: center; gap: 0.55rem; }
.trust-strip span::before { content: ""; width: 5px; height: 5px; background: var(--orange); transform: rotate(45deg); }

.hero-visual { position: relative; height: min(68vh, 680px); min-height: 520px; }
.image-frame { position: absolute; inset: 0 1.2rem 1.8rem 0; overflow: hidden; box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 112%; object-fit: cover; object-position: 56% center; filter: saturate(0.72) contrast(1.08); transform: translateY(var(--parallax, -4%)) scale(1.04); }
.image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,25,39,0.06) 35%, rgba(7,25,39,0.92) 100%); }
.image-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,0.22); pointer-events: none; }
.image-label { position: absolute; left: 2rem; right: 2rem; bottom: 1.8rem; display: grid; gap: 0.4rem; }
.image-label span { color: var(--ocean-bright); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; }
.image-label strong { max-width: 380px; font-family: var(--display); font-size: clamp(1.65rem, 2.5vw, 2.55rem); line-height: 1; text-transform: uppercase; }
.measure { position: absolute; color: rgba(255,255,255,0.55); font-size: 0.62rem; letter-spacing: 0.12em; }
.measure::before, .measure::after { content: ""; position: absolute; }
.measure-top { left: 0; right: 1.2rem; top: -1.5rem; border-top: 1px solid rgba(255,255,255,0.24); text-align: center; }
.measure-top::before, .measure-top::after { top: -5px; height: 10px; border-left: 1px solid rgba(255,255,255,0.5); }
.measure-top::before { left: 0; } .measure-top::after { right: 0; }
.measure-top span { position: relative; top: -1.15rem; }
.measure-side { top: 0; bottom: 1.8rem; right: -0.3rem; border-right: 1px solid rgba(255,255,255,0.24); }
.measure-side::before, .measure-side::after { right: -5px; width: 10px; border-top: 1px solid rgba(255,255,255,0.5); }
.measure-side::before { top: 0; } .measure-side::after { bottom: 0; }
.measure-side span { position: absolute; right: -1.15rem; top: 50%; transform: rotate(90deg); }
.corner-note { position: absolute; right: 1.2rem; bottom: 0; color: var(--orange); font-family: var(--display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; }
.scroll-cue { position: absolute; left: max(1.5rem, calc((100vw - 1440px) / 2)); bottom: 1.35rem; display: inline-flex; align-items: center; gap: 0.7rem; color: #8397a4; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; text-decoration: none; }
.scroll-cue span { position: relative; width: 30px; height: 1px; background: #8397a4; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--orange); transform: translateX(-100%); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 50%, 100% { transform: translateX(100%); } }

.section { padding: clamp(5.5rem, 9vw, 9rem) max(1.5rem, calc((100vw - 1280px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: end; gap: 4rem; }
.section-heading h2, .approach h2, .about h2, .enquiry h2 { font-size: clamp(3.5rem, 6vw, 6.4rem); letter-spacing: -0.04em; }
.section-heading > p { max-width: 430px; margin: 0 0 0.6rem; color: var(--muted); }
.labour-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 3rem 0 0; }
.labour-options > div { min-width: 0; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--line); border-top: 3px solid var(--orange); background: var(--white); }
.labour-options dt { color: var(--ocean); font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.labour-options dd { margin: 0.6rem 0 0; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1; }
.labour-options dd span { font-family: var(--body); font-size: 1rem; font-weight: 500; }
@media (max-width: 620px) {
  .labour-options { grid-template-columns: 1fr; }
  .labour-options > div { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.5rem 1rem; }
  .labour-options dd { margin: 0; }
}
.service-explorer { margin-top: 4.2rem; display: grid; grid-template-columns: 0.68fr 1.32fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-tabs { display: grid; align-content: start; border-right: 1px solid var(--line); }
.service-tab {
  position: relative;
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}
.service-tab:last-child { border-bottom: 0; }
.service-tab span { color: var(--ocean); font-family: var(--body); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.12em; }
.service-tab::after { content: "→"; margin-left: auto; color: var(--orange); opacity: 0; transform: translateX(-8px); transition: 180ms ease; }
.service-tab:hover, .service-tab.is-active { padding-left: 2rem; color: var(--white); background: var(--ink); }
.service-tab.is-active::after { opacity: 1; transform: none; }
.service-tab.is-active span { color: var(--orange); }
.service-panel { position: relative; min-height: 430px; display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 3rem; padding: clamp(2rem, 5vw, 4.5rem); overflow: hidden; }
.panel-number { position: absolute; top: -2.2rem; right: 1rem; color: rgba(7,25,39,0.035); font-family: var(--display); font-size: 16rem; font-weight: 800; line-height: 1; pointer-events: none; }
.panel-copy, .panel-fit { position: relative; z-index: 1; }
.panel-kicker { margin: 0 0 1rem; color: var(--ocean); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; }
.panel-copy h3 { max-width: 600px; font-size: clamp(2.7rem, 4vw, 4.5rem); letter-spacing: -0.03em; }
.panel-copy > p:not(.panel-kicker) { max-width: 620px; margin: 1.5rem 0; color: var(--muted); }
.panel-copy ul { margin: 1.6rem 0 0; padding: 0; list-style: none; }
.panel-copy li { padding: 0.75rem 0; border-top: 1px solid var(--line); font-weight: 600; }
.panel-copy li::before { content: "/"; margin-right: 0.8rem; color: var(--orange); }
.panel-fit { align-self: end; padding: 1.5rem; color: var(--white); background: var(--ocean); }
.panel-fit > span { font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; opacity: 0.72; }
.panel-fit p { margin: 0.6rem 0 1.2rem; font-size: 0.95rem; }
.text-link { padding: 0; border: 0; color: inherit; background: transparent; font-size: 0.78rem; font-weight: 800; cursor: pointer; }
.text-link span { margin-left: 0.4rem; }
.scope-note { max-width: 820px; margin: 1.3rem 0 0 auto; color: var(--muted); font-size: 0.78rem; }

.approach { position: relative; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(4rem, 10vw, 10rem); color: var(--white); background: var(--ink); overflow: hidden; }
.approach::after { content: ""; position: absolute; width: 760px; height: 760px; left: -480px; bottom: -500px; border: 1px solid rgba(21,174,209,0.2); border-radius: 50%; box-shadow: 0 0 0 100px rgba(21,174,209,0.02), 0 0 0 200px rgba(21,174,209,0.015); }
.approach-intro { position: relative; z-index: 1; }
.approach-intro p:last-child { max-width: 520px; margin-top: 1.8rem; color: #9fb0ba; }
.process-list { position: relative; z-index: 1; margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,0.14); }
.process-list li { display: grid; grid-template-columns: 75px 1fr; gap: 1.5rem; padding: 1.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.process-list > li > span { color: var(--orange); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; }
.process-list h3 { font-size: 2rem; letter-spacing: 0.01em; }
.process-list p { margin: 0.45rem 0 0; color: #9fb0ba; }

.about-card { position: relative; min-height: 520px; display: grid; grid-template-columns: 0.45fr 1fr 0.72fr; align-items: center; gap: clamp(2rem, 5vw, 5rem); padding: clamp(2rem, 5vw, 5rem); border: 1px solid var(--line); background: var(--white); box-shadow: 20px 20px 0 var(--mist); overflow: hidden; }
.about-card::before { content: ""; position: absolute; inset: 0; opacity: 0.42; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, #000, transparent 47%); }
.about-mark { position: relative; z-index: 1; aspect-ratio: 1; display: grid; place-items: center; color: var(--white); background: var(--orange); clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%); }
.about-mark::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,0.5); clip-path: inherit; }
.about-mark span { font-family: var(--display); font-size: clamp(4rem, 8vw, 7rem); font-weight: 800; letter-spacing: -0.08em; }
.about-copy { position: relative; z-index: 1; }
.about-copy p:last-child { margin: 1.7rem 0 0; color: var(--muted); }
.about-principles { position: relative; z-index: 1; display: grid; border-top: 1px solid var(--line); }
.about-principles div { display: grid; gap: 0.25rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.about-principles strong { font-family: var(--display); font-size: 1.55rem; text-transform: uppercase; }
.about-principles span { color: var(--muted); font-size: 0.78rem; }

.enquiry { scroll-margin-top: 76px; color: var(--white); background: linear-gradient(135deg, #087fa1, #075f80); }
.enquiry-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 4rem; }
.enquiry-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.enquiry-heading h2 em { color: #ffb18e; }
.enquiry-heading > p { max-width: 480px; margin: 0 0 0.6rem; color: #d3edf3; }
.enquiry-shell { margin-top: 4rem; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.enquiry-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(1.25rem, 3vw, 2rem); border-bottom: 1px solid var(--line); background: var(--paper); }
.enquiry-toolbar h3 { font-size: 2rem; }
.enquiry-toolbar p { margin: 0.5rem 0 0; color: var(--muted); font-size: 0.85rem; }
.enquiry-toolbar .button { flex-shrink: 0; }
.enquiry-frame { display: block; width: 100%; height: 1300px; border: 0; background: var(--white); }
.enquiry-help { margin: 0; padding: 1.25rem; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.8rem; text-align: center; }
.enquiry-help a { color: var(--ink); text-underline-offset: 3px; }

.site-footer { display: grid; grid-template-columns: 1.3fr 0.9fr 0.8fr; align-items: center; gap: 2rem; padding: 3rem max(1.5rem, calc((100vw - 1280px) / 2)); color: #8fa2ae; background: #04111b; font-size: 0.78rem; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; color: var(--white); }
.footer-brand div { display: grid; }
.footer-brand strong { font-family: var(--display); font-size: 1.2rem; text-transform: uppercase; }
.footer-brand div span { color: #8fa2ae; font-size: 0.68rem; }
.footer-meta { text-align: right; }
.footer-contact p { margin: 0 0 0.75rem; }
.footer-contact a { color: var(--white); text-underline-offset: 4px; }
.photo-credit { grid-column: 1 / -1; margin: -1rem 0 0; font-size: 0.66rem; opacity: 0.55; }
.mobile-cta { display: none; }

.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.8,.2,1); transition-delay: var(--delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1.08fr 0.92fr; gap: 2rem; }
  h1 { font-size: clamp(4.8rem, 8.6vw, 7rem); }
  .hero-visual { min-height: 470px; }
  .service-panel { grid-template-columns: 1fr; }
  .panel-fit { max-width: 480px; }
  .about-card { grid-template-columns: 0.4fr 1fr; }
  .about-principles { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .about-principles div { padding-right: 1rem; }
}

@media (max-width: 800px) {
  .site-header.is-open { color: var(--ink); background: var(--paper); }
  .nav-shell { width: min(100% - 2rem, 1440px); height: 76px; }
  .brand-copy small { display: none; }
  .menu-toggle { width: 46px; height: 46px; display: grid; place-content: center; gap: 6px; padding: 0; border: 1px solid currentColor; background: transparent; }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; display: block; background: currentColor; transition: transform 180ms ease; }
  .site-header.is-open .menu-toggle span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .site-header.is-open .menu-toggle span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: absolute; left: 0; right: 0; top: 76px; display: grid; gap: 0; padding: 0 1rem 1.25rem; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: 180ms ease; }
  .site-header.is-open .site-nav { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { padding: 0.85rem 0; border-top: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 0.5rem; padding: 0.85rem 1rem; color: var(--white); background: var(--orange); border: 0; }
  .hero { height: auto; min-height: 0; grid-template-columns: 1fr; padding-top: 8.5rem; padding-bottom: 6rem; }
  .hero-visual { height: 510px; margin-top: 2rem; }
  .scroll-cue { display: none; }
  .section-heading, .enquiry-heading { grid-template-columns: 1fr; gap: 1.8rem; }
  .enquiry-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .service-explorer { grid-template-columns: 1fr; }
  .service-tabs { grid-template-columns: 1fr 1fr; border-right: 0; }
  .service-tab { min-height: 78px; border-right: 1px solid var(--line); }
  .service-tab:nth-child(2n) { border-right: 0; }
  .service-tab::after { display: none; }
  .service-tab:hover, .service-tab.is-active { padding-left: 1.5rem; }
  .approach { grid-template-columns: 1fr; }
  .about-card { grid-template-columns: 180px 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-bottom: 6rem; }
  .footer-meta { text-align: left; }
  .photo-credit { grid-column: 1 / -1; }
  .mobile-cta { position: fixed; z-index: 45; left: 1rem; right: 1rem; bottom: 1rem; min-height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; color: var(--white); background: var(--orange); box-shadow: 0 10px 35px rgba(7,25,39,0.28); font-size: 0.82rem; font-weight: 800; text-decoration: none; transform: translateY(90px); transition: transform 250ms ease; }
  .mobile-cta.is-visible { transform: none; }
}

@media (max-width: 560px) {
  .section { padding-left: 1.15rem; padding-right: 1.15rem; }
  .hero { padding-left: 1.15rem; padding-right: 1.15rem; }
  h1 { font-size: clamp(4.25rem, 20vw, 6rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-strip { display: grid; }
  .hero-visual { height: 430px; min-height: 0; }
  .image-frame { right: 0.8rem; }
  .image-label { left: 1.2rem; right: 1.2rem; bottom: 1.2rem; }
  .measure-side, .corner-note { display: none; }
  .section-heading h2, .approach h2, .about h2, .enquiry h2 { font-size: clamp(3.2rem, 17vw, 4.8rem); }
  .service-tabs { grid-template-columns: 1fr; }
  .service-tab { min-height: 70px; border-right: 0; }
  .service-panel { min-height: 0; padding: 2rem 1.25rem; }
  .panel-number { font-size: 10rem; }
  .process-list li { grid-template-columns: 48px 1fr; }
  .about-card { grid-template-columns: 1fr; padding: 1.4rem; box-shadow: 10px 10px 0 var(--mist); }
  .about-mark { width: 150px; }
  .about-principles { grid-column: auto; grid-template-columns: 1fr; }
  .enquiry-toolbar { align-items: stretch; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .photo-credit { grid-column: auto; margin-top: -0.5rem; }
}

@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; }
  .reveal { opacity: 1; transform: none; }
  .image-frame img { transform: none; }
}
