:root {
  color-scheme: dark;
  --bg: #080a0d;
  --panel: #10141a;
  --panel-2: #151b22;
  --text: #f7fbff;
  --muted: #aeb8c5;
  --line: rgba(255, 255, 255, .13);
  --blue: #2dd6ff;
  --lime: #c5ff4a;
  --silver: #e7edf3;
  --shadow: 0 24px 80px rgba(0, 0, 0, .45);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(45, 214, 255, .08), transparent 26rem),
    radial-gradient(circle at 85% 15%, rgba(197, 255, 74, .07), transparent 22rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 214, 255, .12), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  z-index: 5;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  inset: 1rem 1rem auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 10, 13, .6);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  color: #061014;
  font-weight: 900;
}

.brand-mark.has-logo {
  overflow: hidden;
  background: #020304;
  border: 1px solid rgba(255, 255, 255, .2);
}

.brand-mark.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0;
}

.site-header nav a {
  padding: .7rem .9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.site-header nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}

.site-header .nav-cta {
  color: #071014;
  background: var(--text);
}

.site-header nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, .11);
}

.intro-scroll {
  height: 300vh;
  position: relative;
}

.intro-stage {
  min-height: 100vh;
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(8, 10, 13, .25), rgba(8, 10, 13, .92)),
    radial-gradient(circle at 50% 65%, rgba(45, 214, 255, .12), transparent 32rem);
}

.grid-floor {
  position: absolute;
  inset: 20% -10% -45%;
  transform: perspective(42rem) rotateX(65deg);
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 4rem 4rem;
  mask-image: linear-gradient(transparent, black 22%, black 70%, transparent);
  animation: roadFlow 1.4s linear infinite;
  opacity: var(--grid-opacity, .3);
}

.foam-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  filter: blur(.2px);
  opacity: .7;
  animation: orbit 18s linear infinite;
}

.foam-one {
  width: 46rem;
  height: 46rem;
  border-color: rgba(45, 214, 255, .2);
}

.foam-two {
  width: 68rem;
  height: 68rem;
  border-color: rgba(197, 255, 74, .14);
  animation-duration: 28s;
  animation-direction: reverse;
}

.intro-copy {
  position: absolute;
  top: 13vh;
  z-index: 4;
  width: min(58rem, calc(100% - 2rem));
  text-align: center;
  transform: translateY(calc(var(--intro-progress, 0) * -4rem));
  opacity: calc(1 - var(--intro-progress, 0) * 1.35);
}

.hero-logo {
  width: clamp(5.5rem, 11vw, 8rem);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 0 34px rgba(45, 214, 255, .18);
}

.eyebrow {
  margin: 0 0 .8rem;
  color: var(--lime);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 8vw, 8.4rem);
  line-height: .88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 5.8rem);
  line-height: .95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: .65rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.car-rig {
  --scale: calc(.68 + var(--intro-progress, 0) * .38);
  position: relative;
  z-index: 3;
  width: min(74vw, 65rem);
  aspect-ratio: 16 / 10;
  border-radius: 1.5rem;
  transform:
    translate3d(0, calc(9vh - var(--intro-progress, 0) * 6vh), 0)
    scale(var(--scale))
    perspective(58rem)
    rotateX(calc(58deg - var(--intro-progress, 0) * 58deg))
    rotateZ(calc(-7deg + var(--intro-progress, 0) * 7deg));
  transform-style: preserve-3d;
  box-shadow: var(--shadow);
}

.car-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.18);
}

.car-top {
  opacity: calc(1 - var(--intro-progress, 0) * 1.4);
}

.car-level {
  object-position: center 62%;
  opacity: calc((var(--intro-progress, 0) - .25) * 1.6);
  transform: translateZ(1px);
}

.shine-sweep {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.24), transparent 56%);
  transform: translateX(calc(-80% + var(--intro-progress, 0) * 160%));
  mix-blend-mode: screen;
}

.intro-hud {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 4;
  width: min(42rem, calc(100% - 2rem));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.hud-meter {
  height: .25rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.hud-meter i {
  display: block;
  width: calc(var(--intro-progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--lime));
}

.launch-panel,
.services-section,
.results-section,
.packages-section,
.gallery-section,
.booking-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.launch-panel {
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
  gap: 2rem;
  align-items: center;
  padding: 7rem 0 5rem;
}

.launch-text p {
  max-width: 42rem;
}

.stat-strip {
  display: grid;
  gap: 1rem;
}

.stat-strip div,
.package-card,
.booking-card {
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
}

.stat-strip div {
  padding: 1.35rem;
}

.stat-strip strong {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

.stat-strip span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .13em;
}

.section-heading {
  width: min(48rem, 100%);
  margin-bottom: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 34rem;
  position: relative;
  overflow: hidden;
  border-radius: .65rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .8s ease;
}

.service-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.12);
}

