:root {
  --black: #03070d;
  --black-soft: #07101b;
  --panel: #0b1522;
  --panel-light: #111e2d;
  --surface-graphite: #101720;
  --surface-navy: #07182a;
  --surface-deep: #02060b;
  --blue: #087cff;
  --blue-deep: #0048b9;
  --cyan: #20c7ff;
  --ice: #eef7ff;
  --silver: #a8b6c6;
  --muted: #728196;
  --line: rgba(173, 210, 243, 0.18);
  --line-dark: rgba(6, 35, 63, 0.16);
  --white: #ffffff;
  --shell: min(1380px, calc(100vw - clamp(2rem, 7vw, 7rem)));
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Manrope', system-ui, sans-serif;
  --mono: 'Space Mono', monospace;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--ice);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

a { color: inherit; }

p,
figure { margin: 0; }

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
}

h2 {
  color: var(--black);
  font-size: clamp(3.6rem, 7.4vw, 7.7rem);
  letter-spacing: -0.045em;
}

h2 em {
  color: var(--blue);
  font-style: italic;
  font-weight: 800;
}

h3 {
  font-size: clamp(2rem, 3.1vw, 3rem);
  letter-spacing: -0.025em;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: -999px;
  padding: 0.8rem 1.2rem;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
}

.skip-link:focus { left: 0.75rem; top: 0.75rem; }

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

.eyebrow,
.signal {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow { margin-bottom: 1.7rem; }

.button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  overflow: hidden;
  border: 1px solid transparent;
  padding: 0.85rem 1.45rem;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  isolation: isolate;
  transition: color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: '';
  background: var(--cyan);
  transform: translateX(-105%) skewX(-14deg);
  transition: transform 350ms var(--ease-expo);
}

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

.button svg,
.text-link svg,
.book-phone svg,
.lightbox-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover::before { transform: translateX(0) skewX(0); }

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 0 34px rgba(8, 124, 255, 0.25);
}

.button-primary:hover {
  color: var(--black);
  box-shadow: 0 0 48px rgba(32, 199, 255, 0.35);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(1, 5, 11, 0.3);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover { border-color: var(--cyan); color: var(--black); }

.button-large { min-height: 58px; padding: 1rem 1.8rem; font-size: 1.2rem; }

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
  border-bottom: 1px solid var(--blue);
  color: var(--ice);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link svg { transition: transform 220ms var(--ease); }
.text-link:hover svg { transform: translateX(5px); }

/* Header */

.utility-bar {
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #020408;
  color: var(--silver);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.utility-inner a { color: var(--white); text-decoration: none; }
.utility-inner a:hover { color: var(--cyan); }

.utility-status { display: inline-flex; align-items: center; gap: 0.55rem; }
.utility-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: signal-pulse 2s ease-in-out infinite;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(3, 7, 13, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 7, 13, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand picture {
  display: block;
  width: 78px;
  flex: 0 0 auto;
}

.brand img { width: 100%; height: auto; }

.brand > span { display: flex; flex-direction: column; line-height: 1; }
.brand strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand em {
  margin-top: 0.16rem;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.5rem);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--silver);
  font-family: var(--display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}

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

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-book { flex: 0 0 auto; min-height: 44px; padding: 0.72rem 1.2rem; }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  padding: 0.5rem max(1rem, 5vw) 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(3, 7, 13, 0.98);
}

.mobile-menu.is-open { display: flex; flex-direction: column; }

.mobile-menu > a:not(.button) {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-menu > a span { color: var(--blue); font-family: var(--mono); font-size: 0.62rem; }
.mobile-menu .button { margin-top: 1rem; }

/* Hero */

.hero {
  position: relative;
  min-height: min(960px, calc(100svh - 74px));
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
}

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

.hero-media { z-index: -3; }
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.04);
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, var(--black) 0%, rgba(3, 7, 13, 0.95) 31%, rgba(3, 7, 13, 0.52) 60%, rgba(3, 7, 13, 0.08) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 38%, rgba(3, 7, 13, 0.2) 100%);
}

.hero-grid {
  z-index: -1;
  opacity: 0.15;
  background-image: linear-gradient(rgba(32, 199, 255, 0.28) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 199, 255, 0.28) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}

.hero-inner {
  display: flex;
  min-height: min(960px, calc(100svh - 74px));
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-block: clamp(5rem, 10vh, 8rem) 8rem;
}

.signal { display: flex; align-items: center; gap: 0.7rem; color: var(--ice); }
.signal span {
  width: 38px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--blue);
}

.hero h1 {
  max-width: 890px;
  margin: 1.35rem 0 1.7rem;
  font-size: clamp(4.5rem, 11vw, 10.5rem);
  letter-spacing: -0.065em;
  line-height: 0.74;
}

