@font-face {
  font-family: "BlackSword";
  src: url("../assets/fonts/Blacksword.otf") format("opentype");
  font-display: swap;
}

:root {
  --bg: #05070b;
  --bg-soft: #0a0e15;
  --panel: #0f141d;
  --panel-2: #151c28;
  --text: #f7f9fc;
  --muted: #a7afbd;
  --line: rgba(255, 255, 255, 0.12);
  --line-bright: rgba(255, 255, 255, 0.24);
  --blue: #61b6ff;
  --blue-deep: #1f7ff2;
  --blue-soft: rgba(97, 182, 255, 0.14);
  --ink: #06101b;
  --max: 1240px;
  --header-h: 84px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  scrollbar-gutter: stable;
  background: var(--bg);
}

html.no-scroll {
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(38, 105, 175, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

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

button {
  color: inherit;
  font: inherit;
}

a,
button,
summary,
label,
[role="button"] {
  touch-action: manipulation;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

/* Header and Canario-style full-screen navigation */
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: linear-gradient(to bottom, rgba(3, 5, 8, 0.82), transparent);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled,
.site-header.nav-open {
  border-color: var(--line);
  background: rgba(3, 5, 8, 0.86);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
}

.site-header.nav-open {
  border-color: transparent;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.header-row {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-viewport {
  position: relative;
  width: 190px;
  height: 76px;
  display: block;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 50%, #000 58%, transparent 100%);
  mask-image: radial-gradient(ellipse 72% 62% at 50% 50%, #000 58%, transparent 100%);
}

.brand-logo-viewport img {
  position: absolute;
  top: -74px;
  left: 0;
  width: 190px;
  max-width: none;
  height: auto;
  filter: saturate(1.08) contrast(1.08) drop-shadow(0 5px 12px rgba(0, 0, 0, 0.38));
}

.header-brand .brand-logo-viewport {
  width: 120px;
  height: 72px;
  -webkit-mask-image: radial-gradient(ellipse 92% 74% at 50% 50%, #000 66%, transparent 100%);
  mask-image: radial-gradient(ellipse 92% 74% at 50% 50%, #000 66%, transparent 100%);
}

.header-brand .brand-logo-viewport img {
  top: -46px;
  width: 120px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: #d4dae3;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: var(--blue);
  transition: right 0.35s var(--ease-out);
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  right: 0;
}

.header-cta,
.btn,
.nav-drawer-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.header-cta::after,
.btn-primary::after,
.nav-drawer-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: #fff;
  transform: translateY(102%);
  transition: transform 0.4s var(--ease-out);
}

.header-cta:hover::after,
.btn-primary:hover::after,
.nav-drawer-cta:hover::after {
  transform: translateY(0);
}

.header-cta:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.hamburger {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 21px;
  height: 1px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.site-header.nav-open .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  z-index: 90;
  inset: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.42fr);
  align-items: end;
  gap: 70px;
  padding: calc(var(--header-h) + 48px) max(24px, calc((100vw - var(--max)) / 2)) 54px;
  overflow: hidden auto;
  visibility: hidden;
  background:
    linear-gradient(120deg, rgba(5, 7, 11, 0.97), rgba(6, 11, 18, 0.96)),
    var(--bg);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.65s var(--ease-out), visibility 0s linear 0.65s;
}

.nav-drawer::before,
.nav-drawer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-drawer::before {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.nav-drawer::after {
  width: min(54vw, 760px);
  aspect-ratio: 1;
  right: -15vw;
  top: 12vh;
  border: 1px solid rgba(97, 182, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(97, 182, 255, 0.02), 0 0 0 180px rgba(97, 182, 255, 0.015);
}

.nav-drawer.open {
  visibility: visible;
  clip-path: inset(0);
  transition-delay: 0s;
}

.nav-drawer-glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: 8vw;
  bottom: -12rem;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.1;
  filter: blur(100px);
}

.nav-drawer-links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.nav-drawer-links a {
  display: flex;
  align-items: baseline;
  gap: 20px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-display);
  font-size: clamp(42px, 7.2vh, 78px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(28px) skewY(3deg);
  transition: color 0.25s ease, opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.nav-drawer-links a span {
  width: 28px;
  color: var(--blue);
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nav-drawer-links a:hover,
.nav-drawer-links a:focus-visible {
  color: #fff;
}

.nav-drawer.open .nav-drawer-links a {
  opacity: 1;
  transform: none;
}

.nav-drawer.open .nav-drawer-links a:nth-child(1) { transition-delay: 0.14s; }
.nav-drawer.open .nav-drawer-links a:nth-child(2) { transition-delay: 0.19s; }
.nav-drawer.open .nav-drawer-links a:nth-child(3) { transition-delay: 0.24s; }
.nav-drawer.open .nav-drawer-links a:nth-child(4) { transition-delay: 0.29s; }
.nav-drawer.open .nav-drawer-links a:nth-child(5) { transition-delay: 0.34s; }
.nav-drawer.open .nav-drawer-links a:nth-child(6) { transition-delay: 0.39s; }

.nav-drawer-footer {
  position: relative;
  z-index: 2;
  padding-bottom: 12px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s var(--ease-out);
}

.nav-drawer.open .nav-drawer-footer {
  opacity: 1;
  transform: none;
  transition-delay: 0.42s;
}

.nav-drawer-cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0 24px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.nav-drawer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-drawer-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.nav-drawer-utility a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c5ccd6;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-drawer-utility i { color: var(--blue); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-media,
.hero-shade,
.hero-grid-lines {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
  background: #040609;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: url("../assets/images/heavenly-tints/portfolio/hero-process-landscape.jpg") center 52% / cover no-repeat;
  filter: blur(22px) saturate(0.75) brightness(0.6);
  opacity: 0.62;
  transform: scale(1.06);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.82) contrast(1.07) brightness(0.82);
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 4, 8, 0.98) 0%, rgba(2, 4, 8, 0.86) 39%, rgba(2, 4, 8, 0.36) 70%, rgba(2, 4, 8, 0.48) 100%),
    linear-gradient(0deg, rgba(2, 4, 8, 0.9), transparent 38%);
}

.hero-grid-lines {
  z-index: 3;
  pointer-events: none;
  opacity: 0.1;
  background-image: linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.18) 50%, transparent calc(50% + 1px));
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  padding-block: 72px 118px;
}

.hero-copy {
  max-width: 930px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #cad2dd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(97, 182, 255, 0.5);
}

.hero-headline,
.section h2,
.film-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 7.2vw, 112px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  font-synthesis: none;
  font-kerning: normal;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding: 0.09em 0.025em 0.11em;
  margin: -0.09em 0 -0.11em;
}

.hero-line-accent,
.section h2 em,
.film-copy h2 em,
.final-cta h2 em {
  color: var(--blue);
  font-style: italic;
  font-weight: 900;
}

.hero-letter {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero-lead {
  max-width: 625px;
  margin: 30px 0;
  color: #d2d9e3;
  font-size: clamp(15px, 1.35vw, 19px);
}

.hero-actions,
.final-cta .container > div {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid var(--line-bright);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.btn-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--ink);
}

.btn-primary:hover {
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-ghost {
  background: rgba(5, 7, 11, 0.46);
  color: #fff;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
  transform: translateY(-3px);
}

.hero-spec {
  display: none;
  align-self: end;
  margin-bottom: 36px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 8, 13, 0.48);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.hero-spec-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.hero-spec-top > span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
}

.hero-spec-top small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-spec > strong {
  display: block;
  margin-top: 28px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.8;
}

.hero-spec > p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 11px;
}

.hero-spec-line {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.hero-spec-line span {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  color: #d4dae4;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-proof {
  position: absolute;
  left: 0;
  bottom: 22px;
  display: flex;
  align-items: stretch;
}

.hero-proof > div {
  min-width: 160px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.hero-proof > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.03em;
}

.hero-proof span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c9d0da;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--blue), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  50% { transform: scaleY(0.55); transform-origin: top; opacity: 0.55; }
}

.marquee {
  overflow: hidden;
  padding: 13px 0;
  background: var(--blue);
  color: var(--ink);
}

.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  animation: marquee 34s linear infinite;
}

.marquee-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Trust proof */
.trust-strip {
  padding: 60px 0 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(97, 182, 255, 0.07), transparent 24rem),
    #05070b;
}