.service-card div {
  position: absolute;
  inset: auto 1rem 1rem;
  padding: 1.1rem;
  border-radius: .5rem;
  background: rgba(8, 10, 13, .74);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.service-card span,
.package-card span {
  display: inline-flex;
  margin-bottom: .7rem;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .72rem;
}

.results-section,
.packages-section,
.gallery-section,
.booking-section {
  padding: 8rem 0 0;
}

.before-after {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.ba-copy {
  max-width: 34rem;
}

.compare {
  --split: 48%;
  position: relative;
  min-height: 35rem;
  overflow: hidden;
  border-radius: .65rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.compare img {
  width: 100%;
  height: 100%;
  min-height: 35rem;
  object-fit: cover;
}

.compare-before {
  position: absolute;
  inset: 0;
  width: var(--split);
  overflow: hidden;
  border-right: 2px solid var(--lime);
}

.compare-before::after {
  content: none;
}

.compare input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2.8rem;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, var(--lime) 0 .45rem, #071014 .48rem .8rem, transparent .85rem),
    linear-gradient(90deg, transparent calc(50% - 1px), var(--lime) calc(50% - 1px), var(--lime) calc(50% + 1px), transparent calc(50% + 1px));
  pointer-events: none;
}

.ba-label {
  position: absolute;
  top: 1rem;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(8, 10, 13, .75);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.ba-label.before {
  left: 1rem;
}

.ba-label.after {
  right: 1rem;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.package-card {
  position: relative;
  min-height: 29rem;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: rgba(45, 214, 255, .55);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.package-card.featured {
  background:
    linear-gradient(135deg, rgba(45,214,255,.18), rgba(197,255,74,.12)),
    var(--panel-2);
}

.package-card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, .04), rgba(4, 6, 8, .78) 46%, rgba(4, 6, 8, .94)),
    radial-gradient(circle at 20% 15%, rgba(45, 214, 255, .2), transparent 18rem);
  pointer-events: none;
}

.package-card-photo img {
  width: calc(100% + 2rem);
  height: 13.5rem;
  margin: -1rem -1rem .95rem;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.01);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}

.package-card-photo:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.12);
}

.package-card strong {
  font-size: 2.4rem;
  line-height: .95;
}

.package-card ul {
  display: grid;
  gap: .45rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.package-card li {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 750;
  line-height: 1.35;
}

.package-card li::before {
  content: "";
  display: inline-block;
  width: .38rem;
  height: .38rem;
  margin: 0 .5rem .1rem 0;
  border-radius: 50%;
  background: var(--lime);
}

.add-on-panel {
  display: grid;
  grid-template-columns: minmax(14rem, .45fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: .65rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
    radial-gradient(circle at 12% 0, rgba(197, 255, 74, .12), transparent 20rem);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.5rem);
}

.add-on-panel h3 {
  margin: 0;
}

.add-on-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem .9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.add-on-panel li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  min-height: 2.6rem;
  border-bottom: 1px dashed rgba(255, 255, 255, .24);
  color: var(--muted);
  font-weight: 850;
}

.add-on-panel li span {
  min-width: 0;
}

.add-on-panel li strong {
  color: var(--lime);
  font-size: 1rem;
  white-space: nowrap;
}

.marquee {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  overflow: hidden;
  padding: 1rem 0;
  border-block: 1px solid var(--line);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .35);
  text-transform: uppercase;
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 900;
  white-space: nowrap;
}

.gallery-teaser-head,
.gallery-work-head,
.finished-work-head,
.gallery-booking-band {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-teaser-head h2,
.gallery-work-head h2,
.finished-work-head h2,
.gallery-booking-band h2 {
  margin-bottom: 0;
  max-width: 12ch;
}

.gallery-link-button,
.gallery-secondary-link,
.gallery-filter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border-radius: 999px;
  font-weight: 900;
}

.gallery-link-button {
  flex: 0 0 auto;
  color: #071014;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  padding: 0 1.15rem;
  box-shadow: 0 18px 40px rgba(45, 214, 255, .15);
}

.gallery-secondary-link {
  border: 1px solid var(--line);
  color: var(--silver);
  background: rgba(255,255,255,.07);
  padding: 0 1rem;
}