.hero h1 span,
.hero h1 em { display: block; }

.hero h1 > span:first-child {
  color: var(--ice);
  font-size: 0.45em;
  letter-spacing: -0.035em;
}

.hero h1 em {
  width: fit-content;
  color: var(--blue);
  font-size: 1.12em;
  font-style: italic;
  text-shadow: 0 0 42px rgba(8, 124, 255, 0.35);
  transform: skewX(-5deg);
}

.hero h1 > span:last-child {
  color: var(--white);
  font-size: 0.69em;
  letter-spacing: -0.045em;
}

.hero h1 strong {
  color: transparent;
  font-weight: inherit;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
}

.hero-copy {
  max-width: 610px;
  color: #d2dce7;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.hero-proof {
  display: grid;
  width: min(770px, 78%);
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 7vh, 5.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-proof div {
  position: relative;
  display: grid;
  padding: 1.1rem 1.35rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof div + div { padding-left: 1.35rem; }
.hero-proof span { color: var(--cyan); font-family: var(--mono); font-size: 0.58rem; }
.hero-proof strong { margin-top: 0.45rem; font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-proof small { margin-top: 0.1rem; color: var(--silver); font-size: 0.7rem; }

.scroll-cue {
  position: absolute;
  right: 4vw;
  bottom: 2.8rem;
  display: flex;
  min-width: 48px;
  min-height: 80px;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--silver);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.17em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i { width: 1px; height: 48px; background: linear-gradient(var(--cyan), transparent); }

@keyframes signal-pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--blue);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.7vw, 2.8rem);
  padding: 0.95rem 2rem;
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker-track i { width: 5px; height: 5px; background: var(--cyan); transform: rotate(45deg); }

/* Shared sections */

.section { padding-block: clamp(4rem, 5vw, 5rem); }

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(2.75rem, 4.5vw, 4.75rem);
}

.section-lede {
  max-width: 510px;
  padding-bottom: 0.6rem;
  color: #425064;
  font-size: 1.04rem;
  line-height: 1.75;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease-expo), transform 650ms var(--ease-expo);
}

.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-delay-1 { transition-delay: 90ms; }
.js .reveal-delay-2 { transition-delay: 180ms; }

/* Services */

.services {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3.25rem, 4vw, 4rem);
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 8%, rgba(8, 124, 255, 0.24), transparent 34rem),
    linear-gradient(180deg, var(--surface-navy) 0%, #040b14 62%, var(--surface-deep) 100%);
  color: var(--ice);
}

.services::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: 0.17;
  background-image: linear-gradient(rgba(32, 199, 255, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 199, 255, 0.22) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(135deg, transparent 18%, black 72%, transparent 100%);
  pointer-events: none;
}

.services .shell { position: relative; }
.services h2 { color: var(--white); }
.services .section-lede { color: #aebdca; }
.services .section-heading {
  position: relative;
  align-items: end;
  overflow: hidden;
  margin-bottom: 0;
  padding: clamp(1rem, 2vw, 2rem) 0 clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(196, 221, 243, 0.24);
}

.services .section-heading::after {
  position: absolute;
  right: -0.035em;
  top: 0.05em;
  content: 'STANDARD';
  color: transparent;
  font-family: var(--display);
  font-size: clamp(8rem, 20vw, 21rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.74;
  -webkit-text-stroke: 1px rgba(113, 171, 220, 0.11);
  pointer-events: none;
}

.services .section-heading > * { position: relative; z-index: 1; }
.services .section-heading h2 { max-width: 1020px; }
.services .section-lede { max-width: 460px; padding-bottom: 0.45rem; }

.standard-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}

.standard-rail p {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 0.85rem;
  color: #d5e2ed;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.standard-rail p + p { padding-left: 1.5rem; border-left: 1px solid var(--line); }
.standard-rail span { color: var(--cyan); font-size: 0.54rem; }

.service-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.84fr 1.08fr;
  gap: 0.85rem;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.42);
}

.service-card {
  position: relative;
  display: flex;
  min-height: clamp(610px, 47vw, 735px);
  justify-content: flex-end;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(170, 211, 245, 0.22);
  background-color: #07111d;
  background-position: center;
  background-size: cover;
  isolation: isolate;
  transition: border-color 300ms ease, transform 450ms var(--ease-expo), box-shadow 450ms ease;
}

.service-card:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(2, 7, 13, 0.08) 12%, rgba(2, 7, 13, 0.3) 42%, rgba(2, 7, 13, 0.98) 79%), url('images/web/lamborghini-hood.webp');
  background-position: center 47%;
}

.service-card:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(2, 7, 13, 0.12) 8%, rgba(2, 7, 13, 0.43) 44%, rgba(2, 7, 13, 0.98) 78%), url('images/web/audi-interior-wide.webp');
  background-position: 56% center;
}