.trust-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 60px;
  margin-bottom: 28px;
}

.trust-intro h2 {
  max-width: 900px;
  font-size: clamp(42px, 4vw, 56px);
  line-height: 0.94;
}

.trust-intro > p {
  max-width: 310px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trust-item {
  position: relative;
  min-width: 0;
  min-height: 196px;
  padding: 25px 27px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17, 23, 33, 0.9), rgba(8, 12, 18, 0.95));
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  border-color: rgba(97, 182, 255, 0.42);
  background: linear-gradient(145deg, rgba(19, 29, 42, 0.95), rgba(8, 13, 20, 0.98));
}

.trust-item > span {
  position: absolute;
  top: 19px;
  right: 24px;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
}

.trust-item > i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(97, 182, 255, 0.22);
  background: rgba(97, 182, 255, 0.07);
  color: var(--blue);
  font-size: 18px;
}

.trust-item h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-item p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

/* Shared sections */
.section {
  position: relative;
  padding: 124px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.section-heading h2,
.academy h2,
.faq h2 {
  font-size: clamp(50px, 6.6vw, 90px);
}

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

.services {
  background:
    radial-gradient(circle at 18% 28%, rgba(97, 182, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #080b11, #05070b);
}

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

.service-card {
  position: relative;
  min-height: 505px;
  display: flex;
  flex-direction: column;
  padding: 38px 30px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(18, 24, 34, 0.96), rgba(11, 15, 22, 0.96));
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  left: -8rem;
  top: -8rem;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-9px);
  border-color: rgba(97, 182, 255, 0.48);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.service-card:hover::before { opacity: 0.14; }
.service-card:hover::after { transform: scaleX(1); }

.service-card.featured {
  border-color: rgba(97, 182, 255, 0.62);
  background: linear-gradient(145deg, #111e2e, #0d121a);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.popular {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 12px;
  background: var(--blue);
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.service-number {
  position: absolute;
  right: 24px;
  top: 15px;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.service-card > i {
  margin: 28px 0 36px;
  color: var(--blue);
  font-size: 28px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  font-size: 13px;
}

.service-card ul {
  margin: 18px 0 30px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12px;
}

.service-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue);
  font-weight: 900;
}

.service-card > a {
  margin-top: auto;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-card > a i {
  margin-left: 6px;
  transition: transform 0.25s ease;
}

.service-card > a:hover i { transform: translateX(5px); }

/* Film split */
.film-section {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #090c12;
}

.film-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.film-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 62%, #090c12 100%), linear-gradient(0deg, rgba(3, 5, 8, 0.38), transparent 45%);
}

.film-media video,
.academy-visual video,
.final-cta-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-media video {
  position: absolute;
  inset: 0;
  object-position: center 72%;
}

.media-index {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 25px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.film-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(32px, 7vw, 110px) 100px 70px;
}

.film-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(52px, 5.5vw, 82px);
}

.film-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
}

.film-options {
  margin: 28px 0;
}

.film-options > div {
  display: flex;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.film-options > div:last-child { border-bottom: 1px solid var(--line); }

.film-options > div > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--blue);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
}