.marquee span {
  animation: marquee 18s linear infinite;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  border-radius: .65rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.gallery-grid img:nth-child(2) {
  transform: translateY(4rem);
}

.gallery-page {
  min-height: 100vh;
}

.gallery-page main {
  padding-top: 7rem;
}

.gallery-hero,
.gallery-work-section,
.gallery-booking-band {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.gallery-hero {
  min-height: calc(100vh - 7rem);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(22rem, 1.1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 3rem 0 5rem;
}

.gallery-hero-copy p {
  max-width: 38rem;
}

.gallery-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.gallery-hero-frame {
  position: relative;
  min-height: min(68vh, 42rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .85rem;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.gallery-hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(3, 5, 7, .6)),
    linear-gradient(110deg, rgba(45, 214, 255, .18), transparent 34%, rgba(197, 255, 74, .12));
  pointer-events: none;
}

.gallery-hero-frame img {
  width: 100%;
  height: 100%;
  min-height: min(68vh, 42rem);
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.08) contrast(1.06);
}

.gallery-work-section {
  padding: 2rem 0 7rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 5rem;
}

.comparison-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .8rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.comparison-card[hidden],
.portfolio-card[hidden] {
  display: none;
}

.gallery-page[data-active-filter="transformations"] .finished-work-head,
.gallery-page[data-active-filter="transformations"] .finish-grid,
.gallery-page[data-active-filter="exterior"] .comparison-grid {
  display: none;
}

.comparison-card-featured {
  grid-column: 1 / -1;
}

.comparison-card header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem .85rem;
}

.comparison-card header span {
  color: var(--lime);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.comparison-card header h3 {
  max-width: 13ch;
  margin: 0;
  text-align: right;
}

.comparison-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  padding: 0 1rem 1rem;
}

.comparison-images figure {
  position: relative;
  min-width: 0;
  min-height: 27rem;
  overflow: hidden;
  margin: 0;
  border-radius: .6rem;
  border: 1px solid rgba(255,255,255,.14);
  background: #05070a;
}

.comparison-card-featured .comparison-images figure {
  min-height: 35rem;
}

.comparison-images img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.comparison-images figcaption {
  position: absolute;
  left: .75rem;
  top: .75rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 .7rem;
  border-radius: 999px;
  background: rgba(5, 7, 10, .76);
  color: var(--text);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.finished-work-head {
  margin-bottom: 1.5rem;
}

.finished-work-head h2 {
  max-width: 14ch;
}

.gallery-filter {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .5rem;
}

.gallery-filter button {
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.06);
  padding: 0 1rem;
  font: inherit;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.gallery-filter button:hover,
.gallery-filter button.is-active {
  color: #071014;
  background: var(--text);
  transform: translateY(-2px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.portfolio-card {
  min-height: 25rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: .7rem;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0,0,0,.32);
}

.portfolio-card-wide {
  grid-column: span 2;
}

.portfolio-card-tall {
  grid-row: span 2;
  min-height: 51rem;
}

.portfolio-image-button {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.portfolio-image-button img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}

.portfolio-card:hover .portfolio-image-button img,
.portfolio-image-button:focus-visible img {
  transform: scale(1.06);
  filter: saturate(1.16) contrast(1.08);
}

.portfolio-card > div {
  position: absolute;
  inset: auto .8rem .8rem;
  padding: .9rem;
  border-radius: .55rem;
  background: rgba(7, 10, 13, .74);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.portfolio-card span {
  display: block;
  margin-bottom: .35rem;
  color: var(--lime);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.gallery-booking-band {
  align-items: center;
  margin-bottom: 7rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: .75rem;
  background:
    linear-gradient(135deg, rgba(45,214,255,.12), rgba(197,255,74,.08)),
    rgba(255,255,255,.045);
  box-shadow: var(--shadow);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 4, 6, .84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.gallery-lightbox-panel {
  position: relative;
  width: min(78rem, 100%);
  max-height: 92vh;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .7rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: .8rem;
  background: rgba(8, 10, 13, .82);
  padding: .8rem;
  box-shadow: 0 34px 100px rgba(0,0,0,.62);
}

.gallery-lightbox-panel img {
  max-width: 100%;
  max-height: 78vh;
  justify-self: center;
  border-radius: .55rem;
  object-fit: contain;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  font: 900 .84rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.gallery-lightbox-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  min-height: 2.6rem;
  padding: 0 .95rem;
  background: #fff;
  color: #050607;
}

.gallery-lightbox-nav {
  min-width: 4rem;
  min-height: 3rem;
  padding: 0 .85rem;
}

#gallery-lightbox-caption {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--silver);
  text-align: center;
  font-weight: 800;
}

.booking-section {
  padding-bottom: 8rem;
}

.booking-card {
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.booking-logo {
  width: clamp(6rem, 12vw, 9rem);
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 0 45px rgba(45, 214, 255, .16);
}

.booking-card p {
  max-width: 46rem;
  margin-inline: auto;
}

.booking-launch,
.calendar-booking .client-step button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  margin-top: 1rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 0;
  color: #071014;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  font-weight: 900;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(45, 214, 255, .18);
}

.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 7, .78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.booking-modal-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(92vh, 58rem);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: .8rem;
  background:
    radial-gradient(circle at 15% 0, rgba(45, 214, 255, .12), transparent 22rem),
    linear-gradient(180deg, rgba(18, 24, 31, .98), rgba(7, 10, 13, .98));
  box-shadow: 0 36px 100px rgba(0,0,0,.62);
}

.booking-modal-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 13, .84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.booking-modal-header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.7rem);
}

.modal-close {
  min-height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding: 0 1rem;
  font: 900 .85rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.booking-form {
  width: 100%;
  margin: 0;
  text-align: left;
}

.booking-flow {
  display: grid;
  grid-template-columns: .95fr 1.05fr .72fr;
  gap: 1rem;
  padding: 1rem;
}

.booking-step {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: .65rem;
  background: rgba(4, 6, 8, .42);
  padding: 1rem;
}

.client-step {
  grid-column: 1 / -1;
}

.step-label {
  display: block;
  margin-bottom: .8rem;
  color: var(--lime);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.service-options {
  display: grid;
  gap: .6rem;
}

.service-option,
.slot-option,
.booking-date,
.booking-calendar-toolbar button {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.service-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  min-height: 4rem;
  border-radius: .55rem;
  padding: .8rem;
  text-align: left;
}

.service-option:hover,
.service-option.is-selected,
.slot-option:hover,
.slot-option.is-selected,
.booking-date:hover,
.booking-date.is-selected {
  border-color: rgba(45, 214, 255, .72);
  background: rgba(45, 214, 255, .12);
  transform: translateY(-2px);
}

.service-option span {
  color: var(--lime);
  font-weight: 900;
}

.detail-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
  margin-top: .75rem;
}

.detail-toggle label {
  display: grid;
  place-items: center;
  min-height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: .45rem;
  background: rgba(255,255,255,.045);
  color: var(--muted);
  text-align: center;
  cursor: pointer;
}

.detail-toggle input {
  position: absolute;
  opacity: 0;
}

.detail-toggle label:has(input:checked) {
  border-color: rgba(197, 255, 74, .68);
  background: rgba(197, 255, 74, .12);
  color: var(--lime);
}

.booking-calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem;
}

.booking-calendar-toolbar h3 {
  margin: 0;
  font-size: 1.35rem;
}

.booking-calendar-toolbar button {
  min-height: 2.5rem;
  border-radius: 999px;
  padding: 0 .85rem;
  font-weight: 900;
}

.booking-weekdays,
.booking-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .38rem;
}

.booking-weekdays {
  margin-bottom: .4rem;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.booking-date {
  min-height: 4.1rem;
  border-radius: .45rem;
  padding: .45rem;
  text-align: left;
}

.booking-date span,
.booking-date small {
  display: block;
}

.booking-date span {
  font-weight: 900;
}

.booking-date small {
  margin-top: .4rem;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-date.is-muted {
  opacity: .42;
}

.booking-date.is-closed {
  cursor: not-allowed;
  opacity: .35;
}

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

.slot-grid p {
  grid-column: 1 / -1;
  margin: 0;
}

.slot-option {
  min-height: 3rem;
  border-radius: .45rem;
  font-weight: 900;
}

.slot-option span,
.slot-option small {
  display: block;
}

.slot-option small {
  margin-top: .18rem;
  color: #3b4148;
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

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

.booking-form label {
  display: grid;
  gap: .45rem;
  color: var(--silver);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .5rem;
  background: rgba(4, 6, 8, .72);
  color: var(--text);
  padding: .8rem .9rem;
  font: 600 1rem/1.4 Inter, system-ui, sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(45, 214, 255, .75);
  box-shadow: 0 0 0 4px rgba(45, 214, 255, .1);
  background: rgba(4, 6, 8, .9);
}

.span-2 {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.7rem;
  margin: 1rem 0 0;
  color: var(--lime);
  text-align: center;
  font-weight: 800;
}

.form-status.is-error {
  color: #ff7f7f;
}

.booking-modal {
  padding: 0;
}

.booking-modal-panel {
  width: 100%;
  height: 100vh;
  max-height: none;
  border: 0;
  border-radius: 0;
}

.booking-modal-header {
  align-items: center;
  padding: 1rem clamp(1rem, 3vw, 2rem);
}

.booking-progress {
  position: sticky;
  top: 5.8rem;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .6rem;
  padding: .85rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 13, .78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.booking-progress span {
  display: grid;
  place-items: center;
  min-height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.booking-progress span.is-active {
  border-color: rgba(45, 214, 255, .66);
  background: rgba(45, 214, 255, .12);
  color: var(--text);
}

.booking-flow {
  grid-template-columns: minmax(18rem, .72fr) minmax(34rem, 1.5fr) minmax(18rem, .68fr);
  align-items: start;
  gap: clamp(.9rem, 2vw, 1.25rem);
  padding: clamp(1rem, 3vw, 2rem);
}

.booking-flow[hidden],
.booking-info-step[hidden] {
  display: none;
}

.calendar-booking.is-quote-prefill .package-step {
  display: none;
}

.package-step,
.time-step {
  position: sticky;
  top: 10rem;
}

.booking-step {
  background: rgba(4, 6, 8, .5);
}

.service-options {
  max-height: 48vh;
  overflow: auto;
  padding-right: .15rem;
}

.service-option {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 5.25rem;
}

.service-option small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.booking-calendar-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-month {
  min-width: 0;
}

.booking-month h3 {
  margin: 0 0 .9rem;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.booking-calendar-grid {
  gap: .55rem;
}

.booking-date {
  min-height: clamp(5.2rem, 7vw, 7.4rem);
  padding: .65rem;
}

.booking-date span {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.booking-date small {
  margin-top: .55rem;
}

.time-step h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

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

.slot-option {
  min-height: 3.45rem;
}

.lock-date-button,
.secondary-booking-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.5rem;
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  color: #071014;
  background: linear-gradient(135deg, var(--blue), var(--lime));
  font: 900 1rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(45, 214, 255, .18);
}

.lock-date-button:disabled {
  cursor: not-allowed;
  opacity: .38;
  box-shadow: none;
}

.secondary-booking-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.08);
  box-shadow: none;
}

.booking-info-step {
  display: grid;
  grid-template-columns: minmax(18rem, .35fr) minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

.locked-summary {
  display: grid;
  gap: .55rem;
  margin-bottom: 1rem;
}

.locked-summary strong {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.locked-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: .5rem;
  background: rgba(255,255,255,.06);
  color: var(--silver);
  padding: 0 .8rem;
  font-weight: 900;
}

.calendar-booking .client-step button[type="submit"] {
  width: 100%;
}

.booking-modal-panel {
  color: #08090b;
  background:
    radial-gradient(circle at 18% 8%, rgba(45, 214, 255, .16), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(197, 255, 74, .12), transparent 24rem),
    linear-gradient(180deg, rgba(8, 10, 13, .97), rgba(11, 15, 18, .98));
}

.booking-modal-header {
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(6, 7, 9, .88);
}

.booking-modal-header .eyebrow {
  color: #fff;
}

.booking-modal-header h2 {
  color: #fff;
}

.modal-close {
  border-color: rgba(255,255,255,.18);
  background: #fff;
  color: #050607;
}

.booking-progress {
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(6, 7, 9, .78);
}

.booking-progress span {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.65);
}

.booking-progress span.is-active {
  border-color: #fff;
  background: #fff;
  color: #050607;
}

.booking-step {
  border: 2px solid rgba(255,255,255,.96);
  background: rgba(255,255,255,.22);
  color: #08090b;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.26), 0 24px 70px rgba(0,0,0,.28);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.booking-step p,
.booking-step small,
.booking-form label {
  color: #5b626a;
}

.booking-step h3,
.service-option strong,
.locked-summary strong {
  color: #08090b;
}

.step-label {
  color: #111;
}

.service-option,
.slot-option,
.booking-date {
  border: 2px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.84);
  color: #050607;
}

.service-option strong,
.service-option span,
.service-option small {
  color: #050607;
}

.service-option small {
  opacity: .78;
}

.booking-date {
  background: #fff;
  color: #08090b;
}

.service-option:hover,
.service-option.is-selected,
.slot-option:hover,
.slot-option.is-selected,
.booking-date:hover,
.booking-date.is-selected {
  border-color: #08090b;
  background: #08090b;
  color: #fff;
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}

.service-option:hover strong,
.service-option.is-selected strong,
.service-option:hover small,
.service-option.is-selected small,
.service-option:hover span,
.service-option.is-selected span,
.slot-option:hover,
.slot-option.is-selected,
.slot-option:hover small,
.slot-option.is-selected small,
.booking-date:hover small,
.booking-date.is-selected small {
  color: #fff;
}

.slot-option.is-booked,
.slot-option.is-booked:hover {
  border-color: rgba(255,255,255,.9);
  background: rgba(226, 232, 240, .78);
  color: #6b7280;
  cursor: not-allowed;
  opacity: 1;
  transform: none;
  box-shadow: none;
}

.slot-option.is-booked small,
.slot-option.is-booked:hover small {
  color: #444b55;
}

.service-option span {
  color: #08090b;
}

.detail-toggle label {
  border: 2px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.2);
  color: #0a0c0e;
}

.detail-toggle label:has(input:checked) {
  border-color: #08090b;
  background: #08090b;
  color: #fff;
}

.booking-month {
  border: 2px solid rgba(255,255,255,.96);
  border-radius: .75rem;
  background: rgba(255,255,255,.16);
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 18px 50px rgba(0,0,0,.16);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.booking-month h3 {
  color: #08090b;
}

.booking-weekdays {
  color: #6b737c;
}

.booking-date.is-muted {
  background: #fff;
  color: #08090b;
  opacity: 1;
}

.booking-date.is-closed {
  border-color: rgba(255,255,255,.72);
  background: rgba(226, 232, 240, .72);
  color: #08090b;
  opacity: 1;
}

.booking-date small {
  color: #6b737c;
}

.booking-date.is-closed small {
  color: #6b737c;
}

.slot-grid p,
.form-status {
  color: #5b626a;
}

.form-status.is-error {
  color: #b42318;
}

.lock-date-button,
.calendar-booking .client-step button[type="submit"] {
  background: #08090b;
  color: #fff;
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
}

.lock-date-button:disabled {
  background: #d8dde3;
  color: #7b838d;
}

.secondary-booking-button {
  border: 2px solid rgba(255,255,255,.96);
  background: rgba(255,255,255,.2);
  color: #08090b;
}

.locked-summary span {
  border: 2px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.2);
  color: #08090b;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 2px solid rgba(255,255,255,.92);
  background: rgba(255,255,255,.2);
  color: #08090b;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #08090b;
  box-shadow: 0 0 0 4px rgba(8, 9, 11, .08);
  background: rgba(255,255,255,.9);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #929aa3;
}

.booking-info-step .booking-step {
  background: rgba(255,255,255,.7);
}

.booking-info-step .client-step {
  background: rgba(255,255,255,.76);
}

.booking-info-step .step-label,
.booking-info-step label {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.38);
}

.booking-info-step .step-label {
  letter-spacing: .16em;
}

.booking-info-step input,
.booking-info-step textarea {
  border-color: rgba(255,255,255,.98);
  background: rgba(255,255,255,.88);
  color: #050607;
}

.booking-info-step input:focus,
.booking-info-step textarea:focus {
  border-color: #050607;
  background: #fff;
}

.booking-info-step input::placeholder,
.booking-info-step textarea::placeholder {
  color: #4f5963;
}

.booking-info-step .form-status {
  color: #050607;
}

.booking-info-step .form-status.is-error {
  color: #b42318;
}

.thank-you-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.thank-you-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.thank-you-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 7, .76);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.thank-you-card {
  position: relative;
  width: min(42rem, 100%);
  border: 2px solid rgba(255,255,255,.96);
  border-radius: .9rem;
  background:
    radial-gradient(circle at 15% 0, rgba(45, 214, 255, .15), transparent 18rem),
    rgba(255,255,255,.84);
  color: #050607;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: 0 34px 90px rgba(0,0,0,.48);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.thank-you-card h2 {
  max-width: 14ch;
  margin: .35rem 0 .6rem;
  color: #050607;
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: .92;
}

.thank-you-copy {
  max-width: 36rem;
  margin: 0 0 1.1rem;
  color: #252a2f;
  font-weight: 700;
}

.thank-you-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 2.6rem;
  border: 2px solid #050607;
  border-radius: 999px;
  background: #050607;
  color: #fff;
  padding: 0 1rem;
  font: 900 .82rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.thank-you-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .55rem;
}

.thank-you-summary div {
  min-height: 4.3rem;
  border: 2px solid rgba(255,255,255,.98);
  border-radius: .6rem;
  background: rgba(255,255,255,.74);
  padding: .75rem;
}

.thank-you-summary span,
.thank-you-summary strong {
  display: block;
}

.thank-you-summary span {
  margin-bottom: .3rem;
  color: #555f68;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.thank-you-summary strong {
  color: #050607;
  font-size: 1rem;
  line-height: 1.25;
}

.thank-you-done {
  width: 100%;
  min-height: 3.4rem;
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  background: #050607;
  color: #fff;
  font: 900 1rem/1 Inter, system-ui, sans-serif;
  cursor: pointer;
}

.booking-modal-panel {
  overflow: auto;
}

.booking-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.booking-modal-header {
  min-height: auto;
  padding: clamp(.75rem, 1.8vh, 1rem) clamp(1rem, 3vw, 2rem);
}

.booking-modal-header h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: .95;
}

