:root {
  color-scheme: dark;
  --ink: #070a0d;
  --ink-soft: #0d1217;
  --panel: #11171d;
  --panel-2: #161d24;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --white: #f5f8fb;
  --muted: #aab3bd;
  --blue: #31a8ff;
  --blue-bright: #62beff;
  --blue-dark: #0874bd;
  --shell: min(1240px, calc(100% - 48px));
  --radius: 3px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--blue);
  color: #00131f;
}

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

.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;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(7, 10, 13, 0.84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: auto;
  height: 66px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.site-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-nav > a:hover {
  color: var(--white);
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav > a.button {
  color: #00131f;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 23px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #00131f;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.button:hover {
  border-color: var(--blue-bright);
  background: var(--blue-bright);
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--small {
  min-height: 44px;
  padding-inline: 18px;
  color: #00131f;
  font-size: 14px;
}

.button--ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -220px;
  left: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(49, 168, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 36%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.68) contrast(1.08) brightness(0.75);
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, #070a0d 0%, rgba(7, 10, 13, 0.98) 29%, rgba(7, 10, 13, 0.55) 57%, rgba(7, 10, 13, 0.15) 100%),
    linear-gradient(0deg, rgba(7, 10, 13, 0.68) 0%, transparent 42%);
}

.hero-inner {
  display: flex;
  min-height: 810px;
  align-items: center;
  justify-content: space-between;
  padding-top: 74px;
  padding-bottom: 94px;
}

.hero-copy {
  width: min(680px, 65%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 25px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.booking-band h2,
.dialog-heading h2,
.booking-result h2 {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 92px);
  font-weight: 780;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.75);
}

.hero-lead {
  max-width: 580px;
  margin: 32px 0 0;
  color: #c7ced5;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.hero-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 31px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.hero-contact a {
  transition: color 180ms ease;
}

.hero-contact a:hover {
  color: var(--white);
}

.hero-contact > span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-note {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  align-self: flex-end;
  margin-bottom: 72px;
  padding-right: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-note-number {
  color: var(--white);
  font-size: 70px;
  font-weight: 200;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid var(--line);
  background: rgba(7, 10, 13, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-rail-inner {
  display: flex;
  height: 72px;
  align-items: center;
}

.hero-rail-inner span {
  flex: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-rail-inner span + span {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.section {
  padding: 132px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.about-copy h2,
.booking-band h2 {
  font-size: clamp(42px, 5vw, 67px);
  line-height: 1.02;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.14fr 1fr 1fr;
  gap: 12px;
}

.service-card {
  position: relative;
  min-height: 525px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  isolation: isolate;
}

.service-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.72) contrast(1.08);
  transition: filter 700ms var(--ease), transform 900ms var(--ease);
}

.service-card--wash img {
  object-position: 45% center;
}

.service-card--coating img {
  object-position: 52% 40%;
}

.service-card-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 6, 8, 0.98) 0%, rgba(3, 6, 8, 0.72) 40%, rgba(3, 6, 8, 0.03) 78%);
}

.service-card-content {
  display: flex;
  min-height: 525px;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
}

.service-index {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.service-card h3 {
  margin: 0;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 12px 0 22px;
  color: #b7c0c8;
  font-size: 15px;
  line-height: 1.58;
}

.service-card button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.service-card button span {
  color: var(--blue-bright);
  font-size: 18px;
  transition: transform 180ms ease;
}

.service-card:hover img {
  filter: saturate(0.8) brightness(0.78) contrast(1.06);
  transform: scale(1.035);
}

.service-card:hover button span {
  transform: translate(3px, -3px);
}

.projects {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 10%, rgba(49, 168, 255, 0.09), transparent 28%),
    var(--ink);
}

.projects::after {
  position: absolute;
  right: -160px;
  bottom: 90px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(49, 168, 255, 0.11);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-heading--projects {
  margin-bottom: 48px;
}

.projects--home .project-card--archive-only {
  display: none;
}

.project-actions {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.projects-page-main {
  padding-top: 88px;
}

.projects--archive {
  padding-top: 82px;
}

.projects-back {
  display: inline-flex;
  margin-bottom: 45px;
  color: var(--blue-bright);
  font-size: 14px;
  font-weight: 750;
}

.projects-back:hover {
  color: var(--white);
}

.projects-archive-heading h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 67px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.project-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.project-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.34fr) minmax(330px, 0.66fr);
}

.project-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--panel-2);
}

.project-card--featured .project-media {
  min-height: 590px;
}

.project-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.82) contrast(1.04) brightness(0.9);
  transition: filter 600ms var(--ease), transform 800ms var(--ease);
}