.service-card:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(2, 7, 13, 0.06) 10%, rgba(2, 7, 13, 0.35) 42%, rgba(2, 7, 13, 0.98) 79%), url('images/web/lamborghini-wheel.webp');
  background-position: center 45%;
}

.service-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: '';
  background: linear-gradient(105deg, rgba(5, 135, 255, 0.14), transparent 48%);
  transition: background 350ms ease;
}

.service-card::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: '';
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms var(--ease-expo);
}

.service-card > * { position: relative; z-index: 1; }
.service-card:hover { z-index: 1; border-color: rgba(32, 199, 255, 0.68); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48); transform: translateY(-8px); }
.service-card:hover::before { background: linear-gradient(105deg, rgba(5, 135, 255, 0.23), transparent 54%); }
.service-card:hover::after { transform: scaleX(1); }

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: auto;
  padding-bottom: 5rem;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 { max-width: 390px; color: var(--white); font-size: clamp(2.8rem, 4.4vw, 4.8rem); }
.service-card > p { max-width: 370px; margin-top: 1rem; color: #c5d2dd; }
.service-card ul { margin: 2rem 0 0; padding: 0; list-style: none; }
.service-card li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(204, 226, 244, 0.19);
  color: #e0eaf2;
  font-size: 0.82rem;
  font-weight: 600;
}
.service-card li::before { width: 5px; height: 5px; flex: 0 0 auto; content: ''; background: var(--blue); transform: rotate(45deg); }

.proper-split {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(340px, 0.92fr) 1.08fr;
  gap: 0;
  margin-top: clamp(3rem, 4vw, 4.5rem);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(12, 27, 44, 0.96), rgba(4, 12, 22, 0.98));
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.42);
}

.proper-art {
  position: relative;
  min-height: 680px;
  max-width: none;
  padding: 0;
  background: var(--black);
  box-shadow: none;
  transform: none;
}

.proper-art::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, transparent 45%, rgba(2, 7, 13, 0.86) 100%);
  pointer-events: none;
}

.proper-art img { width: 100%; height: 100%; object-fit: cover; }
.proper-art figcaption { position: absolute; z-index: 2; right: 1.5rem; bottom: 1.35rem; left: 1.5rem; padding: 0; color: var(--cyan); font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; }

.proper-copy { position: relative; display: flex; justify-content: center; flex-direction: column; padding: clamp(2.5rem, 6vw, 6.5rem); border-left: 1px solid var(--line); }

.proper-copy::before {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  content: 'SPEEDEE DETAILING // PROCESS';
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
}

.proper-copy .eyebrow { margin-bottom: 1.2rem; }
.proper-copy h2 { font-size: clamp(3.5rem, 6vw, 6.5rem); }
.proper-copy > p:not(.eyebrow) { max-width: 660px; margin-top: 2rem; color: #aebdca; font-size: 1.05rem; }

.proper-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 3rem 0 2.2rem;
  border-block: 1px solid var(--line);
}

.proper-stats div { display: flex; flex-direction: column; padding: 1.45rem 1.2rem 1.45rem 0; }
.proper-stats div + div { padding-left: 1.2rem; border-left: 1px solid var(--line); }
.proper-stats strong { color: var(--blue); font-family: var(--display); font-size: 2rem; font-style: italic; line-height: 1; text-transform: uppercase; }
.proper-stats span { margin-top: 0.4rem; color: #9babb9; font-size: 0.68rem; }
.proper-copy .text-link { color: var(--white); }

/* Work galleries */

.work-section {
  position: relative;
  border-top: 1px solid rgba(32, 199, 255, 0.24);
  background:
    linear-gradient(rgba(144, 181, 214, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(144, 181, 214, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--surface-graphite) 0%, #0b121b 28rem, #050a10 100%);
  background-size: 120px 120px, 120px 120px, auto;
}
.work-section h2,
.cinema-section h2,
.fleet-scope h2 { color: var(--white); }
.work-section .section-lede,
.cinema-section .section-lede { color: var(--silver); }

.exotic-grid {
  display: grid;
  min-height: 820px;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.7rem;
}

.gallery-main { grid-row: span 2; }
.exotic-grid .gallery-wide { grid-column: span 2; }

.gallery-shot {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--panel);
  color: var(--white);
  cursor: zoom-in;
  text-align: left;
}

.gallery-shot::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, transparent 47%, rgba(1, 5, 10, 0.88) 100%);
  opacity: 0.72;
  transition: opacity 300ms ease;
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-expo), filter 400ms ease;
}

.gallery-shot:hover img { transform: scale(1.045); filter: saturate(1.12) contrast(1.03); }
.gallery-shot:hover::after { opacity: 1; }