.booking-modal-header .eyebrow {
  margin-bottom: .4rem;
}

.booking-progress {
  top: clamp(5.25rem, 13vh, 7.5rem);
  padding-block: clamp(.5rem, 1.4vh, .85rem);
}

.booking-progress span {
  min-height: clamp(2.25rem, 4.8vh, 2.65rem);
}

.booking-flow {
  grid-template-columns: minmax(14rem, .62fr) minmax(38rem, 1.7fr) minmax(15rem, .62fr);
  gap: clamp(.75rem, 1.5vw, 1.25rem);
  padding: clamp(.75rem, 2vh, 1.4rem) clamp(1rem, 2.4vw, 2rem);
}

.booking-step {
  padding: clamp(.75rem, 1.6vh, 1rem);
}

.package-step,
.time-step {
  top: clamp(8.5rem, 19vh, 11rem);
}

.service-options {
  max-height: min(48rem, 58vh);
}

.service-option {
  min-height: clamp(4rem, 8.5vh, 5.1rem);
  padding: clamp(.65rem, 1.5vh, .85rem);
}

.detail-toggle label {
  min-height: clamp(2.35rem, 5vh, 2.8rem);
}

.booking-month {
  padding: clamp(.65rem, 1.4vh, 1rem);
}

.booking-month h3 {
  margin-bottom: clamp(.5rem, 1.1vh, .85rem);
  font-size: clamp(1.2rem, 2vw, 1.9rem);
}