.project-video {
  background: #05080b;
  filter: none;
  object-fit: contain;
}

.project-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.project-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.project-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: rgba(7, 10, 13, 0.86);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.project-slide--video figcaption {
  top: 18px;
  right: auto;
  bottom: auto;
}

.carousel-controls {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(7, 10, 13, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.carousel-controls button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.carousel-controls button:hover {
  background: var(--blue);
  color: #00131f;
}

.carousel-count {
  min-width: 38px;
  color: var(--white);
  font-size: 12px;
  font-weight: 750;
  text-align: center;
}

.project-card--featured .project-main-image {
  object-position: center 48%;
}

.project-card:nth-child(3) .project-main-image {
  object-position: center 68%;
}

.project-card:nth-child(4) .project-main-image {
  object-position: center 46%;
}

.project-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 6, 8, 0.44), transparent 42%);
  content: "";
  z-index: 1;
  pointer-events: none;
}

.project-media[data-carousel]::after {
  display: none;
}

.project-copy {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 17px;
  align-items: start;
  padding: 30px;
  border-top: 1px solid var(--line);
}

.project-card--featured .project-copy {
  align-content: end;
  padding: 42px;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.project-number {
  padding-top: 8px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-kicker {
  margin: 0 0 8px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 39px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.project-copy div > p:last-child {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.project-card:hover .project-main-image {
  filter: saturate(1) contrast(1.02) brightness(0.98);
  transform: scale(1.025);
}

.project-card:hover .project-video {
  filter: none;
  transform: none;
}

.prices {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}

.prices::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 1px;
  background: var(--blue);
  content: "";
}

.price-stack {
  border-top: 1px solid var(--line-strong);
}

.price-group {
  display: grid;
  grid-template-columns: 0.56fr 1.44fr;
  gap: 50px;
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.price-group-title {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.price-group-title > span {
  margin-top: 9px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price-group-title h3 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.04em;
}

.recommendation {
  margin: 0 0 4px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-list {
  display: flex;
  flex-direction: column;
}

.price-list button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: padding 220ms var(--ease), background 220ms ease;
}

.price-list button:first-child {
  border-top: 1px solid var(--line);
}

.price-list button:hover {
  padding-right: 15px;
  padding-left: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.price-list button > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price-list strong {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 17px;
}

.price-list strong em {
  font-style: normal;
}

.package-fit,
.package-badge {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 3px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.package-badge {
  border-color: var(--blue);
  background: var(--blue);
  color: #00131f;
}

.price-list small {
  color: var(--muted);
  font-size: 13px;
}

.price-list .price {
  flex: 0 0 auto;
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.price-list .price::after {
  margin-left: 3px;
  color: var(--muted);
  content: ",–";
  font-size: 14px;
  font-weight: 500;
}

.price-list .price small {
  margin-right: 4px;
  font-size: 12px;
  font-weight: 650;
}

.extras {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 30px;
  margin-top: -26px;
  color: var(--muted);
  font-size: 13px;
}

.extras span {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.extras strong {
  color: #dbe2e8;
  font-weight: 650;
}

.included {
  grid-column: 2;
  margin: -28px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.price-group--featured {
  position: relative;
}

.price-group--featured::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -24px;
  width: 2px;
  background: var(--blue);
  content: "";
}

.price-choice--popular {
  position: relative;
}

.price-choice--popular::before {
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: -15px;
  width: 2px;
  background: var(--blue);
  content: "";
}

.coating-products {
  grid-column: 2;
  margin: -24px 0 0;
  padding: 17px 19px;
  border: 1px solid var(--line);
  background: rgba(49, 168, 255, 0.055);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.coating-products strong {
  color: var(--white);
}

.addon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.addon-row > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 23px 0 0;
  border-top: 1px solid var(--line-strong);
}

.addon-row span {
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.maintenance-kit {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  margin-top: 68px;
  border: 1px solid var(--line-strong);
  background: #0b1015;
}

.maintenance-kit-intro {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 40px;
  border-right: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 10% 5%, rgba(49, 168, 255, 0.17), transparent 38%),
    #090e13;
}

.maintenance-kit-intro h3 {
  margin: 18px 0 16px;
  color: var(--white);
  font-size: clamp(35px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.maintenance-kit-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.maintenance-kit-price {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid var(--line-strong);
}

.maintenance-kit-price > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.maintenance-kit-price span,
.maintenance-kit-price del {
  color: var(--muted);
  font-size: 13px;
}

.maintenance-kit-price strong {
  color: var(--white);
  font-size: 31px;
  letter-spacing: -0.04em;
}

.maintenance-kit-price del {
  text-decoration-color: var(--blue);
  text-decoration-thickness: 2px;
}

.maintenance-kit-button {
  width: 100%;
  justify-content: space-between;
  margin-top: 24px;
}

.maintenance-kit-details {
  padding: 40px;
}

.maintenance-kit-includes > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.maintenance-kit-includes ul,
.maintenance-kit-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.maintenance-kit-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.maintenance-kit-includes li {
  position: relative;
  padding: 13px 14px 13px 38px;
  border: 1px solid var(--line);
  color: #dbe2e8;
  font-size: 14px;
  line-height: 1.4;
}

.maintenance-kit-includes li::before {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.maintenance-kit-guide {
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.maintenance-kit-guide summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.maintenance-kit-guide summary::-webkit-details-marker {
  display: none;
}

.maintenance-kit-guide summary span {
  color: var(--blue-bright);
  font-size: 22px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.maintenance-kit-guide[open] summary span {
  transform: rotate(45deg);
}

.maintenance-kit-steps {
  padding-top: 8px;
}

.maintenance-kit-steps ol {
  counter-reset: wash-step;
}

.maintenance-kit-steps li {
  position: relative;
  min-height: 53px;
  padding: 0 0 18px 50px;
  color: var(--muted);
  counter-increment: wash-step;
  font-size: 14px;
  line-height: 1.55;
}

.maintenance-kit-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--blue-bright);
  content: counter(wash-step, decimal-leading-zero);
  font-size: 10px;
  font-weight: 800;
}

.maintenance-kit-steps li:not(:last-child)::after {
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: var(--line);
  content: "";
}

.maintenance-kit-steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 15px;
}

.maintenance-kit-note {
  margin: 3px 0 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #7f8992;
  font-size: 12px;
  line-height: 1.55;
}

.addon-row strong {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 15px;
}

.addon-row em {
  font-style: normal;
  font-weight: 700;
}

.addon-row em::after {
  color: var(--muted);
  content: ",–";
  font-size: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 10%;
  align-items: center;
}

.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 22%, rgba(49, 168, 255, 0.08), transparent 26%),
    var(--ink);
}

.about-minimal {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}

.about-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(46px, 5.5vw, 74px);
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.about-copy--minimal {
  padding-top: 42px;
}

.about-copy--minimal .about-lead {
  max-width: 610px;
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
}

.about-facts {
  margin-top: 39px;
  border-top: 1px solid var(--line-strong);
}

.about-fact {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.about-fact > span {
  padding-top: 4px;
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-fact p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.about-fact strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 16px;
}

.about-fact em {
  color: var(--blue-bright);
  font-style: normal;
}

.about-fact--link {
  transition: padding 180ms ease, background 180ms ease;
}

.about-fact--link:hover {
  padding-inline: 14px;
  background: rgba(49, 168, 255, 0.055);
}

.about-button {
  margin-top: 34px;
}

.about-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--panel);
}

.about-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  content: "";
}

.about-media > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: 60% center;
  filter: saturate(0.45) contrast(1.12) brightness(0.74);
}

.about-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 190px;
  height: 100px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  background: var(--blue);
  color: #00131f;
}

.about-stamp img {
  width: 148px;
  height: auto;
}

.about-copy h2 {
  max-width: 560px;
}

.about-lead {
  max-width: 580px;
  margin: 31px 0 0;
  color: #c3cbd2;
  font-size: 18px;
}

.approval-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  padding: 15px 17px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease;
}

.approval-card:hover {
  border-color: var(--blue);
  background: rgba(49, 168, 255, 0.06);
}

.approval-mark {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #00131f;
  font-size: 18px;
  font-weight: 900;
}

.approval-card strong,
.approval-card small {
  display: block;
}

.approval-card strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.approval-card small {
  color: var(--blue-bright);
  font-size: 12px;
}

.about-points {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.about-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-points > div > span {
  color: var(--blue-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-points strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 31px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid var(--blue);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
}

.text-link span {
  color: var(--blue-bright);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.faq {
  border-top: 1px solid var(--line);
  background: #080b0f;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 9%;
}

.faq-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-heading h2 {
  margin-top: 18px;
  font-size: clamp(42px, 5vw, 67px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.faq-heading > p:last-child {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line-strong);
}

.faq-list summary {
  position: relative;
  padding: 25px 55px 25px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 2px;
  color: var(--blue-bright);
  content: "+";
  font-size: 27px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -7px 55px 25px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.booking-band {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background: var(--blue);
  color: #00131f;
}

.booking-band::after {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(0, 19, 31, 0.25);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.booking-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.booking-band .eyebrow {
  color: #00385b;
}

.booking-band-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 13px;
  margin-bottom: 4px;
}

.button--light {
  min-width: 230px;
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  border-color: #fff;
  background: #fff;
}

.booking-band-actions > a {
  align-self: center;
  border-bottom: 1px solid rgba(0, 19, 31, 0.38);
  font-size: 13px;
  font-weight: 700;
}

.booking-by-appointment {
  margin: 1px 0 0;
  color: rgba(0, 19, 31, 0.75);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

.site-footer {
  padding: 70px 0 25px;
  background: #050709;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.9fr 0.72fr;
  gap: 50px;
  padding-bottom: 65px;
}

.brand--footer {
  margin-bottom: 18px;
}

.brand--footer .brand-logo {
  height: 98px;
}

.footer-grid > div:first-child p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-label {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid button,
.footer-grid > div:not(:first-child) > span:not(.footer-label) {
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid > div:not(:first-child) > span:not(.footer-label) {
  color: var(--muted);
}

.footer-grid .footer-appointment {
  color: var(--white);
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--blue-dark);
  background: transparent;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #707a84;
  font-size: 12px;
}

.mobile-booking {
  display: none;
}

.booking-dialog {
  width: min(1050px, calc(100% - 40px));
  max-width: none;
  max-height: min(860px, calc(100dvh - 40px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: var(--panel);
  color: var(--white);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
}

.booking-dialog::backdrop {
  background: rgba(0, 3, 6, 0.82);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.booking-dialog[open] {
  animation: dialog-in 260ms var(--ease) both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
}

.dialog-shell {
  display: grid;
  grid-template-columns: 275px 1fr;
  min-height: 660px;
}

.dialog-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 31px;
  background:
    linear-gradient(165deg, rgba(49, 168, 255, 0.96), rgba(8, 116, 189, 0.96)),
    var(--blue);
  color: #00131f;
}

.dialog-aside > div:first-child {
  width: 100%;
}

.dialog-logo {
  width: 185px;
  height: auto;
}

.dialog-aside > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dialog-aside strong {
  max-width: 180px;
  font-size: 28px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.dialog-aside span {
  font-size: 14px;
  line-height: 1.55;
}

.dialog-aside small {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 19, 31, 0.23);
  font-size: 12px;
  line-height: 1.5;
}

.dialog-main {
  position: relative;
  max-height: min(860px, calc(100dvh - 40px));
  overflow: auto;
  padding: 45px 48px 42px;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.dialog-close span {
  position: absolute;
  top: 20px;
  left: 12px;
  width: 17px;
  height: 1px;
  background: var(--white);
  transform: rotate(45deg);
}

.dialog-close span + span {
  transform: rotate(-45deg);
}

.dialog-heading {
  padding-right: 40px;
}

.dialog-heading .eyebrow {
  margin-bottom: 13px;
}

.dialog-heading h2,
.booking-result h2 {
  font-size: clamp(34px, 4vw, 47px);
  line-height: 1.05;
}

.dialog-heading > p:last-child {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > span {
  color: #d7dde2;
  font-size: 13px;
  font-weight: 650;
}

.field > span small {
  color: var(--muted);
  font-weight: 500;
}

.service-rows {
  display: grid;
  gap: 9px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
}

.service-row:first-child {
  grid-template-columns: 1fr;
}

.add-service,
.remove-service {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.add-service {
  align-self: flex-start;
  padding: 3px 0;
  color: var(--blue-bright);
  font-size: 14px;
}

.add-service:disabled {
  color: #69737d;
  cursor: default;
}

.remove-service {
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: #b6c0c8;
  font-size: 13px;
}

.remove-service:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.field-help {
  color: #7f8992;
  font-size: 12px;
  line-height: 1.45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  outline: 0;
  background: #0b1015;
  color: var(--white);
  font-size: 15px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #69737d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 168, 255, 0.12);
}

.booking-info {
  margin: 0;
  padding: 12px 14px;
  border-left: 2px solid var(--blue);
  background: rgba(49, 168, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.booking-info strong {
  color: var(--white);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}

.form-footer p {
  margin: 0;
  color: #7f8992;
  font-size: 12px;
}

.booking-result {
  min-height: 555px;
  padding-top: 82px;
}

.result-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #00131f;
  font-size: 24px;
  font-weight: 800;
}

.booking-result > p:not(.eyebrow):not(.copy-status) {
  max-width: 520px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.result-actions {
  display: flex;
  gap: 11px;
  margin-top: 32px;
}

.button--ghost-dark {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--white);
}

.button--ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.result-back {
  margin-top: 28px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
}

.copy-status {
  min-height: 23px;
  margin-top: 15px;
  color: var(--blue-bright);
  font-size: 13px;
}

.analytics-consent {
  position: fixed;
  z-index: 190;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  width: min(920px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #0b1015;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.58);
  color: var(--white);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent-copy {
  max-width: 550px;
}

.analytics-consent-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.analytics-consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.analytics-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.analytics-consent-actions .button {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 22px;
  }

  .hero-note {
    display: none;
  }

  .hero-copy {
    width: min(680px, 76%);
  }

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

  .service-card:first-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .service-card:first-child .service-card-content {
    min-height: 430px;
  }

  .about-grid {
    gap: 7%;
  }
}

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

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    position: relative;
    z-index: 5;
    display: block;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(7, 10, 13, 0.5);
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    top: 18px;
    left: 13px;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 200ms ease, top 200ms ease;
  }

  .menu-toggle span:last-child {
    top: 25px;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 4;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 112px max(24px, calc((100vw - 680px) / 2)) 32px;
    overflow-y: auto;
    background: #070a0d;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a {
    display: flex;
    width: 100%;
    min-height: 68px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: var(--white);
    font-size: clamp(24px, 7vw, 32px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
  }

  .site-nav > a:first-child {
    border-top: 1px solid var(--line);
  }

  .site-nav > a::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
    min-height: 62px;
    margin-top: 24px;
    font-size: 17px;
  }

  body.menu-open .site-header {
    background: #070a0d;
  }

  body.menu-open .brand {
    position: relative;
    z-index: 5;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    inset: 0;
  }

  .hero-media img {
    object-position: 61% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 10, 13, 0.92) 0%, rgba(7, 10, 13, 0.67) 80%, rgba(7, 10, 13, 0.35) 100%),
      linear-gradient(0deg, rgba(7, 10, 13, 0.93) 0%, transparent 60%);
  }

  .hero-inner {
    min-height: 780px;
    align-items: flex-end;
    padding-top: 116px;
    padding-bottom: 112px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(54px, 11.5vw, 75px);
  }

  .section {
    padding: 95px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 590px;
  }

  .project-card--featured {
    grid-template-columns: 1fr;
  }

  .project-card--featured .project-media {
    min-height: 520px;
  }

  .project-card--featured .project-copy {
    padding: 32px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .price-group {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .extras,
  .included,
  .coating-products {
    grid-column: 1;
    margin-top: -8px;
  }

  .price-group--featured::before {
    left: -17px;
  }

  .addon-row {
    grid-template-columns: 1fr;
  }

  .addon-row > div:not(:first-child) span {
    display: none;
  }

  .maintenance-kit {
    grid-template-columns: 1fr;
  }

  .maintenance-kit-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .about-minimal {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-copy--minimal {
    padding-top: 0;
  }

  .about-media,
  .about-media > img {
    min-height: 520px;
    height: 520px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-heading {
    position: static;
  }

  .booking-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-band-actions {
    width: 100%;
    max-width: 340px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .dialog-shell {
    grid-template-columns: 1fr;
  }

  .dialog-aside {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .brand-logo {
    height: 54px;
  }

  .maintenance-kit {
    margin-top: 50px;
  }

  .maintenance-kit-intro,
  .maintenance-kit-details {
    padding: 28px 22px;
  }

  .maintenance-kit-intro h3 {
    font-size: 37px;
  }

  .maintenance-kit-includes ul {
    grid-template-columns: 1fr;
  }

  .maintenance-kit-price strong {
    font-size: 27px;
  }

  .hero {
    min-height: 745px;
  }

  .hero-inner {
    min-height: 745px;
    padding-bottom: 102px;
  }

  .hero h1 {
    font-size: clamp(49px, 16vw, 65px);
    letter-spacing: -0.075em;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: 23px;
  }

  .hero-contact > span {
    display: none;
  }

  .hero-rail-inner {
    height: 62px;
    justify-content: space-between;
  }

  .hero-rail-inner span {
    flex: 0 1 auto;
    font-size: 10px;
  }

  .hero-rail-inner span + span {
    padding-left: 11px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .about-heading h2,
  .about-copy h2,
  .booking-band h2 {
    font-size: 42px;
  }

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

  .service-card:first-child {
    grid-column: auto;
  }

  .service-card,
  .service-card:first-child,
  .service-card-content,
  .service-card:first-child .service-card-content {
    min-height: 465px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card--featured {
    grid-column: auto;
  }

  .project-media,
  .project-card--featured .project-media {
    min-height: 410px;
  }

  .project-card--featured .project-copy,
  .project-copy {
    padding: 24px 21px;
  }

  .price-group {
    padding: 40px 0;
  }

  .price-group-title h3 {
    font-size: 28px;
  }

  .price-list button {
    min-height: 96px;
    align-items: flex-start;
    gap: 14px;
  }

  .price-list strong {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
  }

  .price-list small {
    max-width: 245px;
    font-size: 12px;
    line-height: 1.45;
  }

  .price-list .price {
    padding-top: 1px;
    font-size: 19px;
  }

  .package-fit,
  .package-badge {
    width: max-content;
    vertical-align: 0;
  }

  .price-choice--popular::before {
    left: -9px;
  }

  .extras {
    grid-template-columns: 1fr;
  }

  .about-media,
  .about-media > img {
    min-height: 440px;
    height: 440px;
  }

  .about-stamp {
    width: 170px;
  }

  .booking-band {
    padding: 75px 0;
  }

  .booking-band::after {
    right: -230px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
    padding-bottom: 70px;
  }

  .faq-heading h2 {
    font-size: 42px;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 16px;
    line-height: 1.45;
  }

  .faq-list details p {
    margin-right: 20px;
    font-size: 14px;
  }

  .mobile-booking {
    position: fixed;
    z-index: 70;
    right: 13px;
    bottom: 12px;
    left: 13px;
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border: 1px solid var(--blue-bright);
    border-radius: 3px;
    background: var(--blue);
    color: #00131f;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
    font-size: 15px;
    font-weight: 800;
    transition: transform 220ms var(--ease), opacity 220ms ease;
  }

  body.consent-open .mobile-booking {
    opacity: 0;
    pointer-events: none;
    transform: translateY(80px);
  }

  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

  .analytics-consent-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .analytics-consent-actions .button {
    width: 100%;
  }

  body.dialog-open .mobile-booking,
  body.menu-open .mobile-booking {
    opacity: 0;
    pointer-events: none;
    transform: translateY(80px);
  }

  .booking-dialog {
    width: 100%;
    max-height: 100dvh;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .dialog-main {
    max-height: 100dvh;
    min-height: 100dvh;
    padding: 75px 20px 32px;
  }

  .dialog-close {
    top: 19px;
    right: 17px;
  }

  .dialog-heading {
    padding-right: 0;
  }

  .dialog-heading h2,
  .booking-result h2 {
    font-size: 36px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-footer .button {
    width: 100%;
  }

  .booking-result {
    min-height: 0;
    padding-top: 45px;
  }

  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

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