:root {
  color-scheme: dark;
  --carbon: #0d0f12;
  --graphite: #191d21;
  --steel: #e7eaec;
  --steel-dark: #cfd5d9;
  --road-grey: #737982;
  --white: #ffffff;
  --text: #1a1d20;
  --text-muted: #59616a;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.76);
  --signal-red: #e23a2e;
  --signal-red-dark: #ab1f17;
  --service-amber: #ffcf65;
  --line: rgba(19, 23, 27, 0.15);
  --line-on-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 18px 48px rgba(13, 15, 18, 0.16);
  --radius: 0.5rem;
  --shell: min(1180px, calc(100% - 48px));
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: "Inter Tight", Inter, Arial, Helvetica, sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  line-height: 0.9;
}

h2 {
  max-width: 15ch;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.45rem;
  line-height: 1;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 20;
  left: 1rem;
  top: -4rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--signal-red-dark);
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  color: var(--service-amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow-red {
  color: var(--signal-red);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, var(--signal-red), var(--signal-red-dark));
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(226, 58, 46, 0.24);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

button.button,
.booking button {
  width: 100%;
  cursor: pointer;
}

.button:hover,
.booking button:hover {
  background: var(--signal-red);
  box-shadow: 0 14px 28px rgba(226, 58, 46, 0.32);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.5rem;
  padding-inline: 0.9rem;
  font-size: 0.78rem;
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: var(--line-on-dark);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.text-link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.text-link {
  position: relative;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-inner,
.footer-inner {
  min-height: 5.75rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: block;
  width: 11.5rem;
  flex: 0 0 auto;
}

.site-logo img,
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav,
.header-actions {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
}

.site-nav a,
.header-phone {
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.header-phone:hover {
  color: var(--service-amber);
}

.header-phone {
  color: var(--white);
}

.hero {
  min-height: min(800px, 100svh);
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(9rem, 18vh, 12rem) 0 clamp(3rem, 8vh, 6rem);
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 40%, rgba(226, 58, 46, 0.38), transparent 0 13%),
    linear-gradient(127deg, transparent 0 53%, rgba(255, 255, 255, 0.06) 53.15% 54%, transparent 54.15% 100%),
    linear-gradient(39deg, transparent 0 67%, rgba(226, 58, 46, 0.38) 67.15% 68.1%, transparent 68.25% 100%),
    linear-gradient(135deg, var(--carbon), var(--graphite));
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.94) 0%, rgba(7, 9, 12, 0.72) 48%, rgba(7, 9, 12, 0.12) 100%), linear-gradient(0deg, rgba(7, 9, 12, 0.38), rgba(7, 9, 12, 0.12));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.42fr);
  gap: 3rem;
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 1.5rem;
}