.booking-calendar-grid {
  gap: clamp(.32rem, .7vh, .55rem);
}

.booking-date {
  min-height: clamp(3.2rem, 8.4vh, 5.6rem);
  padding: clamp(.4rem, 1vh, .65rem);
}

.booking-date span {
  font-size: clamp(1.15rem, 2.8vh, 2rem);
  line-height: 1;
}

.booking-date small {
  margin-top: clamp(.25rem, .7vh, .5rem);
  font-size: clamp(.58rem, 1.35vh, .78rem);
}

.time-step h3 {
  margin-bottom: clamp(.6rem, 1.4vh, 1rem);
  font-size: clamp(1.25rem, 2.5vw, 2.15rem);
}

.slot-grid {
  max-height: min(42rem, 56vh);
  overflow: auto;
  padding-right: .1rem;
}

.slot-option {
  min-height: clamp(2.7rem, 6vh, 3.6rem);
}

.lock-date-button {
  min-height: clamp(3rem, 6vh, 3.5rem);
}

@media (max-height: 820px) and (min-width: 960px) {
  .booking-modal-header h2 {
    font-size: clamp(1.8rem, 3.3vw, 3.2rem);
  }

  .booking-flow {
    grid-template-columns: minmax(13rem, .55fr) minmax(34rem, 1.8fr) minmax(14rem, .58fr);
  }

  .booking-date {
    min-height: clamp(2.85rem, 7.2vh, 4.4rem);
  }

  .service-option {
    min-height: clamp(3.5rem, 7.2vh, 4.4rem);
  }

  .slot-option {
    min-height: clamp(2.45rem, 5.2vh, 3.15rem);
  }
}