.film-options h3 {
  margin: 0 0 3px;
  font-family: var(--font-display);
  font-size: 21px;
  text-transform: uppercase;
}

.film-options p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.text-link {
  align-self: flex-start;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link i {
  margin-left: 7px;
  transition: transform 0.25s ease;
}

.text-link:hover i { transform: translateX(5px); }

/* Craft video grid */
.craft {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #05070b;
  background-size: 70px 70px;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.craft-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.craft-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.06);
  transition: transform 1s var(--ease-out), filter 0.45s ease;
}

.craft-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 4, 8, 0.94), rgba(2, 4, 8, 0.06) 70%);
}

.craft-card:hover video {
  transform: scale(1.045);
  filter: saturate(1) contrast(1.02);
}

.craft-card > div {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 23px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: end;
  column-gap: 10px;
}

.craft-card > div > span {
  grid-row: 1 / 3;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  line-height: 0.9;
}

.craft-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.craft-card p {
  margin: 5px 0 0;
  color: #b8c0cc;
  font-size: 11px;
}

/* Academy */
.academy {
  overflow: hidden;
  background: linear-gradient(125deg, #08101a, #05070b 58%);
}

.academy::before {
  content: "HTA";
  position: absolute;
  right: clamp(16px, 4vw, 64px);
  top: 30px;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: clamp(130px, 20vw, 300px);
  font-weight: 900;
  line-height: 1;
}

.academy-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.67fr;
  gap: 90px;
  align-items: center;
}

.academy-copy {
  position: relative;
  z-index: 2;
}

.academy-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 15px;
}

.academy-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 34px 0;
}

.academy-list > div {
  display: flex;
  gap: 14px;
}

.academy-list i {
  margin-top: 4px;
  color: var(--blue);
  font-size: 18px;
}

.academy-list span {
  color: var(--muted);
  font-size: 11px;
}

.academy-list strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}

.academy-visual {
  position: relative;
  width: min(100%, 450px);
  aspect-ratio: 9 / 13;
  margin-inline: auto;
}

.academy-visual video {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(97, 182, 255, 0.52);
  object-position: center;
}

.academy-frame {
  position: absolute;
  z-index: -1;
  inset: -16px 16px 16px -16px;
  border: 1px solid rgba(97, 182, 255, 0.22);
}

.social-badge {
  position: absolute;
  left: -46px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  color: #080b11;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  transition: transform 0.3s var(--ease-out);
}

.social-badge:hover { transform: translateY(-5px) rotate(-1deg); }
.social-badge i { font-size: 22px; }
.social-badge span { font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; }
.social-badge strong { display: block; font-size: 12px; letter-spacing: 0; text-transform: none; }

/* Portfolio */
.work {
  background: #07090e;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 275px;
  gap: 14px;
}

.work-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.work-card-wide { grid-column: span 2; }
.work-card-tall { grid-row: span 2; }

.work-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-x, 50%) var(--focus-y, 50%);
  filter: saturate(0.74) contrast(1.04);
  transition: transform 0.9s var(--ease-out), filter 0.45s ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 4, 8, 0.9), transparent 58%);
}

.work-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1);
}

.work-card figcaption {
  position: absolute;
  z-index: 2;
  left: 21px;
  right: 21px;
  bottom: 18px;
  transition: transform 0.4s var(--ease-out);
}

.work-card:hover figcaption { transform: translateY(-4px); }