.hero-intro {
  max-width: 39rem;
  color: var(--text-on-dark-muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

.hero-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-service-list li {
  padding: 0.45rem 0.65rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
}

.hero-contact-card {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  background: rgba(13, 15, 18, 0.8);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.hero-contact-card p {
  color: var(--service-amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-contact-card strong {
  font-size: 1.1rem;
  line-height: 1.35;
}

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  display: grid;
  gap: 1.4rem;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.section-heading-split {
  grid-template-columns: minmax(0, 1.1fr) minmax(14rem, 0.55fr);
  align-items: end;
}

.section-heading h2,
.booking-copy h2,
.workshop-copy h2,
.contact-grid h2 {
  margin-top: 0.75rem;
}

.section-heading > p,
.booking-copy > p,
.workshop-copy > p {
  color: var(--text-muted);
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, transform 160ms ease;
}

.service-card:hover {
  background: #f6f7f8;
  transform: translateY(-3px);
}

.service-number {
  color: var(--signal-red);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card .text-link {
  margin-top: auto;
}

.section-dark {
  color: var(--white);
  background: var(--graphite);
}

.workshop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.workshop-surface {
  min-height: 25rem;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(226, 58, 46, 0.76) 46.15% 48%, transparent 48.15% 100%),
    linear-gradient(35deg, transparent 0 55%, rgba(255, 255, 255, 0.1) 55.15% 56%, transparent 56.15% 100%),
    linear-gradient(135deg, #101418, #30373d);
}

.workshop-surface::after {
  position: absolute;
  inset: 1.25rem;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius) - 0.1rem);
}

.surface-wheel {
  position: absolute;
  display: block;
  border: clamp(0.8rem, 2vw, 1.4rem) solid rgba(231, 234, 236, 0.85);
  border-radius: 50%;
  box-shadow: inset 0 0 0 clamp(0.6rem, 1.5vw, 1rem) rgba(13, 15, 18, 0.78), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.surface-wheel-large {
  width: clamp(14rem, 28vw, 22rem);
  height: clamp(14rem, 28vw, 22rem);
  right: -4rem;
  bottom: -4rem;
}

.surface-wheel-small {
  width: clamp(7rem, 14vw, 11rem);
  height: clamp(7rem, 14vw, 11rem);
  top: 2.8rem;
  left: 2.8rem;
}

.surface-line {
  position: absolute;
  display: block;
  height: 0.35rem;
  background: var(--signal-red);
  transform: rotate(-35deg);
}

.surface-line-top {
  width: 53%;
  top: 26%;
  right: -5%;
}

.surface-line-bottom {
  width: 64%;
  bottom: 27%;
  left: -11%;
}
}

.workshop-copy {
  display: grid;
  gap: 1.25rem;
}

.workshop-copy > p {
  color: var(--text-on-dark-muted);
}

.workshop-copy .button {
  width: fit-content;
  margin-top: 0.35rem;
}

.booking-section {
  scroll-margin-top: 1rem;
  background: #f8f9fa;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(20rem, 1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.booking-copy {
  display: grid;
  gap: 1.2rem;
}

.booking-phone {
  display: grid;
  gap: 0.3rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.booking-phone a {
  width: fit-content;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.booking {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  color: var(--white);
  background: var(--carbon);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-width: 0;
  height: 2.8rem;
  padding: 0 0.75rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.3rem;
  outline: none;
}

select option {
  color: var(--text);
  background: var(--white);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

input:focus,
select:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--service-amber);
}

.booking button {
  min-height: 3rem;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(180deg, var(--signal-red), var(--signal-red-dark));
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(226, 58, 46, 0.24);
}

.booking button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--text-on-dark-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.booking-status[data-state="success"] {
  color: #9ee7b7;
}

.booking-status[data-state="error"] {
  color: #ffb3ad;
}

.section-steel {
  background: var(--steel);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(15rem, 0.7fr) auto;
  gap: 2rem;
  align-items: end;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-list div {
  display: grid;
  gap: 0.25rem;
}

.contact-list dt {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.contact-list a {
  text-decoration: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: var(--carbon);
}

.site-footer img {
  width: 9rem;
}

.footer-inner {
  min-height: 6.5rem;
}

.site-footer p,
.site-footer a {
  font-size: 0.76rem;
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid var(--service-amber);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading-split,
  .workshop-grid,
  .booking-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-contact-card {
    width: min(100%, 22rem);
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid .button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .site-header {
    position: relative;
    color: var(--white);
    background: var(--carbon);
  }

  .header-inner {
    min-height: 4.8rem;
    gap: 0.8rem;
  }

  .site-logo {
    width: 8.8rem;
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    min-height: 42rem;
    padding-top: 5.5rem;
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(7, 9, 12, 0.94), rgba(7, 9, 12, 0.45)), linear-gradient(0deg, rgba(7, 9, 12, 0.5), rgba(7, 9, 12, 0.12));
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-contact-card {
    display: none;
  }

  .service-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 14rem;
  }

  .workshop-surface {
    min-height: 18rem;
  }

  .site-footer img {
    width: 7.5rem;
  }

  .footer-inner {
    min-height: 8rem;
    flex-wrap: wrap;
    gap: 0.7rem 1.25rem;
    align-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Shared PHP shell. Legacy .html pages retain their existing class names above. */
.shell-page {
  color: var(--text);
  background: var(--white);
}

.shell-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.shell-skip-link {
  position: fixed;
  z-index: 100;
  top: -4rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--signal-red-dark);
  border-radius: var(--radius);
  text-decoration: none;
}

.shell-skip-link:focus { top: 1rem; }

.shell-header,
.shell-footer {
  color: var(--white);
  background: var(--carbon);
}

.shell-header { border-bottom: 1px solid var(--line-on-dark); }

.shell-header__inner,
.shell-footer__inner {
  min-height: 5.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.shell-header__logo,
.shell-footer__logo { display: flex; min-width: 44px; min-height: 44px; align-items: center; flex: 0 0 auto; }
.shell-header__logo img { width: 10.5rem; display: block; }
.shell-footer__logo img { width: 9rem; display: block; }

.shell-header__phone,
.shell-header__book,
.shell-footer a {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.shell-header__actions { display: flex; gap: 0.4rem; align-items: center; }
.shell-header__phone,
.shell-header__book {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.7rem;
  border-radius: 0.3rem;
}
.shell-header__book {
  color: var(--white);
  background: linear-gradient(180deg, var(--signal-red), var(--signal-red-dark));
  box-shadow: 0 10px 24px rgba(226, 58, 46, 0.24);
}
.shell-header__book:hover,
.shell-header__book:focus-visible { background: var(--signal-red); }

.shell-nav { margin-left: auto; }
.shell-nav__menu-button { display: none; }
.shell-nav__list,
.shell-nav__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell-nav__list {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.shell-nav__item { position: relative; }
.shell-nav__link-row { display: flex; align-items: center; }
.shell-nav a,
.shell-nav__disclosure {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0.7rem;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 0.3rem;
}

.shell-nav a:hover,
.shell-nav a:focus-visible,
.shell-nav a[aria-current],
.shell-nav__disclosure:hover,
.shell-nav__disclosure:focus-visible,
.shell-nav__disclosure.is-current-section {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.shell-button {
  color: var(--white);
  background: linear-gradient(180deg, var(--signal-red), var(--signal-red-dark));
  box-shadow: 0 10px 24px rgba(226, 58, 46, 0.24);
}

.shell-nav__disclosure {
  width: 44px;
  min-width: 44px;
  padding: 0;
  justify-content: center;
  cursor: pointer;
}
.shell-nav__disclosure.shell-nav__services-button {
  width: auto;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
}
.shell-nav__chevron {
  width: 0.55rem;
  height: 0.55rem;
  display: block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 160ms ease;
}
.shell-nav__disclosure[aria-expanded="true"] .shell-nav__chevron { transform: rotate(225deg) translate(-1px, -1px); }
.shell-nav__sublist {
  width: min(58rem, calc(100vw - 2rem));
  max-height: calc(100vh - 6.5rem);
  position: fixed;
  z-index: 10;
  top: calc(5.5rem + 0.45rem);
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.75rem;
  background: var(--graphite);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.has-navigation-js .shell-nav__sublist[hidden] { display: none; }

@media (min-width: 761px) and (hover: hover) and (pointer: fine) {
  .shell-nav__item--has-children::after {
    content: "";
    width: 100%;
    height: 2rem;
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
  }
}

.shell-nav__sublist a { display: flex; width: 100%; }
.shell-nav__sublist-overview,
.shell-nav__sublist-book { grid-column: 1 / -1; }
.shell-nav__sublist-book a { color: var(--white); background: linear-gradient(180deg, var(--signal-red), var(--signal-red-dark)); }
.shell-nav__group-label { display: block; margin: 0.45rem 0.7rem; color: var(--service-amber); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.shell-nav__group-list { margin: 0; padding: 0; list-style: none; }
.visually-hidden {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.shell-eyebrow {
  color: var(--service-amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.shell-eyebrow--red { color: var(--signal-red); }
.shell-button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}
.shell-button--outline {
  color: var(--white);
  background: rgba(7, 9, 10, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: none;
}
.shell-button--outline:hover { background: rgba(7, 9, 10, 0.84); }

.gateway-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 43rem;
  min-height: clamp(43rem, calc(100svh - 5rem), 58rem);
  padding: clamp(5rem, 12vw, 9rem) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}
.gateway-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(7, 9, 10, 0.99) 0%,
      rgba(7, 9, 10, 0.96) 24%,
      rgba(7, 9, 10, 0.84) 43%,
      rgba(7, 9, 10, 0.42) 63%,
      rgba(7, 9, 10, 0.08) 82%,
      rgba(7, 9, 10, 0) 100%),
    linear-gradient(180deg, rgba(7, 9, 10, 0.14), rgba(7, 9, 10, 0.24));
}
.gateway-hero__layout,
.gateway-how,
.book-form-layout {
  display: grid;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
}
.gateway-hero__layout {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 42rem) minmax(0, 1fr);
  gap: 2rem;
  align-content: center;
  align-items: end;
}
.gateway-hero__content {
  grid-column: 1;
  max-width: 42rem;
  align-self: end;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.38);
}
.gateway-hero__picture {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}
.gateway-hero__picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.gateway-how,
.book-form-layout {
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.45fr);
}
.gateway-hero h1,
.book-intro h1,
.gateway-section h2,
.gateway-final h2,
.book-form-section h2 {
  max-width: 14ch;
  margin: 0.8rem 0 1.25rem;
  font-family: "Inter Tight", Inter, Arial, sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.93;
}
.gateway-hero h1,
.book-intro h1 { font-size: clamp(3rem, 5.7vw, 5.5rem); }
.gateway-section h2,
.gateway-final h2,
.book-form-section h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
.gateway-hero p:not(.shell-eyebrow),
.book-intro p,
.book-form-section p { max-width: 39rem; line-height: 1.65; }
.gateway-hero .shell-button { margin-top: 1.5rem; }
.gateway-hero__actions,
.gateway-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.gateway-hero__actions { margin-top: 1.5rem; }
.gateway-hero__actions .shell-button { margin-top: 0; }
.gateway-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 2rem 0 0;
  padding: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.5;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}
.gateway-proof li { display: flex; gap: 0.25rem; }
.gateway-proof li + li::before { margin-right: 0.55rem; color: var(--service-amber); content: "·"; }
.gateway-proof strong { color: var(--white); }
.gateway-hero__contact {
  grid-column: 1;
  width: min(100%, 18rem);
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  background: rgba(7, 9, 10, 0.78);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
}
.gateway-hero__contact a { color: var(--service-amber); font-weight: 800; text-decoration: none; }
.gateway-section,
.book-form-section { padding: clamp(4rem, 9vw, 8rem) 0; }
.gateway-section--steel { background: var(--steel); }
.gateway-section--services { background: #f4f6f7; }
.gateway-section--dark { color: var(--white); background: var(--graphite); }
.gateway-section--local { background: var(--white); }
.gateway-section--reviews { color: var(--white); background: #15181b; }
.gateway-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.58fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}
.gateway-section__heading > p,
.gateway-feature__content > p,
.gateway-reviews p,
.gateway-final p {
  max-width: 42rem;
  margin: 0;
  line-height: 1.7;
}
.gateway-section__heading--compact { align-items: center; }
.gateway-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.gateway-service-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--white);
}
.gateway-service-card__number {
  margin-bottom: auto;
  color: var(--signal-red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.gateway-service-card h3 {
  margin: 2rem 0 0.7rem;
  font-family: "Inter Tight", Inter, Arial, sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1;
}
.gateway-service-card p { min-height: 4.8em; margin: 0 0 1.5rem; color: var(--text-muted); line-height: 1.6; }
.gateway-service-card a,
.gateway-text-link,
.gateway-inline-link {
  width: fit-content;
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}
.gateway-service-card a { display: flex; gap: 0.75rem; justify-content: space-between; }
.gateway-service-card a span,
.gateway-text-link span { color: var(--signal-red); }
.gateway-text-link { display: inline-flex; gap: 0.75rem; margin-top: 2rem; }
.gateway-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}
.gateway-section--dark .gateway-inline-link,
.gateway-section--dark .gateway-text-link,
.gateway-section--reviews .gateway-text-link { color: var(--white); }
.gateway-feature__content { display: grid; gap: 1.5rem; }
.gateway-reviews {
  display: grid;
  grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
}
.gateway-rating {
  display: grid;
  width: min(100%, 18rem);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}
.gateway-rating strong { color: var(--service-amber); font-family: "Inter Tight", Inter, Arial, sans-serif; font-size: clamp(4.5rem, 9vw, 7.5rem); line-height: 0.8; }
.gateway-rating span { margin-top: 0.8rem; font-weight: 850; }
.gateway-rating small { margin-top: 0.25rem; color: rgba(255, 255, 255, 0.68); }
.gateway-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 3rem 0 0;
  padding: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  list-style: none;
}
.gateway-steps li { min-height: 14rem; display: grid; align-content: start; padding: 1.7rem; background: var(--white); }
.gateway-steps li > span { width: 2.25rem; height: 2.25rem; display: grid; place-items: center; margin-bottom: 2rem; color: var(--white); font-weight: 900; background: var(--signal-red); border-radius: 50%; }
.gateway-steps strong { font-size: 1.05rem; }
.gateway-steps p { margin: 0.65rem 0 0; color: var(--text-muted); line-height: 1.6; }
.gateway-final { padding: clamp(4.5rem, 9vw, 8rem) 0; color: var(--white); background: var(--carbon); }
.gateway-final__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.42fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}
.gateway-final__layout .gateway-action-row { margin-top: 1.75rem; }
.gateway-final__details { display: grid; gap: 0.55rem; padding: 1.5rem; background: rgba(255, 255, 255, 0.07); border: 1px solid var(--line-on-dark); border-radius: var(--radius); }
.gateway-final__details > a { color: var(--service-amber); font-weight: 850; text-decoration: none; }
.gateway-final__details dl { display: grid; gap: 0.45rem; margin: 0.85rem 0 0; padding-top: 0.85rem; border-top: 1px solid var(--line-on-dark); }
.gateway-final__details dl div { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; justify-content: space-between; }
.gateway-final__details dt,
.gateway-final__details dd { margin: 0; }
.gateway-final__details dd { color: rgba(255, 255, 255, 0.72); }
.gateway-service-links { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2rem; border: 1px solid var(--line); }
.gateway-service-links a { min-height: 9rem; display: flex; align-items: end; justify-content: space-between; padding: 1.25rem; color: var(--text); font-weight: 800; text-decoration: none; border-right: 1px solid var(--line); }
.gateway-service-links a:hover { background: var(--white); }
.gateway-service-links span { color: var(--signal-red); }
.gateway-how { grid-template-columns: minmax(0, 0.85fr) minmax(14rem, 0.7fr) auto; }
.gateway-how ol { margin: 0; padding-left: 1.25rem; line-height: 1.7; }
.book-intro {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(27rem, 42vw, 35rem);
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}
.book-intro::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(7, 9, 10, 1) 0%,
      rgba(7, 9, 10, 0.98) 31%,
      rgba(7, 9, 10, 0.72) 54%,
      rgba(7, 9, 10, 0.16) 78%,
      rgba(7, 9, 10, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 9, 10, 0.12), rgba(7, 9, 10, 0.3));
}
.book-intro .shell-wrap {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.82);
}
.book-intro__picture {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
}
.book-intro__picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right center;
  transform: scale(1.14);
  transform-origin: right center;
}
.book-form-section { background: #f8f9fa; }
.book-form-section__help {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--service-amber);
}
.book-form-section__help strong { color: var(--text); }
.book-form-section__phone { margin-top: 1.25rem; }
.book-form-section__phone a { color: var(--text); font-weight: 800; }
.book-confidence {
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: var(--white);
  background: var(--carbon);
}
.book-confidence__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.42fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}
.book-confidence__copy { max-width: 42rem; }
.book-confidence h2 {
  max-width: 14ch;
  margin: 0.8rem 0 1.25rem;
  font-family: "Inter Tight", Inter, Arial, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}
.book-confidence__copy p:not(.shell-eyebrow) {
  max-width: 39rem;
  line-height: 1.65;
}
.book-confidence__address {
  display: grid;
  gap: 0.65rem;
  padding: 1.5rem;
  font-style: normal;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
}
.book-confidence__address strong { color: var(--service-amber); }
.book-confidence__address a { color: var(--white); font-weight: 800; }
.shell-footer { background: #060708; }
.shell-footer__inner { min-height: 7rem; color: rgba(255, 255, 255, 0.66); font-size: 0.78rem; }
.shell-footer__inner p { margin: 0; }
.shell-footer__inner div { display: grid; gap: 0.3rem; }
.shell-not-found { min-height: 55vh; padding: clamp(5rem, 12vw, 10rem) 0; background: var(--steel); }
.shell-not-found h1 { max-width: 12ch; margin: 0.8rem 0 1.5rem; font-family: "Inter Tight", Inter, Arial, sans-serif; font-size: clamp(3rem, 7vw, 6rem); line-height: 0.93; letter-spacing: -0.04em; }

@media (max-width: 900px) {
  .gateway-hero__layout { grid-template-columns: 1fr; }
  .gateway-hero::after {
    background:
      linear-gradient(90deg,
        rgba(7, 9, 10, 0.99) 0%,
        rgba(7, 9, 10, 0.95) 48%,
        rgba(7, 9, 10, 0.76) 72%,
        rgba(7, 9, 10, 0.28) 100%),
      linear-gradient(180deg, rgba(7, 9, 10, 0.12), rgba(7, 9, 10, 0.42));
  }
  .gateway-hero__contact { grid-column: 1; }
  .book-intro::after {
    background:
      linear-gradient(90deg,
        rgba(7, 9, 10, 0.99) 0%,
        rgba(7, 9, 10, 0.94) 48%,
        rgba(7, 9, 10, 0.62) 68%,
        rgba(7, 9, 10, 0.18) 84%,
        rgba(7, 9, 10, 0) 100%),
      linear-gradient(180deg, rgba(7, 9, 10, 0.04), rgba(7, 9, 10, 0.16));
  }
  .gateway-section__heading,
  .gateway-feature,
  .gateway-reviews,
  .gateway-final__layout { grid-template-columns: 1fr; }
  .gateway-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gateway-section__heading > p { max-width: 46rem; }
}

@media (max-width: 760px) {
  .shell-wrap { width: min(100% - 32px, 1180px); }
  .shell-header__inner { min-height: 4.7rem; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 0.5rem; }
  .shell-header__logo img { width: 6.9rem; }
  .shell-header__actions { gap: 0.25rem; }
  .shell-header__phone { width: 44px; padding: 0; font-size: 0; }
  .shell-header__phone::after { content: "Call"; font-size: 0.67rem; }
  .shell-header__book { padding: 0.55rem 0.65rem; font-size: 0.72rem; }
  .shell-nav { width: 100%; grid-column: 1 / -1; order: 3; margin-left: 0; }
  .has-navigation-js .shell-nav__menu-button { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; gap: 0.5rem; padding: 0.55rem 0.7rem; color: var(--white); font: inherit; font-size: 0.8rem; font-weight: 800; background: transparent; border: 1px solid var(--line-on-dark); border-radius: 0.3rem; }
  .has-navigation-js .shell-nav__menu-button span { width: 1rem; height: 2px; display: block; background: currentColor; box-shadow: 0 5px currentColor, 0 -5px currentColor; }
  .shell-nav__list { flex-direction: column; align-items: stretch; }
  .has-navigation-js .shell-nav__list[hidden] { display: none; }
  .shell-nav__item { width: 100%; }
  .shell-nav__link-row { justify-content: space-between; }
  .shell-nav__link-row > a,
  .shell-nav__link-row > .shell-nav__services-button { flex: 1; }
  .shell-nav__services-button { width: 100%; justify-content: space-between; }
  .shell-nav__sublist { width: auto; max-height: none; position: static; display: block; margin: 0 0 0.4rem; padding: 0 0 0 0.7rem; box-shadow: none; overflow: visible; transform: none; }
  .shell-nav__group { display: contents; }
  .shell-nav__group-label { display: none; }
  .shell-nav__group-list { margin: 0; padding: 0; list-style: none; }
  .shell-nav__sublist-book { display: none; }
  .gateway-how,
  .book-form-layout,
  .book-confidence__layout { grid-template-columns: 1fr; }
  .gateway-service-grid,
  .gateway-steps { grid-template-columns: 1fr; }
  .gateway-service-card { min-height: 14rem; }
  .gateway-service-card p { min-height: 0; }
  .gateway-hero__actions .shell-button,
  .gateway-final .shell-button { width: 100%; }
  .gateway-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .gateway-proof li + li::before { display: none; }
  .gateway-service-links { grid-template-columns: 1fr; }
  .gateway-service-links a { min-height: 4.5rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .shell-footer__inner { padding: 1.5rem 0; align-items: flex-start; flex-direction: column; }
}