@media (max-width: 1180px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-flow {
    grid-template-columns: minmax(14rem, .7fr) minmax(0, 1.3fr);
  }

  .time-step {
    position: static;
    grid-column: 1 / -1;
  }

  .slot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-height: none;
  }
}

@media (max-width: 760px) {
  .booking-modal-header {
    align-items: flex-start;
    padding: .85rem 1rem;
  }

  .booking-modal-header h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .modal-close {
    position: absolute;
    top: .85rem;
    right: 1rem;
  }

  .booking-progress {
    top: 7.9rem;
    grid-template-columns: 1fr;
    padding: .6rem 1rem;
  }

  .booking-flow,
  .booking-info-step {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .package-step,
  .time-step {
    position: static;
  }

  .service-options {
    max-height: none;
  }

  .booking-calendar-step {
    overflow: visible;
  }

  .booking-calendar-pair {
    grid-template-columns: 1fr;
  }

  .booking-month {
    min-width: 0;
  }

  .booking-weekdays,
  .booking-calendar-grid {
    gap: .35rem;
  }

  .booking-date {
    min-height: clamp(3.45rem, 13vw, 4.8rem);
    padding: .42rem;
  }

  .booking-date span {
    font-size: clamp(1.15rem, 5.8vw, 1.8rem);
  }

  .booking-date small {
    font-size: clamp(.5rem, 2.4vw, .65rem);
  }

  .slot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: none;
  }

  .detail-toggle {
    grid-template-columns: 1fr;
  }

  .thank-you-summary {
    grid-template-columns: 1fr;
  }

  .thank-you-close {
    position: static;
    justify-self: end;
    margin-bottom: .75rem;
  }
}