.gallery-shot > span {
  position: absolute;
  z-index: 2;
  right: 1.35rem;
  bottom: 1.2rem;
  left: 1.35rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.gallery-shot b { font-family: var(--display); font-size: 1.35rem; letter-spacing: 0.05em; line-height: 1; text-transform: uppercase; }
.gallery-shot em { max-width: 130px; color: var(--silver); font-family: var(--mono); font-size: 0.55rem; font-style: normal; letter-spacing: 0.08em; line-height: 1.5; text-align: right; text-transform: uppercase; }

.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin: clamp(3.5rem, 5vw, 5rem) 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.portfolio-head .eyebrow { margin: 0; }
.portfolio-head > p:last-child { color: var(--silver); font-size: 0.8rem; }

.portfolio-grid {
  display: grid;
  grid-auto-rows: clamp(320px, 28vw, 460px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.portfolio-tall,
.portfolio-wide { grid-row: auto; grid-column: auto; }

/* Speedee in motion */

.cinema-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 42%, rgba(8, 124, 255, 0.22), transparent 34rem),
    linear-gradient(145deg, var(--surface-deep) 0%, #071a2d 56%, #03080f 100%);
}

.cinema-section::before {
  position: absolute;
  top: 0;
  right: -13vw;
  width: 44vw;
  height: 100%;
  content: '';
  opacity: 0.18;
  background: repeating-linear-gradient(90deg, transparent 0 48px, rgba(32, 199, 255, 0.22) 48px 49px);
  transform: skewX(-13deg);
  pointer-events: none;
}

.cinema-section > .shell { position: relative; }

.cinema-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(2rem, 9vw, 9rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.cinema-heading h2 { color: var(--white); }
.cinema-heading h2 em { color: var(--cyan); }
.cinema-heading > p { max-width: 490px; padding-bottom: 0.8rem; color: #a9b9c8; font-size: 0.95rem; line-height: 1.75; }

.cinema-lead {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(380px, 0.84fr) 1.16fr;
  overflow: hidden;
  border: 1px solid rgba(32, 199, 255, 0.32);
  background: linear-gradient(135deg, #09213a 0%, #06101c 70%);
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.48);
}

.cinema-lead::before {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  content: '';
  background: linear-gradient(var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(32, 199, 255, 0.55);
}

.cinema-lead-media {
  height: 760px;
  aspect-ratio: auto;
  border: 0;
  border-right: 1px solid var(--line);
}

.cinema-lead-media video { object-position: center 54%; }

.cinema-lead-copy {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 7.5rem);
}

.cinema-lead-copy::after {
  position: absolute;
  z-index: -1;
  right: -0.03em;
  bottom: -0.28em;
  content: '01';
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: clamp(15rem, 30vw, 32rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.8;
}

.film-code {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.film-quote {
  max-width: 480px;
  margin: clamp(3rem, 7vw, 6rem) 0 1.5rem;
  color: #afc5d8;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-transform: uppercase;
}

.cinema-lead-copy h3 { color: var(--white); font-size: clamp(4.8rem, 9vw, 9.5rem); letter-spacing: -0.06em; }
.cinema-lead-copy h3 em { color: var(--blue); font-style: italic; }
.cinema-lead-copy > p:not(.film-quote) { max-width: 540px; margin-top: 1.6rem; color: #a7b7c6; }
.cinema-lead-copy .text-link { width: fit-content; margin-top: 2rem; }

.cinema-cuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 0.85rem;
  padding-bottom: 2rem;
}

.cinema-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(9, 19, 31, 0.88);
  transition: border-color 260ms ease, transform 300ms var(--ease-expo), box-shadow 300ms ease;
}

.cinema-card:hover { border-color: rgba(32, 199, 255, 0.48); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35); transform: translateY(-6px); }
.cinema-offset { margin-top: 4rem; margin-bottom: -4rem; }

.reel-media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}

.reel-media video { width: 100%; height: 100%; object-fit: cover; }

.reel-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 -80px 90px rgba(0, 0, 0, 0.28);
}

.film-toggle {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  touch-action: manipulation;
}

.film-toggle-ui {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.62rem;
  padding: 0.45rem 0.72rem 0.45rem 0.46rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(3, 7, 13, 0.72);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.film-toggle-ui > i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(32, 199, 255, 0.72);
  border-radius: 50%;
}

.film-toggle-ui > i::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--cyan);
  content: '';
  transform: translate(-42%, -50%);
}

.film-toggle-ui > i::after { display: none; content: ''; }