.work-card figcaption span {
  display: block;
  color: var(--blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.work-card figcaption strong {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

/* Process and FAQ */
.process-strip {
  padding: 72px 0;
  background: var(--blue);
  color: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid > div {
  position: relative;
  min-width: 0;
  padding: 0 27px;
  border-left: 1px solid rgba(6, 16, 27, 0.22);
}

.process-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-grid > div > span {
  position: absolute;
  right: 20px;
  top: -29px;
  opacity: 0.09;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
}

.process-grid i { margin-bottom: 20px; font-size: 22px; }
.process-grid h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 17px; font-weight: 900; letter-spacing: -0.03em; text-transform: uppercase; }
.process-grid p { margin: 0; opacity: 0.78; font-size: 11px; }

.payment-strip {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  background: #0b0e14;
}

.payment-row {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.15fr;
  align-items: center;
  gap: 45px;
}

.payment-row .eyebrow { margin-bottom: 8px; }

.payment-row h2 {
  font-size: clamp(25px, 2.8vw, 40px);
}

.payment-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.payment-methods span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: #d9dee7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-methods i { color: var(--blue); font-size: 17px; }
.payment-methods .afterpay-mark { color: #b2fce4; text-transform: none; }

.quote {
  background:
    radial-gradient(circle at 76% 48%, rgba(97, 182, 255, 0.1), transparent 27rem),
    #05070b;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
  align-items: center;
}

.quote-copy h2 {
  font-size: clamp(54px, 6.4vw, 90px);
}

.quote-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.quote-assurance {
  max-width: 500px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.quote-assurance i { margin-top: 2px; color: var(--blue); }
.quote-assurance strong { display: block; margin-bottom: 3px; color: #fff; font-size: 12px; }

.quote-form {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 18px;
  padding: 42px;
  border: 1px solid rgba(97, 182, 255, 0.28);
  background: linear-gradient(145deg, rgba(17, 25, 36, 0.96), rgba(9, 13, 20, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  color: #aeb6c4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: #090d14;
  color: #fff;
  font: 600 13px/1 var(--font-body);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 23px, calc(100% - 13px) 23px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(97, 182, 255, 0.1);
}

.quote-form .btn {
  width: 100%;
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.form-note {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: -4px 0 0;
  color: #7e8796;
  font-size: 9px;
}

.form-note i { color: var(--blue); }

.faq {
  background:
    radial-gradient(circle at 10% 42%, rgba(97, 182, 255, 0.08), transparent 22rem),
    #080b11;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.1fr;
  gap: 90px;
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  max-width: 370px;
  color: var(--muted);
  font-size: 13px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

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

.faq-list summary i {
  position: absolute;
  right: 5px;
  top: 29px;
  color: var(--blue);
  transition: transform 0.3s var(--ease-out);
}

.faq-list details[open]:not(.is-closing) summary i { transform: rotate(45deg); }

.faq-list details.is-animating {
  overflow: hidden;
}

.faq-list details p {
  margin: 0;
  padding: 0 45px 24px 0;
  color: var(--muted);
  font-size: 13px;
  transform-origin: top;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.final-cta-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.final-cta-media video {
  position: absolute;
  inset: 0;
  object-position: center 58%;
}

.final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 5, 8, 0.98), rgba(3, 5, 8, 0.78) 48%, rgba(3, 5, 8, 0.28));
}

.final-cta h2 { font-size: clamp(62px, 7.5vw, 108px); }

.final-cta p:not(.eyebrow) {
  max-width: 520px;
  margin: 25px 0;
  color: #d2d8e2;
}

.final-cta .container > div { margin-top: 18px; }

footer {
  padding: 56px 0 22px;
  border-top: 1px solid var(--line);
  background: #030508;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 55px;
  align-items: center;
}

.footer-brand .brand-logo-viewport {
  width: min(220px, 100%);
  height: auto;
  aspect-ratio: 924 / 675;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.footer-brand .brand-logo-viewport img {
  position: static;
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: saturate(1.05) contrast(1.04) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 21px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c6ccd6;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-links a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #697181;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Booking page */
.booking-page {
  background: #05070b;
}

.booking-page .site-header {
  border-color: var(--line);
  background: rgba(3, 5, 8, 0.88);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
}

.booking-current {
  pointer-events: none;
}

.booking-hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #05070b;
}

.booking-hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.28;
  background:
    radial-gradient(circle at 72% 45%, rgba(97, 182, 255, 0.22), transparent 28rem),
    url("../assets/images/heavenly-tints/portfolio/hero-process-landscape.jpg") center / cover;
  filter: saturate(0.65) contrast(1.08);
}

.booking-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.98), rgba(3, 5, 8, 0.82) 52%, rgba(3, 5, 8, 0.58)),
    linear-gradient(0deg, rgba(3, 5, 8, 0.92), transparent 52%);
}

.booking-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image: linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 255, 255, 0.18) 50%, transparent calc(50% + 1px));
}

.booking-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-block: 76px;
}

.booking-hero-copy {
  min-width: 0;
}

.booking-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 40px;
  color: #9da6b4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.booking-back:hover {
  color: var(--blue);
  transform: translateX(-3px);
}

.booking-hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(68px, 7.2vw, 108px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.booking-hero h1 em {
  color: var(--blue);
}

.booking-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 34px;
  color: #c5ccd7;
  font-size: 14px;
}

.booking-hero-video {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(97, 182, 255, 0.34);
  background: #0a0e14;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.booking-hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 5, 9, 0.82), transparent 55%);
  pointer-events: none;
}

.booking-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-hero-video figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
}

.booking-hero-video figcaption span,
.booking-hero-video figcaption strong {
  display: block;
}

.booking-hero-video figcaption span {
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-hero-video figcaption strong {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
}

.booking-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.booking-hero-proof span {
  min-width: 155px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 28px;
  border-left: 1px solid var(--line);
  color: #7f8998;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-hero-proof span:first-child {
  padding-left: 0;
  border-left: 0;
}

.booking-hero-proof strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.booking-content {
  padding: 82px 0 110px;
  background:
    radial-gradient(circle at 82% 15%, rgba(97, 182, 255, 0.08), transparent 28rem),
    #07090e;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  align-items: start;
}

.booking-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.booking-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.8vw, 68px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.booking-heading h2 em {
  color: var(--blue);
}

.booking-heading > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.booking-heading > .eyebrow { margin: 0 0 18px; }

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  scroll-margin-top: calc(var(--header-h) + 22px);
  margin: 0 0 12px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  list-style: none;
}

.booking-progress li {
  min-width: 0;
  border-left: 1px solid var(--line);
}

.booking-progress li:first-child { border-left: 0; }

.booking-progress button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: #737e8d;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  transition: background 0.22s ease, color 0.22s ease;
}