code {
  color: var(--silver);
  background: rgba(255,255,255,.08);
  padding: .15rem .35rem;
  border-radius: .25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes roadFlow {
  to {
    background-position: 0 4rem, 4rem 0;
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}

@media (max-width: 820px) {
  .site-header {
    inset: .75rem .75rem auto;
    align-items: flex-start;
    border-radius: 1rem;
  }

  .brand-name {
    display: none;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .25rem;
  }

  .site-header nav a {
    padding: .55rem .62rem;
    font-size: .78rem;
  }

  .intro-copy {
    top: 14vh;
  }

  .car-rig {
    width: min(96vw, 42rem);
    aspect-ratio: 4 / 4.8;
  }

  .intro-hud {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .launch-panel,
  .before-after,
  .service-grid,
  .package-grid,
  .add-on-panel,
  .add-on-panel ul,
  .gallery-grid,
  .gallery-hero,
  .gallery-work-head,
  .comparison-grid,
  .gallery-booking-band,
  .form-grid,
  .booking-flow {
    grid-template-columns: 1fr;
  }

  .gallery-teaser-head,
  .gallery-work-head,
  .finished-work-head,
  .gallery-booking-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-page main {
    padding-top: 8.5rem;
  }

  .gallery-hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .gallery-hero-frame,
  .gallery-hero-frame img {
    min-height: 28rem;
  }

  .gallery-filter {
    justify-content: flex-start;
  }

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

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

  .comparison-card header {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-card header h3 {
    max-width: none;
    text-align: left;
  }

  .comparison-images {
    gap: .55rem;
    padding: 0 .75rem .75rem;
  }

  .comparison-images figure,
  .comparison-card-featured .comparison-images figure {
    min-height: 20rem;
  }

  .portfolio-card,
  .portfolio-card-wide,
  .portfolio-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 26rem;
  }

  .gallery-lightbox-panel {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-lightbox-panel img {
    grid-column: 1 / -1;
    grid-row: 1;
    max-height: 72vh;
  }

  .gallery-lightbox-prev {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-lightbox-next {
    grid-column: 2;
    grid-row: 2;
  }

  #gallery-lightbox-caption {
    grid-row: 3;
  }

  .detail-toggle {
    grid-template-columns: 1fr;
  }

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

  .booking-modal-header {
    flex-direction: column;
  }

  .booking-progress {
    top: 9rem;
    grid-template-columns: 1fr;
  }

  .booking-calendar-pair,
  .booking-info-step {
    grid-template-columns: 1fr;
  }

  .package-step,
  .time-step {
    position: static;
  }

  .service-options {
    max-height: none;
  }

  .booking-calendar-step {
    overflow: visible;
  }

  .booking-month {
    min-width: 0;
  }

  .service-card,
  .service-card img,
  .compare,
  .compare img {
    min-height: 28rem;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2) {
    height: 20rem;
    transform: none;
  }
}

.calendar-booking.is-quote-prefill .booking-flow {
  grid-template-columns: minmax(30rem, 1.45fr) minmax(16rem, .7fr);
}

@media (max-width: 820px) {
  .calendar-booking.is-quote-prefill .booking-flow {
    grid-template-columns: 1fr;
  }
}

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