.film-toggle-ui b {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reel-media.is-playing:not(.is-muted) .film-toggle-ui > i::before,
.reel-media.is-playing:not(.is-muted) .film-toggle-ui > i::after {
  position: absolute;
  top: 8px;
  display: block;
  width: 3px;
  height: 12px;
  border: 0;
  background: var(--cyan);
  content: '';
  transform: none;
}

.reel-media.is-playing:not(.is-muted) .film-toggle-ui > i::before { left: 9px; }
.reel-media.is-playing:not(.is-muted) .film-toggle-ui > i::after { right: 9px; }
.reel-media.is-playing:not(.is-muted) .film-toggle-ui { opacity: 0.18; }
.reel-media.is-playing.is-muted .film-toggle-ui { border-color: rgba(32, 199, 255, 0.68); }
.film-toggle:hover .film-toggle-ui,
.film-toggle:focus-visible .film-toggle-ui { border-color: var(--cyan); background: rgba(3, 10, 18, 0.94); opacity: 1; transform: translateY(-2px); }
.film-toggle:focus-visible { outline: 3px solid var(--cyan); outline-offset: -3px; }

.reel-count {
  position: absolute;
  z-index: 4;
  top: 1rem;
  left: 1rem;
  padding: 0.42rem 0.55rem;
  background: rgba(3, 7, 13, 0.75);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.cinema-card-copy { padding: 1.35rem 1.25rem 1.5rem; }
.cinema-card-copy > span { color: var(--cyan); font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; }
.cinema-card-copy h3 { margin-top: 0.55rem; color: var(--white); font-size: clamp(1.7rem, 2.7vw, 2.5rem); }
.cinema-card-copy p { min-height: 4.8em; margin-top: 0.7rem; color: #9fafbd; font-size: 0.76rem; }
.cinema-card-copy a { display: inline-flex; min-height: 44px; align-items: center; margin-top: 0.65rem; color: var(--cyan); font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; }
.cinema-card-copy a:hover { color: var(--white); }

.lightbox-close {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

/* Protection */

.protection {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #02142a, #07376d 58%, #061a32);
}

.protection::before {
  position: absolute;
  top: -20%;
  right: -14%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(32, 199, 255, 0.15);
  border-radius: 50%;
  content: '';
  box-shadow: 0 0 0 6vw rgba(32, 199, 255, 0.025), 0 0 0 12vw rgba(32, 199, 255, 0.018);
}

.protection-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, 0.68fr) 1.32fr;
  gap: clamp(3rem, 9vw, 10rem);
}

.protection-poster {
  position: relative;
  max-width: 480px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: var(--white);
  box-shadow: 40px 40px 80px rgba(0, 0, 0, 0.36);
  transform: rotate(1.5deg);
}

.protection-poster img { width: 100%; height: auto; }
.protection-poster figcaption { position: absolute; right: -1px; bottom: -35px; padding: 0.6rem 0.75rem; background: var(--black); color: var(--silver); font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.09em; text-transform: uppercase; }

.protection-copy { position: relative; }
.protection-copy .eyebrow { color: var(--cyan); }
.protection-copy h2 { color: var(--white); font-size: clamp(3.8rem, 6.9vw, 7rem); }
.protection-copy h2 em { color: var(--cyan); }

.price-lockup {
  display: grid;
  width: fit-content;
  grid-template-columns: auto auto;
  align-items: start;
  margin-bottom: 2rem;
  color: var(--white);
  line-height: 0.75;
}
.price-lockup span { margin-top: 0.45rem; color: var(--cyan); font-family: var(--display); font-size: 2rem; font-weight: 800; }
.price-lockup strong { font-family: var(--display); font-size: clamp(5rem, 9vw, 8rem); font-style: italic; font-weight: 900; letter-spacing: -0.07em; }
.price-lockup em { grid-column: 1 / -1; margin-top: 0.7rem; padding: 0.55rem 0.7rem; background: var(--cyan); color: var(--black); font-family: var(--mono); font-size: 0.59rem; font-style: normal; font-weight: 700; letter-spacing: 0.12em; line-height: 1; text-align: center; text-transform: uppercase; }

.protection-intro { max-width: 700px; margin-top: 1.7rem; color: #c1d1df; }

.protocol { margin: 2.5rem 0 0; padding: 0; list-style: none; }
.protocol li { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid rgba(255, 255, 255, 0.17); }
.protocol > li > span { color: var(--cyan); font-family: var(--mono); font-size: 0.62rem; }
.protocol strong { font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.08em; text-transform: uppercase; }
.protocol p { margin-top: 0.25rem; color: #9eb1c3; font-size: 0.78rem; }

.protection-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.3rem; }
.protection-actions p { max-width: 310px; color: #94a9bb; font-size: 0.65rem; line-height: 1.6; }

/* Fleet scope */

.fleet-scope {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(120deg, rgba(32, 199, 255, 0.06), transparent 38%),
    linear-gradient(180deg, var(--surface-graphite), #090e14);
}
.scope-intro { max-width: 950px; }
.scope-intro .eyebrow { color: var(--cyan); }
.scope-intro h2 em { color: var(--blue); }

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.scope-card {
  position: relative;
  min-height: 440px;
  padding: clamp(2rem, 4vw, 3.6rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 7, 13, 0.24);
  transition: background 250ms ease;
}

.scope-card:hover { background: var(--panel); }
.scope-card svg { width: 74px; height: 74px; margin-bottom: 5rem; fill: none; stroke: var(--cyan); stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.scope-card > span { position: absolute; top: 2rem; right: 2rem; color: var(--muted); font-family: var(--mono); font-size: 0.6rem; }
.scope-card h3 { color: var(--white); }
.scope-card p { max-width: 330px; margin-top: 1.2rem; color: var(--silver); font-size: 0.85rem; }

/* David / contact */

.owner-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 7vw, 7.5rem);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 30%, rgba(8, 124, 255, 0.28), transparent 34rem),
    linear-gradient(135deg, var(--surface-navy), var(--surface-deep) 72%);
}

.owner-section::after {
  position: absolute;
  top: -10rem;
  right: -13rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(32, 199, 255, 0.15);
  border-radius: 50%;
  content: '';
  box-shadow: 0 0 0 5rem rgba(32, 199, 255, 0.025), 0 0 0 10rem rgba(32, 199, 255, 0.018);
  pointer-events: none;
}

.owner-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(340px, 0.78fr) 1.22fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.owner-photo {
  position: sticky;
  top: 110px;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(32, 199, 255, 0.32);
  background: var(--panel);
  box-shadow: 34px 34px 0 rgba(8, 124, 255, 0.1);
}

.owner-photo::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, transparent 46%, rgba(2, 7, 13, 0.92) 100%);
  pointer-events: none;
}

.owner-photo img { width: 100%; height: 760px; object-fit: cover; object-position: center 55%; }
.owner-photo-mark { position: absolute; z-index: 2; top: 1.5rem; right: 1.5rem; color: rgba(255, 255, 255, 0.1); font-family: var(--display); font-size: 5rem; font-style: italic; font-weight: 900; line-height: 1; }
.owner-photo figcaption { position: absolute; z-index: 2; right: 1.5rem; bottom: 1.35rem; left: 1.5rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.owner-photo figcaption span { color: var(--white); font-family: var(--display); font-size: 1.35rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.owner-photo figcaption em { color: var(--cyan); font-family: var(--mono); font-size: 0.56rem; font-style: normal; letter-spacing: 0.1em; text-transform: uppercase; }

.owner-content h2 { color: var(--white); font-size: clamp(4rem, 7vw, 7rem); }
.owner-content h2 em { color: var(--cyan); }
.owner-intro { max-width: 690px; margin-top: 1.8rem; color: #aebdca; font-size: 1.02rem; }

.owner-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 2.6rem 0;
  border-block: 1px solid var(--line);
}

.owner-facts div { display: flex; min-width: 0; flex-direction: column; padding: 1.25rem 1rem 1.25rem 0; }
.owner-facts div + div { padding-left: 1rem; border-left: 1px solid var(--line); }
.owner-facts span { color: var(--muted); font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; }
.owner-facts strong { margin-top: 0.35rem; overflow-wrap: anywhere; color: var(--white); font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.04em; text-transform: uppercase; }

.booking-form {
  padding: clamp(1.5rem, 4vw, 3.2rem);
  border: 1px solid var(--line);
  background: rgba(8, 20, 34, 0.84);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.form-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--cyan); font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; }
.form-heading h3 { max-width: 440px; margin-top: 0.45rem; color: var(--white); font-size: clamp(2rem, 3.4vw, 3.2rem); }
.form-heading > a { display: inline-flex; min-height: 44px; align-items: center; overflow-wrap: anywhere; color: var(--silver); font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; }
.form-heading > a:hover { color: var(--cyan); }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-grid label { display: flex; min-width: 0; flex-direction: column; gap: 0.55rem; }
.form-grid label > span { color: #c9d5df; font-family: var(--mono); font-size: 0.54rem; letter-spacing: 0.09em; text-transform: uppercase; }
.form-wide { grid-column: 1 / -1; }

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(173, 210, 243, 0.22);
  border-radius: 0;
  padding: 0.8rem 0.9rem;
  outline: 0;
  background: rgba(2, 8, 15, 0.76);
  color: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-grid textarea { min-height: 118px; resize: vertical; }
.form-grid select { color-scheme: dark; }
.form-grid input::placeholder,
.form-grid textarea::placeholder { color: #607186; opacity: 1; }
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus { border-color: var(--cyan); background: #061321; box-shadow: 0 0 0 3px rgba(32, 199, 255, 0.12); }

.form-actions { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.5rem; }
.form-actions p { max-width: 330px; color: var(--muted); font-size: 0.63rem; line-height: 1.55; }

/* Footer */

.site-footer { border-top: 1px solid var(--line); background: #02050a; }
.footer-main { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr auto; align-items: center; gap: 2rem; min-height: 160px; }
.footer-brand { font-family: var(--display); font-size: 2rem; font-style: italic; font-weight: 900; letter-spacing: -0.02em; text-decoration: none; text-transform: uppercase; }
.footer-brand span { color: var(--blue); }
.footer-main small { color: var(--muted); font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-main p { margin-top: 0.35rem; color: var(--silver); font-size: 0.75rem; }
.footer-phone { min-height: 44px; color: var(--white); font-family: var(--display); font-size: 1.4rem; font-weight: 800; text-decoration: none; }
.footer-phone:hover { color: var(--cyan); }
.footer-bottom { display: flex; min-height: 62px; align-items: center; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 0.54rem; letter-spacing: 0.09em; text-transform: uppercase; }

.mobile-book { display: none; }

/* Lightbox */

.lightbox {
  position: fixed;
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: rgba(2, 5, 10, 0.95);
  color: var(--white);
}

.lightbox::backdrop { background: rgba(0, 0, 0, 0.88); backdrop-filter: blur(9px); }
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox-frame { display: flex; width: min(1240px, 88vw); height: min(86vh, 900px); align-items: center; justify-content: center; flex-direction: column; gap: 0.9rem; }
.lightbox-frame img { max-width: 100%; max-height: calc(100% - 40px); object-fit: contain; box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55); }
.lightbox-frame p { color: var(--silver); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; }
.lightbox-close { position: absolute; z-index: 2; top: 1.25rem; right: 1.25rem; background: rgba(3, 7, 13, 0.8); }
.lightbox-close:hover { background: var(--cyan); color: var(--black); }

/* Responsive */

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-book { margin-left: auto; }
  .menu-toggle { display: flex; }
  .hero-media { left: 0; }
  .hero-wash { background: linear-gradient(90deg, var(--black) 0%, rgba(3, 7, 13, 0.86) 48%, rgba(3, 7, 13, 0.25) 100%), linear-gradient(0deg, var(--black) 0%, transparent 40%); }
  .exotic-grid { min-height: 700px; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(320px, 48vw, 500px); }
  .proper-split { grid-template-columns: minmax(300px, 0.8fr) 1.2fr; }
  .cinema-lead { min-height: 680px; grid-template-columns: minmax(340px, 0.9fr) 1.1fr; }
  .cinema-lead-media { height: 680px; }
  .cinema-lead-copy { padding: clamp(2.5rem, 5vw, 4.5rem); }
  .cinema-cuts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cinema-offset { margin: 0; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 2rem); }
  .utility-status { display: none; }
  .hero { min-height: 860px; }
  .hero-media { left: 0; }
  .hero-media img,
  .hero-media video { object-position: center 48%; }
  .hero-wash { background: linear-gradient(90deg, rgba(3, 7, 13, 0.96) 0%, rgba(3, 7, 13, 0.63) 64%, rgba(3, 7, 13, 0.28) 100%), linear-gradient(0deg, var(--black) 0%, transparent 50%); }
  .hero-inner { min-height: 860px; padding-block: 5rem 7rem; }
  .hero h1 { font-size: clamp(4.3rem, 16vw, 7rem); }
  .hero-proof { width: 100%; }
  .scroll-cue { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-lede { padding: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 580px; }
  .service-icon { margin-bottom: auto; }
  .proper-split { grid-template-columns: 1fr; }
  .proper-art { width: 100%; min-height: 610px; margin-inline: auto; }
  .proper-copy { border-top: 1px solid var(--line); border-left: 0; }
  .exotic-grid { min-height: 1020px; grid-template-columns: repeat(2, 1fr); grid-template-rows: 2fr 1fr 1fr; }
  .gallery-main { grid-row: auto; grid-column: span 2; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: clamp(280px, 54vw, 440px); }
  .portfolio-wide { grid-column: auto; }
  .cinema-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .cinema-heading > p { padding-bottom: 0; }
  .cinema-lead { min-height: 0; grid-template-columns: 1fr; }
  .cinema-lead-media { height: auto; aspect-ratio: 9 / 13; border-right: 0; border-bottom: 1px solid var(--line); }
  .cinema-lead-copy { min-height: 520px; }
  .protection-grid { grid-template-columns: 1fr; }
  .protection-poster { width: min(440px, 86%); margin: 0 auto 3rem; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-card { min-height: auto; }
  .scope-card svg { margin-bottom: 3.8rem; }
  .owner-layout { grid-template-columns: 1fr; }
  .owner-photo { position: relative; top: auto; width: min(560px, 100%); min-height: 680px; }
  .owner-photo img { height: 680px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-block: 2.5rem; }
}

@media (max-width: 600px) {
  body { padding-bottom: 70px; }
  h2 { font-size: clamp(3.35rem, 17vw, 5.2rem); }
  .utility-inner { min-height: 30px; }
  .utility-inner > span:first-child { display: none; }
  .utility-inner { justify-content: flex-end; }
  .header-inner { min-height: 68px; gap: 0.7rem; }
  .brand picture { width: 62px; }
  .brand strong { font-size: 1.27rem; }
  .brand em { font-size: 0.48rem; }
  .header-book { display: none; }
  .menu-toggle { margin-left: auto; }
  .hero { min-height: 820px; }
  .hero-inner { min-height: 820px; padding-top: 4rem; }
  .hero h1 { margin-top: 1.1rem; font-size: clamp(4.1rem, 21vw, 6.4rem); line-height: 0.77; }
  .hero h1 > span:first-child { font-size: 0.43em; }
  .hero h1 > span:last-child { font-size: 0.61em; }
  .hero-copy { max-width: 92%; font-size: 0.91rem; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1; padding-inline: 0.8rem; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 3rem; }
  .hero-proof div { display: grid; min-height: 52px; grid-template-columns: 30px 1fr; align-items: center; gap: 0.1rem 0.5rem; padding: 0.55rem 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
  .hero-proof div + div { padding-left: 0; }
  .hero-proof span { grid-row: 1 / span 2; }
  .hero-proof strong { margin: 0; font-size: 1rem; }
  .hero-proof small { margin: 0; }
  .ticker-track { justify-content: flex-start; font-size: 0.78rem; }
  .section { padding-block: 4rem; }
  .section-heading { margin-bottom: 3rem; }
  .services { padding-top: 3rem; padding-bottom: 0; }
  .services .section-heading { min-height: 0; margin-bottom: 0; padding-top: 0; }
  .standard-rail { grid-template-columns: 1fr; padding-block: 0.45rem; }
  .standard-rail p { min-height: 48px; }
  .standard-rail p + p { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .service-card { min-height: 520px; padding: 1.7rem; }
  .service-icon { padding-bottom: 3.5rem; }
  .film-toggle-ui { right: 0.65rem; bottom: 0.65rem; padding-right: 0.55rem; }
  .film-toggle-ui b { font-size: 0.46rem; }
  .proper-art { width: 100%; min-height: 500px; box-shadow: none; }
  .proper-stats { grid-template-columns: 1fr; }
  .proper-stats div + div { padding-left: 0; border-top: 1px solid var(--line-dark); border-left: 0; }
  .exotic-grid { min-height: auto; grid-template-rows: 520px repeat(2, 260px); }
  .gallery-shot > span { right: 0.85rem; bottom: 0.8rem; left: 0.85rem; }
  .gallery-shot b { font-size: 1rem; }
  .gallery-shot em { display: none; }
  .portfolio-head { align-items: flex-start; flex-direction: column; }
  .portfolio-grid { grid-auto-rows: clamp(250px, 76vw, 330px); gap: 0.45rem; }
  .portfolio-tall { grid-row: auto; }
  .cinema-lead-copy { min-height: 470px; padding: 2rem; }
  .cinema-lead-copy h3 { font-size: clamp(4.1rem, 20vw, 6rem); }
  .film-quote { margin-top: 2.5rem; }
  .cinema-cuts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem; }
  .cinema-card-copy { padding: 1rem 0.85rem 1.15rem; }
  .cinema-card-copy h3 { font-size: 1.55rem; }
  .cinema-card-copy p { min-height: 0; font-size: 0.68rem; }
  .protection-poster { width: 92%; }
  .protection-actions { align-items: stretch; flex-direction: column; }
  .protection-actions .button { width: 100%; }
  .scope-card { padding: 2rem; }
  .owner-photo { min-height: 560px; box-shadow: 18px 18px 0 rgba(8, 124, 255, 0.1); }
  .owner-photo img { height: 560px; }
  .owner-content h2 { font-size: clamp(3.7rem, 18vw, 5.4rem); }
  .owner-facts { grid-template-columns: 1fr; }
  .owner-facts div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wide { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1rem; }
  .mobile-book {
    position: fixed;
    z-index: 110;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 70px;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.34);
  }
  .mobile-book span { display: flex; flex-direction: column; font-family: var(--display); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1; text-transform: uppercase; }
  .mobile-book small { margin-bottom: 0.25rem; color: #d7efff; font-family: var(--mono); font-size: 0.48rem; letter-spacing: 0.08em; }
  .mobile-book strong { font-family: var(--display); font-size: 1.25rem; font-style: italic; }
  .lightbox-frame { width: 92vw; height: 82vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