.booking-progress button:disabled { cursor: default; }
.booking-progress span { color: var(--blue); font-size: 9px; font-weight: 900; }
.booking-progress strong { font-size: 9px; letter-spacing: 0.1em; }
.booking-progress li.is-active button { background: rgba(97, 182, 255, 0.11); color: #fff; }
.booking-progress li.is-complete button { color: #b9c3d0; }
.booking-progress li.is-complete button::after { content: "✓"; color: var(--blue); }

.booking-form {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(14, 20, 29, 0.98), rgba(7, 10, 16, 0.99));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
}

.booking-step {
  min-width: 0;
  margin: 0;
  padding: clamp(30px, 4.2vw, 48px);
  border: 0;
}

.booking-step[hidden] { display: none; }
.booking-step.is-active { animation: bookingStepIn 0.34s var(--ease-out) both; }

@keyframes bookingStepIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

.booking-step-intro {
  max-width: 650px;
  margin-bottom: 30px;
}

.booking-step-intro > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-step-intro h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.1vw, 40px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.booking-step-intro p {
  max-width: 580px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.booking-step-actions {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.booking-step-actions-end { justify-content: flex-end; }
.booking-step-actions .btn { min-width: 170px; }
.booking-next,
.booking-submit { border: 0; cursor: pointer; }

.booking-form-section {
  margin: 0;
  padding: 42px;
  border: 0;
  border-top: 1px solid var(--line);
}

.booking-form-section:first-child { border-top: 0; }

.booking-form-section legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 28px;
  padding: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form-section legend span {
  width: 33px;
  height: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(97, 182, 255, 0.36);
  background: rgba(97, 182, 255, 0.08);
  color: var(--blue);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vehicle-detail-fields {
  grid-template-columns: 1fr 1fr 0.62fr;
  margin-top: 24px;
}

.booking-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

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

.booking-field label,
.booking-label {
  color: #b7bfcb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-field label b,
.booking-label b { color: var(--blue); }
.booking-field label span { color: #707988; font-weight: 600; }

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 55px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #080c12;
  color: #fff;
  font: 600 13px/1.5 var(--font-display);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.booking-field textarea {
  min-height: 125px;
  padding-block: 15px;
  resize: vertical;
}

.booking-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--blue) 50%), linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position: calc(100% - 18px) 25px, calc(100% - 13px) 25px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: var(--blue);
  background-color: #0a1018;
  box-shadow: 0 0 0 3px rgba(97, 182, 255, 0.1);
}

.vehicle-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 2px;
}

.vehicle-options label,
.film-choice {
  position: relative;
  cursor: pointer;
}

.vehicle-options input,
.film-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.vehicle-options label > span {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}

.vehicle-options label:hover > span {
  transform: translateY(-3px);
  border-color: rgba(97, 182, 255, 0.38);
}

.vehicle-options input:checked + span {
  border-color: var(--blue);
  background: rgba(97, 182, 255, 0.1);
  box-shadow: inset 0 -2px var(--blue);
}

.vehicle-options input:focus-visible + span,
.film-choice input:focus-visible + span {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.vehicle-options i {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 22px;
}

.vehicle-options strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-options small {
  color: #7f8896;
  font-size: 9px;
  line-height: 1.45;
}

.booking-section-note {
  max-width: 660px;
  margin: -8px 0 25px;
  color: var(--muted);
  font-size: 12px;
}

.film-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.film-choice.help-choice { grid-column: 1 / -1; }

.film-choice > span {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  transition: transform 0.3s var(--ease-out), border-color 0.25s ease, background 0.25s ease;
}

.film-choice:hover > span {
  transform: translateY(-4px);
  border-color: rgba(97, 182, 255, 0.42);
}

.film-choice input:checked + span {
  border-color: var(--blue);
  background: linear-gradient(145deg, rgba(97, 182, 255, 0.13), rgba(97, 182, 255, 0.035));
  box-shadow: inset 0 -2px var(--blue);
}

.film-choice > span > small {
  position: absolute;
  top: 17px;
  right: 20px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
}

.film-choice > span > i {
  margin-bottom: 27px;
  color: var(--blue);
  font-size: 24px;
}

.film-choice > span > strong {
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.film-choice > span > em {
  max-width: 290px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.film-choice > span > b {
  margin-top: auto;
  color: var(--blue);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.film-choice mark {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 10px;
  background: var(--blue);
  color: var(--ink);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.film-choice.premium > span > i { margin-top: 7px; }

.film-choice.help-choice > span {
  min-height: 165px;
}

.booking-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 28px 0;
  color: #9aa3b1;
  cursor: pointer;
  font-size: 11px;
}

.booking-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--blue);
}

.booking-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.booking-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 13px 0 0;
  color: #6f7887;
  font-size: 8px;
}

.booking-security i { color: var(--blue); }

.booking-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  overflow: hidden;
  border: 1px solid rgba(97, 182, 255, 0.26);
  background: linear-gradient(155deg, rgba(15, 28, 42, 0.98), rgba(7, 11, 17, 0.99));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.booking-summary-head,
.booking-summary-list > div,
.booking-summary-note,
.booking-summary-call {
  padding: 22px 24px;
}

.booking-summary-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.booking-summary-head .eyebrow { margin: 0; }
.booking-summary-head > strong { color: var(--blue); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.booking-summary-list { margin: 0; }
.booking-summary-list > div { border-bottom: 1px solid var(--line); }
.booking-summary-list dt { margin-bottom: 7px; color: #707b8a; font-size: 8px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.booking-summary-list dd { margin: 0; color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 900; line-height: 1.25; text-transform: uppercase; }

.booking-summary-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #909aa8;
  font-size: 10px;
}

.booking-summary-note i { margin-top: 2px; color: var(--blue); }
.booking-summary-note strong { display: block; margin-bottom: 3px; color: #fff; }
.booking-summary-call { display: flex; align-items: center; gap: 12px; background: var(--blue); color: var(--ink); }
.booking-summary-call > i { font-size: 17px; }
.booking-summary-call span { display: flex; flex-direction: column; gap: 2px; font-size: 8px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.booking-summary-call strong { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.02em; }

.booking-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 14px;
}

.booking-side-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 22, 32, 0.97), rgba(8, 11, 17, 0.99));
}

.booking-side-card h3 {
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.included-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #b5bdc9;
  font-size: 10px;
}

.included-card li:first-child { border-top: 0; }
.included-card li i { color: var(--blue); font-size: 9px; }

.timing-card > i,
.quote-card > i {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 25px;
}

.timing-card span {
  display: block;
  color: #838d9b;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.timing-card strong {
  display: block;
  margin: 5px 0 13px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.timing-card p,
.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.quote-card {
  border-color: rgba(97, 182, 255, 0.3);
  background: linear-gradient(145deg, rgba(19, 35, 52, 0.98), rgba(8, 13, 20, 0.99));
}

.quote-card h3 { margin-bottom: 10px; }

.help-card {
  background: var(--blue);
  color: var(--ink);
}

.help-card p {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.help-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
}

.help-card small {
  display: block;
  margin-top: 12px;
  opacity: 0.72;
  font-size: 8px;
}

.booking-dialog {
  width: min(calc(100% - 40px), 650px);
  max-height: min(86vh, 780px);
  padding: 42px;
  overflow-y: auto;
  border: 1px solid rgba(97, 182, 255, 0.42);
  border-radius: 0;
  background: linear-gradient(145deg, #101a27, #070b11);
  color: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.68);
}

/* Homepage booking flow */
.booking-flow-dialog {
  width: min(1240px, calc(100% - 40px));
  height: min(850px, calc(100svh - 32px));
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(97, 182, 255, 0.38);
  border-radius: 0;
  background: #07090e;
  color: #fff;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.76);
}

.booking-flow-dialog::backdrop {
  background: rgba(1, 3, 6, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.booking-flow-layout { height: 100%; display: grid; grid-template-columns: minmax(330px, 0.72fr) minmax(540px, 1.28fr); }
.booking-flow-media { position: relative; min-width: 0; overflow: hidden; background: #07101a; }
.booking-flow-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3, 7, 12, 0.98) 8%, rgba(3, 7, 12, 0.18) 68%), linear-gradient(90deg, transparent 70%, rgba(3, 7, 12, 0.42)); }
.booking-flow-media video { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.booking-flow-media-copy { position: absolute; z-index: 1; left: clamp(28px, 4vw, 52px); right: clamp(28px, 4vw, 52px); bottom: clamp(30px, 5vw, 58px); }
.booking-flow-media-copy h2 { margin: 18px 0; font-family: var(--font-display); font-size: clamp(48px, 5vw, 72px); font-weight: 900; line-height: 0.86; letter-spacing: -0.06em; text-transform: uppercase; }
.booking-flow-media-copy h2 em { color: var(--blue); }
.booking-flow-media-copy > p:not(.eyebrow) { max-width: 420px; margin: 0 0 25px; color: #c0c7d1; font-size: 12px; }
.booking-flow-media-copy > div { display: flex; flex-direction: column; }
.booking-flow-media-copy > div strong { font-family: var(--font-display); font-size: 25px; }
.booking-flow-media-copy > div span { color: #8d97a5; font-size: 8px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.booking-flow-panel { min-width: 0; height: 100%; overflow-y: auto; overscroll-behavior: contain; background: #07090e; scrollbar-color: var(--blue) #07090e; }
.booking-flow-panel .booking-progress { position: sticky; z-index: 3; top: 0; margin: 0; border-width: 0 0 1px; background: rgba(7, 10, 15, 0.96); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); }
.booking-flow-panel .booking-form { border: 0; box-shadow: none; }
.booking-flow-panel .booking-step { padding: clamp(30px, 5vw, 52px); }
.booking-flow-close { position: absolute; z-index: 5; top: 16px; right: 16px; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(5, 8, 13, 0.88); color: #fff; cursor: pointer; transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease; }
.booking-flow-close:hover { color: var(--blue); border-color: var(--blue); transform: rotate(3deg); }
body.booking-flow-open { overflow: hidden; }

.floating-book-cta {
  position: fixed;
  z-index: 80;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  min-height: 52px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: var(--blue);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(97, 182, 255, 0.16);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition: opacity 0.28s ease, transform 0.38s var(--ease-out), background 0.2s ease;
}

.floating-book-cta:hover { background: #fff; }
.floating-book-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.booking-flow-open .floating-book-cta,
.nav-open .floating-book-cta { opacity: 0; pointer-events: none; transform: translateY(22px); }

/* The standalone booking page is reused inside the homepage dialog. */
html.booking-embed,
html.booking-embed body { min-height: 100%; background: #07090e; }
.booking-embed .site-header,
.booking-embed .booking-hero,
.booking-embed footer { display: none; }
.booking-embed .booking-content { min-height: 100vh; padding: 0; background: #07090e; }
.booking-embed .booking-shell { width: 100%; display: block; }
.booking-embed .booking-heading,
.booking-embed .booking-summary { display: none; }
.booking-embed .booking-progress { position: sticky; z-index: 3; top: 0; margin: 0; border-width: 0 0 1px; background: rgba(7, 10, 15, 0.96); -webkit-backdrop-filter: blur(15px); backdrop-filter: blur(15px); }
.booking-embed .booking-form { border: 0; box-shadow: none; }
.booking-embed .booking-step { padding: clamp(30px, 5vw, 52px); }
.booking-embed .booking-dialog { max-height: calc(100vh - 32px); }

.booking-dialog::backdrop {
  background: rgba(1, 3, 6, 0.84);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.booking-dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 72px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.booking-dialog h2 em { color: var(--blue); }

.booking-dialog > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 12px;
}

.booking-review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 26px;
  border: 1px solid var(--line);
}

.booking-review > div {
  padding: 16px;
  border-top: 1px solid var(--line);
}

.booking-review > div:nth-child(-n + 2) { border-top: 0; }
.booking-review > div:nth-child(even) { border-left: 1px solid var(--line); }

.booking-review dt {
  color: #7d8796;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-review dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.dialog-actions {
  display: flex;
  gap: 10px;
}

.dialog-actions .btn { flex: 1; }

/* Motion states. JS adds .visible or hands control to GSAP. */
.fade-in {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(34px);
  transition: opacity 0.78s var(--ease-out), filter 0.78s var(--ease-out), transform 0.78s var(--ease-out);
  will-change: opacity, filter, transform;
}

.fade-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
  will-change: auto;
}

.hero-reveal {
  opacity: 0;
  transform: translateY(22px);
}

.parallax-media {
  will-change: transform;
}

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .mobile-nav-toggle { display: block; }
  .header-cta { display: none; }
  .floating-book-cta { display: inline-flex; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .hero-video { width: 100%; }
  .trust-intro { grid-template-columns: minmax(0, 1fr) 270px; gap: 35px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 390px; }
  .academy-grid { gap: 55px; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .work-card-tall { grid-row: auto; }
  .work-card-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
  .payment-row { grid-template-columns: 0.8fr 1.2fr; }
  .payment-row > p { display: none; }
  .quote-grid { gap: 58px; }
}

@media (min-width: 821px) and (max-width: 1080px) {
  .work-grid .work-card:last-child { display: none; }
}

@media (max-width: 820px) {
  :root { --header-h: 74px; }
  .container { width: min(calc(100% - 32px), var(--max)); }
  .header-cta { display: none; }
  .brand-copy strong { font-size: 19px; }
  .nav-drawer { grid-template-columns: 1fr; align-content: end; gap: 32px; padding-bottom: 34px; }
  .nav-drawer-links a { font-size: clamp(42px, 8vh, 68px); }
  .nav-drawer-footer { max-width: 480px; }

  .hero { min-height: 760px; }
  .hero-media::before { background-image: url("../assets/images/heavenly-tints/portfolio/hero-bmw-exterior.jpg"); opacity: 0.4; }
  .hero-video { right: 0; width: 100%; object-fit: cover; object-position: center 46%; }
  .hero-shade { background: linear-gradient(90deg, rgba(2, 4, 8, 0.92), rgba(2, 4, 8, 0.45)), linear-gradient(0deg, rgba(2, 4, 8, 0.95), transparent 58%); }
  .hero-inner { grid-template-columns: 1fr; padding-block: 58px 128px; }
  .hero-copy { align-self: end; }
  .hero-headline { font-size: clamp(50px, 12.6vw, 86px); }
  .hero-spec { display: none; }
  .hero-proof { left: 0; right: 0; bottom: 18px; }
  .hero-proof > div { flex: 1; min-width: 0; padding: 0 14px; }
  .scroll-cue { display: none; }

  .section { padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .section-heading h2, .academy h2, .faq h2 { font-size: clamp(48px, 13vw, 70px); }
  .trust-strip { padding: 68px 0; }
  .trust-intro { grid-template-columns: 1fr; gap: 18px; }
  .trust-intro > p { max-width: 520px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 0; }
  .film-section { grid-template-columns: 1fr; }
  .film-media { height: 580px; min-height: 0; }
  .film-media::after { background: linear-gradient(0deg, #090c12, transparent 38%); }
  .film-copy { padding: 38px 32px 88px; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-card { min-height: 360px; }
  .academy-grid { grid-template-columns: 1fr; }
  .academy-visual { width: min(84%, 430px); margin-top: 24px; }
  .work-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 310px; }
  .work-card-wide { grid-column: auto; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 42px 0; }
  .payment-row { grid-template-columns: 1fr; gap: 22px; }
  .payment-row > p { display: block; }
  .quote-grid { grid-template-columns: 1fr; gap: 45px; }
  .quote-copy h2 { font-size: clamp(52px, 12vw, 78px); }
  .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .final-cta { min-height: 610px; }
  .final-cta-media video { object-position: 58% center; }
}

@media (max-width: 560px) {
  .brand-logo-viewport { width: 160px; height: 64px; }
  .brand-logo-viewport img { top: -62px; width: 160px; }
  .header-brand .brand-logo-viewport { width: 110px; height: 66px; }
  .header-brand .brand-logo-viewport img { top: -42px; width: 110px; }
  .mobile-nav-toggle { width: 44px; height: 44px; }
  .nav-drawer-links a { gap: 13px; font-size: clamp(38px, 7.8vh, 56px); }
  .nav-drawer-links a span { width: 22px; }
  .nav-drawer-meta { flex-direction: column; gap: 9px; }

  .hero { min-height: 720px; }
  .hero-inner { padding-block: 46px 125px; }
  .hero-headline { font-size: clamp(42px, 12.6vw, 60px); line-height: 0.88; }
  .hero-lead { max-width: 92%; font-size: 14px; }
  .hero-actions { max-width: 325px; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof > div { padding: 0 9px; }
  .hero-proof strong { font-size: 14px; }
  .hero-proof span { font-size: 7px; }

  .trust-intro { margin-bottom: 30px; }
  .trust-intro h2 { max-width: 340px; font-size: clamp(38px, 11vw, 52px); }
  .trust-item { padding: 25px 23px; }
  .trust-item > i { margin-bottom: 22px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 0; }
  .film-media { height: 520px; }
  .film-copy { padding: 28px 20px 76px; }
  .film-copy h2 { font-size: clamp(50px, 15vw, 68px); }
  .craft-card { min-height: 310px; }
  .craft-card > div { left: 18px; right: 18px; bottom: 18px; }
  .academy-list { grid-template-columns: 1fr; }
  .academy-visual { width: 88%; }
  .social-badge { left: -18px; }

  .work-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    padding-right: 16px;
    padding-bottom: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-card, .work-card-wide, .work-card-tall { min-width: 84%; height: 470px; grid-column: auto; grid-row: auto; scroll-snap-align: start; }

  .process-strip { padding: 54px 0; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-grid > div, .process-grid > div:first-child { padding: 25px 0; border-top: 1px solid rgba(6, 16, 27, 0.22); border-left: 0; }
  .process-grid > div:first-child { border-top: 0; }
  .payment-methods { grid-template-columns: 1fr 1fr; }
  .quote-form { grid-template-columns: 1fr; gap: 16px; padding: 26px 20px; }
  .quote-form .form-field, .quote-form .form-field-wide { grid-column: 1; }
  .faq-list summary { font-size: 13px; }
  .final-cta h2 { font-size: clamp(54px, 15vw, 75px); }
  .final-cta .container > div { max-width: 340px; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 27px; }
  .footer-links { grid-column: auto; gap: 17px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .marquee-track { animation-duration: 24s; }
}

@media (max-width: 1080px) {
  .booking-hero-inner { grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr); gap: 42px; }
  .booking-shell { grid-template-columns: 1fr; }
  .booking-summary { position: static; display: grid; grid-template-columns: 0.75fr 1.8fr 1fr; }
  .booking-summary-head,
  .booking-summary-list,
  .booking-summary-note { border-right: 1px solid var(--line); }
  .booking-summary-list { display: grid; grid-template-columns: repeat(3, 1fr); }
  .booking-summary-list > div { border-bottom: 0; border-left: 1px solid var(--line); }
  .booking-summary-list > div:first-child { border-left: 0; }
  .booking-summary-call { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .booking-page .nav-drawer { align-content: center; }
  .booking-hero { min-height: 0; }
  .booking-hero::before {
    background: linear-gradient(0deg, rgba(3, 5, 8, 0.96) 0%, rgba(3, 5, 8, 0.56) 72%, rgba(3, 5, 8, 0.74) 100%);
  }
  .booking-hero-inner { grid-template-columns: 1fr; gap: 38px; padding-block: 76px 0 54px; }
  .booking-back { margin-bottom: 56px; }
  .booking-hero h1 { font-size: clamp(62px, 17vw, 94px); }
  .booking-hero-copy > p:not(.eyebrow) { max-width: 560px; font-size: 14px; }
  .booking-hero-video { width: 100%; aspect-ratio: 16 / 9; }
  .booking-content { padding: 68px 0 90px; }
  .booking-heading > p { max-width: 560px; }
  .booking-progress { grid-template-columns: 1fr 1fr; }
  .booking-progress li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .booking-progress li:nth-child(4) { border-top: 1px solid var(--line); }
  .vehicle-options { grid-template-columns: 1fr; }
  .vehicle-options label > span { min-height: 0; }
  .vehicle-options i { margin-bottom: 17px; }
  .booking-summary { display: block; }
  .booking-summary-head,
  .booking-summary-list,
  .booking-summary-note { border-right: 0; }
  .booking-summary-list { display: block; }
  .booking-summary-list > div { border-left: 0; border-bottom: 1px solid var(--line); }

  .booking-flow-dialog { width: 100%; height: 100svh; border: 0; }
  .booking-flow-layout { display: block; }
  .booking-flow-media { display: none; }
  .booking-flow-panel { width: 100%; height: 100%; }
  .booking-flow-close { top: 9px; right: 9px; width: 40px; height: 40px; }

  .booking-flow-panel .booking-progress { grid-template-columns: repeat(4, 1fr); padding-right: 54px; }
  .booking-flow-panel .booking-progress li,
  .booking-flow-panel .booking-progress li:nth-child(3),
  .booking-flow-panel .booking-progress li:nth-child(4) { border-top: 0; border-left: 1px solid var(--line); }
  .booking-flow-panel .booking-progress li:first-child { border-left: 0; }
  .booking-flow-panel .booking-progress button { min-height: 58px; }
}

@media (max-width: 560px) {
  .booking-hero-inner { padding-block: 62px 0 42px; }
  .booking-back { margin-bottom: 48px; }
  .booking-hero h1 { font-size: clamp(58px, 16.5vw, 76px); }
  .booking-hero-proof { gap: 18px 0; }
  .booking-hero-proof span { min-width: 50%; padding: 0 16px; }
  .booking-hero-proof span:nth-child(3) { padding-left: 0; border-left: 0; }
  .booking-heading h2 { font-size: clamp(44px, 12.5vw, 62px); }
  .booking-progress button { min-height: 52px; }
  .booking-step { padding: 30px 20px; }
  .booking-fields,
  .vehicle-detail-fields,
  .film-choice-grid { grid-template-columns: 1fr; }
  .booking-field,
  .booking-field-wide,
  .film-choice.help-choice { grid-column: 1; }
  .film-choice > span,
  .film-choice.help-choice > span { min-height: 205px; padding: 24px; }
  .booking-step-actions { flex-direction: column-reverse; }
  .booking-step-actions-end { flex-direction: column; }
  .booking-step-actions .btn { width: 100%; min-width: 0; }
  .booking-dialog { width: min(calc(100% - 24px), 650px); padding: 34px 20px 22px; }
  .booking-review { grid-template-columns: 1fr; }
  .booking-review > div,
  .booking-review > div:nth-child(-n + 2) { border-top: 1px solid var(--line); }
  .booking-review > div:first-child { border-top: 0; }
  .booking-review > div:nth-child(even) { border-left: 0; }
  .dialog-actions { flex-direction: column; }
  .booking-flow-panel .booking-step { padding: 28px 18px 42px; }
  .booking-flow-panel .booking-progress strong { display: none; }
  .booking-flow-panel .booking-progress span { font-size: 10px; }
  .booking-flow-panel .booking-progress button { min-height: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .fade-in, .hero-reveal { opacity: 1; filter: none; transform: none; }
  .hero-video { display: none; }
}
