/* Noyan Limo — site stylesheet
   ============================================================
   THEME BLOCK — this is the only section to edit when re-skinning
   for a client's brand. Derive --accent from the client's logo;
   --accent-deep (darker), --accent-bright (lighter), --accent-glow
   (pale, for glows on dark). Keep darks slightly tinted toward the
   accent hue (see how the blue-steel darks lean blue) so the whole
   page feels like one brand, not gray + a color.
   Search "rgba(" glows below if you change hue families entirely —
   the decorative gradients hardcode the accent's RGB.
   ============================================================ */

:root {
  --ink: #1b1811;
  --ink-soft: #5f5849;
  --paper: #f8f6f1;
  --paper-deep: #ece7db;
  --accent: #c19a3f;
  --accent-deep: #8f6f1c;
  --accent-bright: #e2bb5c;
  --accent-glow: #f3e0a6;
  /* CTA "heat" color — buttons and the money moments. Defaults to the
     accent family, but when the brand hue is cool or muted, run this
     hotter (an orange/amber against blues and greens converts better
     than more of the same hue). */
  --cta: #cfa33c;
  --cta-hover: #edc667;
  --steel: #262218;
  --steel-deep: #171410;
  --line: #ded7c6;
  --line-dark: #40392a;
  --radius: 3px;
  /* Display is a high-contrast serif (hotel/couture register); small caps,
     labels and card titles use the body sans with wide tracking. */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

/* Card and step titles stay in the sans — small serif caps read thin
   and get lost against the dark panels. */
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.9rem;
}

/* ---------- Shared background layers ---------- */

/* Dashed outline + label marking where a real photo will go */
.photo-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a9384;
  border: 1.5px dashed #55503f;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: rgba(20, 18, 13, 0.58);
}

.photo-tag::before {
  content: "◧ ";
  color: var(--accent-bright);
}

.photo-tag-center {
  position: relative;
  top: auto;
  right: auto;
}

/* Was diagonal hatching (industrial). A soft vignette + faint warm sheen
   reads far more expensive behind the same markup. */
.bg-stripes {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, transparent 40%, rgba(8, 7, 5, 0.55) 100%),
    linear-gradient(115deg, transparent 30%, rgba(255, 246, 224, 0.028) 50%, transparent 70%);
}

.bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 18% 100%, rgba(193, 154, 63, 0.30), transparent 70%),
    radial-gradient(ellipse 40% 45% at 85% 0%, rgba(193, 154, 63, 0.14), transparent 70%);
}

.bg-glow-center {
  background:
    radial-gradient(ellipse 60% 70% at 50% 115%, rgba(193, 154, 63, 0.26), transparent 70%);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem clamp(1.25rem, 4vw, 3rem);
  background: #14110c;
  border-bottom: 1px solid var(--line-dark);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Logo is a JPEG with a black background — `screen` drops the black
   against the dark header so only the arc and lettering show. */
.wordmark-logo {
  display: block;
  height: 58px;
  width: auto;
  mix-blend-mode: screen;
  /* Crushes the JPEG's near-black dot texture down to true black so
     `screen` drops it cleanly instead of leaving a faint grey box. */
  filter: contrast(1.22) brightness(1.04);
}

/* No client logo yet — text wordmark stands in. Swap back to
   `.wordmark-logo` <img> when the real mark arrives. */
.wordmark-text {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--paper);
  line-height: 1;
}

.wordmark-text em {
  font-style: normal;
  color: var(--accent-bright);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.8rem);
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #b9c4d0;
  text-decoration: none;
}

.site-nav a:hover { color: var(--accent-glow); }

.site-nav a[aria-current="page"] { color: var(--accent-glow); font-weight: 600; }

.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--cta);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover { background: var(--cta-hover); }

/* Hamburger — hidden on desktop, shown on small screens */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (full-bleed photo background slot) ---------- */

.hero {
  position: relative;
  background: var(--steel-deep);
  color: var(--paper);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Full-bleed background photo layer (heroes, contact) */
.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Uniform darkening for photo backgrounds with centered text over them */
.bg-photo-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 14, 10, 0.82), rgba(16, 14, 10, 0.86));
}

/* Background video layer (loaded via script on larger screens only) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Darkens the video so the headline stays readable — heavier on the
   left where the text sits, plus a fade into the section below. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 12, 9, 0.92) 0%, rgba(14, 12, 9, 0.72) 45%, rgba(14, 12, 9, 0.45) 100%),
    linear-gradient(to bottom, rgba(14, 12, 9, 0.55) 0%, transparent 25%, transparent 70%, rgba(23, 20, 16, 0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8.5rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 9vw, 7.5rem);
}

.hero h1 {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

/* Kicker line inside the hero h1: small plain-language setup over the big
   payoff. Usage: <h1><span class="kicker">Treat your car to a</span>Showroom shine.</h1> */
.hero h1 .kicker {
  display: block;
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0.04em;
  color: #d8d1bf;
  margin-bottom: 0.55rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-bright);
}

.hero-sub {
  max-width: 34rem;
  font-size: 1.06rem;
  color: #d8d1bf;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 1.05rem 2.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--cta);
  color: #1a1408;
  box-shadow: 0 6px 30px rgba(207, 163, 60, 0.22);
}

.btn-primary:hover { background: var(--cta-hover); }

.btn-ghost {
  border-color: rgba(226, 187, 92, 0.45);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--accent-bright);
  background: transparent;
  color: var(--accent-bright);
}

.hero-note {
  font-size: 0.85rem;
  color: #8b95a1;
}

/* Rising arc-spark specks */
.bg-sparks {
  position: absolute;
  inset: 0;
}

.bg-sparks span {
  position: absolute;
  bottom: -6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-glow);
  opacity: 0;
  animation: rise 7s linear infinite;
}

.bg-sparks span:nth-child(1) { left: 8%;  animation-delay: 0s;   animation-duration: 8s; }
.bg-sparks span:nth-child(2) { left: 16%; animation-delay: 2.4s; width: 3px; height: 3px; }
.bg-sparks span:nth-child(3) { left: 24%; animation-delay: 4.8s; animation-duration: 9s; }
.bg-sparks span:nth-child(4) { left: 33%; animation-delay: 1.2s; width: 2px; height: 2px; }
.bg-sparks span:nth-child(5) { left: 61%; animation-delay: 3.6s; width: 2px; height: 2px; animation-duration: 10s; }
.bg-sparks span:nth-child(6) { left: 78%; animation-delay: 5.5s; width: 3px; height: 3px; }
.bg-sparks span:nth-child(7) { left: 90%; animation-delay: 0.8s; animation-duration: 9s; }

@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.85; }
  60%  { opacity: 0.4; }
  100% { transform: translateY(-64vh) translateX(24px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-sparks span { animation: none; opacity: 0.35; bottom: auto; top: 40%; }
}

/* Torn/angled bottom edge into the services section */
.hero-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(28px, 4vw, 52px);
  background: var(--steel);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 78%);
  z-index: 1;
}

/* Compact hero for subpages */
.page-hero .hero-inner {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 7vw, 6rem);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

/* ---------- Who we serve ---------- */

.serve {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head-light {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.section-head-light h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.serve-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.serve-card {
  position: relative;
  display: block;
  background: var(--steel);
  color: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line-dark);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.serve-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(20, 26, 33, 0.24);
}

/* Photo placeholder strip at the top of each card */
.photo-tag-card {
  position: relative;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-bottom: 1.5px dashed #48535f;
  border-radius: 0;
  min-height: 150px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(193, 154, 63, 0.20), transparent 70%),
    var(--steel-deep);
}

.serve-card-body {
  padding: 1.6rem 1.6rem 1.8rem;
}

.serve-card .overline { color: var(--accent-bright); margin-bottom: 0.5rem; }

.serve-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.serve-card-body > p {
  font-size: 0.94rem;
  color: #b9b2a0;
  margin-bottom: 1.1rem;
}

.serve-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-glow);
}

.serve-card:hover .serve-link { text-decoration: underline; }

/* ---------- Contractor pitch / checklist ---------- */

.pitch {
  background: var(--paper-deep);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.pitch-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.pitch h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.pitch-copy p { color: var(--ink-soft); max-width: 32rem; }

.checklist {
  list-style: none;
  border-top: 1px solid var(--line);
}

.checklist li {
  padding: 1rem 0.25rem 1rem 2.1rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0.25rem;
  top: 0.95rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.checklist strong { color: var(--ink); }

/* ---------- How it works steps ---------- */

.steps {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.steps-inner { max-width: 1200px; margin: 0 auto; }

.step-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  counter-reset: step;
}

.step-list li {
  border-top: 1px solid rgba(193, 154, 63, 0.55);
  padding-top: 1.2rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.step-list h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.step-list p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* ---------- Light services section (For your home) ---------- */

.services-light {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-sub {
  max-width: 42rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  font-size: 1rem;
}

.section-sub-dark { color: #b9b2a0; }

.service-grid.service-grid-light {
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

@media (max-width: 640px) {
  .service-grid.service-grid-light {
    grid-template-columns: 1fr;
  }
}

.service.service-light {
  background: var(--paper);
}

.service.service-light:hover { background: #fbfdff; }

.service.service-light h3 { color: var(--ink); }

.service.service-light p { color: var(--ink-soft); }

.service.service-light .service-num { color: var(--accent-deep); }

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

@media (max-width: 640px) {
  .service-grid.service-grid-two {
    grid-template-columns: 1fr;
  }
}

.section-cta {
  max-width: 1200px;
  margin: 2.2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.cta-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.cta-note-dark { color: #8b95a1; }


/* Editorial service list — the home page's light section. Deliberately NOT
   a card grid: home sections should read like a pitch, not a catalog. The
   full card grids belong on the audience subpages. */
.editorial {
  max-width: 1200px;
  margin: 0 auto;
}

.svc-list {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.svc-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 1rem;
  padding: 0.95rem 0.25rem;
  border-bottom: 1px solid var(--line);
}

.svc-list strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.svc-list strong::before {
  content: "—";
  color: var(--accent);
  margin-right: 0.6rem;
}

.svc-list span {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* ---------- Services ---------- */

.services {
  background: var(--steel);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.services .overline { color: var(--accent-bright); }

.services h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 28ch;
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.service {
  background: var(--steel);
  padding: 1.8rem 1.6rem;
  position: relative;
}

.service:hover { background: #332d20; }

.service:hover .service-num { color: var(--accent-glow); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-bright);
  letter-spacing: 0.1em;
}

.service h3 {
  font-size: 1.35rem;
  margin: 0.6rem 0 0.5rem;
}

.service p {
  font-size: 0.92rem;
  color: #b9b2a0;
}

/* ---------- Packages / pricing (price-menu trades) ---------- */

.packages {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.package-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.package {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.package.package-featured {
  border: 2px solid var(--cta);
  box-shadow: 0 14px 40px rgba(27, 24, 17, 0.14);
}

.package h3 { font-size: 1.45rem; }

.package-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin: 0.4rem 0 0.8rem;
}

.package-price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.package ul {
  list-style: none;
  margin-bottom: 1.3rem;
}

.package li {
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--paper-deep);
}

.package li::before {
  content: "✓";
  position: absolute;
  left: 0.1rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.package .btn { margin-top: auto; text-align: center; }

/* ---------- Recent work gallery ---------- */

.work {
  background: var(--steel-deep);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(193, 154, 63, 0.55);
}

.work .overline { color: var(--accent-bright); }

.work h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }

.work-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.work-item {
  margin: 0;
}

.work-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
}

.work-item figcaption {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: #b9b2a0;
}

@media (max-width: 860px) {
  .work-grid { grid-template-columns: 1fr; }

  .work-item img { aspect-ratio: 4 / 3; }
}

/* ---------- Full-width photo band ---------- */

.photo-band {
  position: relative;
  min-height: clamp(200px, 30vw, 320px);
  background:
    linear-gradient(120deg, var(--steel-deep) 0%, #2d2619 55%, var(--steel-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid rgba(193, 154, 63, 0.55);
}

.band-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 90% at 50% 50%, rgba(193, 154, 63, 0.24), transparent 70%);
}

/* Video layer inside the band (lazy-loaded on scroll, larger screens only) */
.band-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Soft darkening at the band's top and bottom edges so it blends
   into the neighboring sections instead of cutting hard. */
.band-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(23, 20, 16, 0.65) 0%,
    rgba(23, 20, 16, 0.15) 35%,
    rgba(23, 20, 16, 0.15) 70%,
    rgba(23, 20, 16, 0.7) 100%
  );
}

/* ---------- Service area ---------- */

.area {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.area-watermark {
  position: absolute;
  top: 50%;
  right: -0.05em;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(8rem, 24vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
}

.area-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.area h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.area-copy p { color: var(--ink-soft); max-width: 32rem; }

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.area-list li {
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.95rem;
  background: rgba(248, 246, 241, 0.74);
}

.area-list li::before {
  content: "—";
  color: var(--accent);
  margin-right: 0.6rem;
}

/* ---------- About ---------- */

.about {
  position: relative;
  background: var(--paper-deep);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
}

/* Faint blueprint-style grid */
.about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 26, 33, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 26, 33, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent 85%);
}

.about-inner { position: relative; max-width: 760px; margin: 0 auto; }

/* About with owner photo */
.about-inner-photo {
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(20, 26, 33, 0.18);
}

.about h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.about p { color: var(--ink-soft); }

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-deep);
  line-height: 1;
}

.about-stats span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Contact (dark photo background slot) ---------- */

.contact {
  position: relative;
  background: var(--steel-deep);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
}

.contact .overline { color: var(--accent-bright); }

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.8rem;
}

.contact-sub {
  color: #d8d1bf;
  margin-bottom: 2.2rem;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 210px;
  padding: 1.3rem 1.6rem;
  background: rgba(255, 246, 224, 0.07);
  border: 1px solid #453e2e;
  color: var(--paper);
  border-radius: var(--radius);
  text-decoration: none;
  text-align: left;
  backdrop-filter: blur(4px);
}

.contact-card:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b9b2a0;
}

.contact-card:hover .contact-label { color: #2e2408; }

/* The "Based in" card is informational, not a link — no hover affordance.
   Compound selector so it wins regardless of rule order. */
.contact-card.contact-card-static,
.contact-card.contact-card-static:hover {
  background: rgba(255, 246, 224, 0.07);
  border-color: #453e2e;
  cursor: default;
}

.contact-card.contact-card-static:hover .contact-label { color: #b9b2a0; }
.contact-card.contact-card-static:hover .contact-value { color: var(--paper); }

.contact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-hours {
  font-size: 0.85rem;
  color: #8b95a1;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--steel-deep);
  border-top: 1px solid var(--line-dark);
  padding: 1.6rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #8b95a1;
}

.tag-placeholder { color: var(--accent-bright); }

.footer-nav {
  display: flex;
  gap: 1.2rem;
}

.footer-nav a {
  color: #b9c4d0;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover { color: var(--accent-glow); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .area-inner,
  .pitch-inner {
    grid-template-columns: 1fr;
  }

  .area-watermark {
    font-size: clamp(6rem, 30vw, 10rem);
    top: auto;
    bottom: -0.1em;
    transform: none;
  }

  .photo-tag {
    font-size: 0.62rem;
    top: 0.7rem;
    right: 0.7rem;
  }

  .wordmark-logo { height: 44px; }
  .wordmark-text { font-size: 1.3rem; letter-spacing: 0.08em; }

  .about-inner-photo {
    grid-template-columns: 1fr;
  }

  .about-photo { max-width: 420px; }

  /* Mobile nav: hamburger + dropdown panel under the sticky header */
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #14110c;
    border-bottom: 1px solid var(--line-dark);
    padding: 0.4rem 1.25rem 1.1rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  }

  .nav-open .site-nav { display: flex; }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1rem;
  }

  .site-nav a[aria-current="page"] { color: var(--accent-glow); }

  .site-nav .nav-cta {
    margin-top: 0.9rem;
    border-bottom: none;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}

/* ============================================================
   PREMIUM COMPONENTS — booking card, fleet showcase, airports
   Added for the luxury airport-transfer build. Compound selectors
   throughout so these win regardless of rule order.
   ============================================================ */

/* ---------- Centered section head (used on the premium sections) ---------- */

.section-head.section-head-center {
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* Centred heads are used outside .services too (the fleet), where nothing
   else sets a display size — the browser default h2 is far too small. */
.section-head.section-head-center h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }

/* Hairline flourish under centred overlines */
.rule-mark {
  display: block;
  width: 54px;
  height: 1px;
  margin: 1.4rem auto 1.6rem;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ---------- Booking card ---------- */

.booking-card {
  position: relative;
  background: rgba(19, 16, 11, 0.74);
  border: 1px solid rgba(226, 187, 92, 0.30);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.3rem);
  backdrop-filter: blur(16px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.55);
}

.booking-card .booking-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(226, 187, 92, 0.20);
}

.booking-card .booking-head h1,
.booking-card .booking-head h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.booking-card .booking-head p {
  font-size: 0.85rem;
  color: #b9b2a0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}

.booking-field { display: flex; flex-direction: column; gap: 0.35rem; }
.booking-field.booking-field-wide { grid-column: 1 / -1; }

.booking-field label {
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-bright);
}

.booking-field input,
.booking-field select {
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(226, 187, 92, 0.32);
  border-radius: 0;
  padding: 0.5rem 0 0.55rem;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

/* Native chevron is gone with appearance:none — draw one back in. */
.booking-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-bright) 50%),
                    linear-gradient(135deg, var(--accent-bright) 50%, transparent 50%);
  background-position: right 0.55rem center, right 0.25rem center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 1.4rem;
  cursor: pointer;
}

.booking-field select option { background: #17140f; color: var(--paper); }

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-bottom-color: var(--accent-bright);
}

.booking-field input::placeholder { color: #7d7666; }

/* Date/time pickers render a dark-on-dark icon in Chrome — invert it. */
.booking-field input[type="date"]::-webkit-calendar-picker-indicator,
.booking-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(0.78) sepia(0.6) saturate(3) hue-rotate(2deg);
  cursor: pointer;
}

.booking-actions { margin-top: 1.7rem; }
.booking-actions .btn { width: 100%; text-align: center; }

.booking-note {
  margin-top: 0.95rem;
  font-size: 0.76rem;
  line-height: 1.6;
  color: #b9b2a0;
  text-align: center;
}

.booking-note a { color: var(--accent-bright); text-decoration: none; }
.booking-note a:hover { text-decoration: underline; }

/* ---------- Airports strip ---------- */

.airports {
  background: var(--steel);
  color: var(--paper);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.25rem, 4vw, 3rem);
}

.airports-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}

.airport {
  padding: 0.4rem 0.5rem;
  border-left: 1px solid var(--line-dark);
}

.airport:first-child { border-left: 0; }

.airport strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
  line-height: 1;
}

.airport span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #b9b2a0;
}

@media (max-width: 860px) {
  .airports-inner { grid-template-columns: repeat(3, 1fr); gap: 1.6rem 1rem; }
  .airport:nth-child(3n + 1) { border-left: 0; }
}

@media (max-width: 480px) {
  .airports-inner { grid-template-columns: repeat(2, 1fr); }
  .airport { border-left: 0; }
}

/* ---------- Fleet showcase ---------- */

.fleet {
  background: var(--steel-deep);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.fleet-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  /* Column count pinned per breakpoint — auto-fit leaves orphan cells. */
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

@media (max-width: 1140px) { .fleet-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, #221e16 0%, #191610 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

/* The whole card is the control — click it to pick that car and jump to
   the booking form. Reset the UA button styling it inherits. */
button.fleet-card {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  padding: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.fleet-card:hover {
  border-color: rgba(226, 187, 92, 0.55);
  transform: translateY(-3px);
}

/* Photo slot — one vehicle shot per card, nothing else. */
.fleet-media {
  position: relative;
  display: block;
  background: #fff;
  border-bottom: 1px solid var(--line-dark);
}

.fleet-media img {
  display: block;
  width: 100%;
  height: auto;
}

.fleet-name {
  display: block;
  padding: 1.15rem 1.25rem 1.3rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--paper);
  transition: color 0.25s ease;
}

.fleet-card:hover .fleet-name { color: var(--accent-bright); }

/* ---------- Assurance row (why premium travellers keep the number) ---------- */

.assurance {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--paper-deep);
}

.assurance-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
}

@media (max-width: 900px) { .assurance-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.6rem; } }
@media (max-width: 520px) { .assurance-grid { grid-template-columns: 1fr; } }

.assurance-item { border-top: 1px solid var(--accent); padding-top: 1.1rem; }

.assurance-item h3 {
  font-size: 0.86rem;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.assurance-item p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 480px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-field.booking-field-half { grid-column: 1 / -1; }
}

/* Sticky header would cover anchored targets — hold them clear. */
section[id], .booking-card { scroll-margin-top: 84px; }

@media (max-width: 640px) {
  /* Placeholder pills shouldn't stretch edge to edge on a phone. */
  .photo-tag { max-width: 74%; right: 0.9rem; }
  .photo-tag.photo-tag-center { max-width: 88%; }
}

/* The serif runs wider than the old condensed face — give the three contact
   cards room to sit on one row instead of wrapping 2 + 1. */
.contact .contact-inner { max-width: 880px; }
.contact .contact-value { font-size: 1.28rem; }

/* ============================================================
   LIQUID GLASS
   Vanilla-CSS port of the LiquidGlassCard component (the original is
   React + Tailwind; this site has no build step). The component's props
   map to custom properties so cards can be tuned individually:

     blurIntensity   -> --lg-blur     (.lg-blur-sm / -lg)
     glowIntensity   -> --lg-glow     (.lg-glow-sm / -lg)
     shadowIntensity -> --lg-shadow   (.lg-shadow-sm)
     borderRadius    -> --lg-radius

   Structure: a translucent tinted fill over a backdrop blur, a specular
   sheen (::before) raking across the top-left, and a warm bloom (::after)
   rising from the bottom edge. Content sits above both layers.
   ============================================================ */

.liquid-glass {
  --lg-blur: 20px;
  --lg-sat: 165%;
  --lg-tint: 0.085;
  --lg-glow: 0.22;
  --lg-shadow: 0.42;
  --lg-radius: 14px;

  position: relative;
  isolation: isolate;
  border-radius: var(--lg-radius);
  background:
    linear-gradient(150deg,
      rgba(255, 255, 255, calc(var(--lg-tint) * 1.9)) 0%,
      rgba(255, 255, 255, calc(var(--lg-tint) * 0.5)) 42%,
      rgba(255, 255, 255, calc(var(--lg-tint) * 1.15)) 100%);
  backdrop-filter: blur(var(--lg-blur)) saturate(var(--lg-sat));
  -webkit-backdrop-filter: blur(var(--lg-blur)) saturate(var(--lg-sat));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, var(--lg-shadow)),
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 1px 0 0 rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

/* Specular sheen — the highlight that makes it read as a sheet of glass
   rather than a translucent box. */
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(118deg,
    rgba(255, 255, 255, 0.20) 0%,
    rgba(255, 255, 255, 0.05) 18%,
    rgba(255, 255, 255, 0) 44%,
    rgba(255, 255, 255, 0) 72%,
    rgba(255, 255, 255, 0.10) 100%);
}

/* Warm bloom rising from the lower edge — the "glow" knob. */
.liquid-glass::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  left: -30%;
  right: -30%;
  bottom: -55%;
  height: 78%;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(226, 187, 92, var(--lg-glow)), transparent 68%);
}

/* Everything the card actually contains rides above both layers. */
.liquid-glass > * { position: relative; z-index: 1; }

.liquid-glass:hover {
  border-color: rgba(226, 187, 92, 0.42);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, calc(var(--lg-shadow) + 0.08)),
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 1px 0 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

/* Intensity modifiers — same vocabulary as the component's props. */
.liquid-glass.lg-blur-sm   { --lg-blur: 11px; }
.liquid-glass.lg-blur-lg   { --lg-blur: 30px; }
.liquid-glass.lg-glow-sm   { --lg-glow: 0.12; }
.liquid-glass.lg-glow-lg   { --lg-glow: 0.34; }
.liquid-glass.lg-shadow-sm { --lg-shadow: 0.24; }

/* Light variant — frosted white, for glass sitting on the pale sections. */
.liquid-glass.liquid-glass-light {
  --lg-glow: 0.15;
  --lg-shadow: 0.13;
  background: linear-gradient(150deg,
    rgba(255, 255, 255, 0.80) 0%,
    rgba(255, 255, 255, 0.44) 45%,
    rgba(255, 255, 255, 0.68) 100%);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow:
    0 18px 44px rgba(27, 24, 17, var(--lg-shadow)),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.45);
}

.liquid-glass.liquid-glass-light::before {
  background: linear-gradient(118deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0.18) 20%,
    rgba(255, 255, 255, 0) 46%,
    rgba(255, 255, 255, 0) 74%,
    rgba(255, 255, 255, 0.35) 100%);
}

.liquid-glass.liquid-glass-light:hover {
  border-color: rgba(193, 154, 63, 0.55);
  box-shadow:
    0 24px 56px rgba(27, 24, 17, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.45);
}

/* Firefox <103 and anything else without backdrop-filter gets a solid
   panel — translucent-without-blur just looks like a mistake. */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .liquid-glass { background: rgba(40, 36, 26, 0.94); }
  .liquid-glass.liquid-glass-light { background: rgba(252, 250, 245, 0.96); }
}

/* ---------- Backdrops: glass needs something behind it to refract ---------- */

.fleet {
  background:
    radial-gradient(ellipse 70% 55% at 14% 0%, rgba(193, 154, 63, 0.22), transparent 62%),
    radial-gradient(ellipse 62% 60% at 88% 100%, rgba(193, 154, 63, 0.15), transparent 65%),
    var(--steel-deep);
}

.services {
  background:
    radial-gradient(ellipse 65% 60% at 82% 6%, rgba(193, 154, 63, 0.16), transparent 62%),
    radial-gradient(ellipse 70% 55% at 8% 100%, rgba(193, 154, 63, 0.12), transparent 64%),
    var(--steel);
}

.packages {
  background:
    radial-gradient(ellipse 60% 70% at 18% 0%, rgba(193, 154, 63, 0.22), transparent 60%),
    radial-gradient(ellipse 58% 62% at 86% 100%, rgba(226, 187, 92, 0.20), transparent 62%),
    var(--paper);
}

/* ---------- Card components converted to glass ---------- */

/* Capability/occasion cards were a joined hairline grid; glass cards need
   to float separately, so the grid lines go and real gaps come in. */
.service-grid {
  gap: 1.1rem;
  background: transparent;
  border: 0;
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 1000px) {
  .service-grid,
  .service-grid.service-grid-two { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .service-grid,
  .service-grid.service-grid-two { grid-template-columns: 1fr; }
}

.service.liquid-glass {
  padding: 1.8rem 1.6rem;
  --lg-radius: 12px;
}

/* Beats the plain .service:hover fill, which would paint over the glass. */
.service.liquid-glass:hover,
.service.liquid-glass {
  background:
    linear-gradient(150deg,
      rgba(255, 255, 255, calc(var(--lg-tint) * 1.9)) 0%,
      rgba(255, 255, 255, calc(var(--lg-tint) * 0.5)) 42%,
      rgba(255, 255, 255, calc(var(--lg-tint) * 1.15)) 100%);
}

.service.liquid-glass:hover { --lg-tint: 0.13; --lg-glow: 0.30; }

.fleet-card.liquid-glass {
  --lg-radius: 14px;
  background:
    linear-gradient(150deg,
      rgba(255, 255, 255, calc(var(--lg-tint) * 1.9)) 0%,
      rgba(255, 255, 255, calc(var(--lg-tint) * 0.5)) 42%,
      rgba(255, 255, 255, calc(var(--lg-tint) * 1.15)) 100%);
  border-color: rgba(255, 255, 255, 0.14);
}

.fleet-card.liquid-glass:hover { transform: translateY(-4px); }

/* Photo slot stays translucent so the card reads as one sheet of glass
   until a real vehicle photo fills it. */
.fleet-card.liquid-glass .fleet-media {
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.booking-card.liquid-glass {
  --lg-blur: 26px;
  --lg-tint: 0.07;
  --lg-glow: 0.20;
  --lg-shadow: 0.55;
  --lg-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.booking-card.liquid-glass .booking-head {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.contact-card.liquid-glass {
  --lg-radius: 12px;
  --lg-blur: 14px;
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-card.liquid-glass:hover {
  --lg-tint: 0.16;
  --lg-glow: 0.42;
  border-color: rgba(226, 187, 92, 0.6);
}

.contact-card.liquid-glass:hover .contact-label { color: var(--accent-bright); }
.contact-card.liquid-glass:hover .contact-value { color: #fff; }

.contact-card.liquid-glass.contact-card-static,
.contact-card.liquid-glass.contact-card-static:hover {
  --lg-tint: 0.085;
  --lg-glow: 0.22;
  border-color: rgba(255, 255, 255, 0.16);
  cursor: default;
}

.contact-card.liquid-glass.contact-card-static:hover .contact-label { color: var(--accent-bright); }
.contact-card.liquid-glass.contact-card-static:hover .contact-value { color: var(--paper); }

.package.liquid-glass {
  --lg-radius: 14px;
  border-color: rgba(255, 255, 255, 0.85);
  padding: 1.7rem 1.5rem;
}

.package.liquid-glass li { border-bottom-color: rgba(27, 24, 17, 0.10); }

/* `.btn` is used on both <a> and <button>. Anchors default to a transparent
   background, buttons default to the UA's `buttonface` grey — which put
   near-white label text on a near-white fill. Reset it here so the ghost
   variant is genuinely transparent whichever element carries it. */
button.btn {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  cursor: pointer;
}

.btn.btn-ghost { background: transparent; }

/* The featured package lost its gold rim to the glass border — put the
   highlight back with a selector that outranks both. */
.package.package-featured.liquid-glass {
  --lg-glow: 0.32;
  border-color: rgba(207, 163, 60, 0.85);
  box-shadow:
    0 0 0 1px rgba(207, 163, 60, 0.30),
    0 24px 58px rgba(27, 24, 17, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.45);
}

/* Blur is GPU-expensive and a phone shows less of the backdrop anyway.
   Listed per component because the single-class rule loses to the
   component overrides below (.booking-card.liquid-glass etc.). */
@media (max-width: 640px) {
  .liquid-glass,
  .liquid-glass.lg-blur-lg,
  .booking-card.liquid-glass,
  .fleet-card.liquid-glass,
  .service.liquid-glass,
  .package.liquid-glass,
  .contact-card.liquid-glass { --lg-blur: 13px; }
}

/* With the hero copy removed, the page's only h1 sits inside the booking
   card. It must not inherit hero-scale type — this outranks .hero h1 and
   .hero.hero-split h1. */
.hero .booking-card .booking-head h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.4rem;
  text-shadow: none;
  color: var(--paper);
}

/* ---------- Hero photo, card to one side ---------- */

/* No scrim, no blur — the photograph runs clean and the booking card sits
   out of its way in the right-hand column. */
.hero.hero-photo-side .hero-inner {
  max-width: 1340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero.hero-photo-side .hero-panel { grid-column: 2; }

.hero.hero-photo-side .hero-copy {
  margin-top: 1.4rem;
  text-align: center;
}

.hero.hero-photo-side .hero-actions {
  justify-content: center;
  margin-bottom: 0.9rem;
}

/* Sitting on open photograph rather than a scrim, so the small print needs
   its own shadow to stay readable against a bright sky. */
.hero.hero-photo-side .hero-note {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85), 0 0 3px rgba(0, 0, 0, 0.6);
}

.hero .bg-photo.bg-photo-hero { object-position: 14% center; }

/* Below the split the card goes full width, so the photo can't sit beside
   it. It becomes a band across the top instead — at that size it renders
   close to 1:1, keeping the whole frame — masked at the foot so it
   dissolves into the section instead of ending on a hard line. */
@media (max-width: 940px) {
  .hero.hero-photo-side .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 74vw;
  }

  .hero.hero-photo-side .hero-panel { grid-column: 1; }

  .hero .bg-photo.bg-photo-hero {
    height: 78vw;
    object-position: 22% center;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 0%, #000 58%, transparent 100%);
  }
}

/* Give the phone button the same footing under the card. */
.hero.hero-photo-side .hero-note { color: #d8d1bf; }

/* ---------- Booking card: white liquid glass ---------- */

/* Frosted white over the photograph, so everything inside flips to ink —
   the light text and gold labels it inherits were built for dark glass. */
.hero .booking-card.liquid-glass-light {
  --lg-blur: 26px;
  --lg-shadow: 0.20;
  border-color: rgba(255, 255, 255, 0.9);
}

.hero .booking-card.liquid-glass-light .booking-head { border-bottom-color: rgba(27, 24, 17, 0.14); }
.hero .booking-card.liquid-glass-light .booking-head h1 { color: var(--ink); }
.hero .booking-card.liquid-glass-light .booking-head p { color: var(--ink-soft); }

.hero .booking-card.liquid-glass-light .booking-field label { color: var(--accent-deep); }

.hero .booking-card.liquid-glass-light .booking-field input,
.hero .booking-card.liquid-glass-light .booking-field select {
  color: var(--ink);
  border-bottom-color: rgba(27, 24, 17, 0.22);
}

.hero .booking-card.liquid-glass-light .booking-field input::placeholder { color: rgba(27, 24, 17, 0.42); }

.hero .booking-card.liquid-glass-light .booking-field input:focus,
.hero .booking-card.liquid-glass-light .booking-field select:focus {
  border-bottom-color: var(--accent-deep);
}

.hero .booking-card.liquid-glass-light .booking-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-deep) 50%),
                    linear-gradient(135deg, var(--accent-deep) 50%, transparent 50%);
}

.hero .booking-card.liquid-glass-light .booking-field select option {
  background: #fff;
  color: var(--ink);
}

/* The gold-on-dark inversion was for dark glass; on white the native
   picker icons already read correctly. */
.hero .booking-card.liquid-glass-light .booking-field input[type="date"]::-webkit-calendar-picker-indicator,
.hero .booking-card.liquid-glass-light .booking-field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: none;
  opacity: 0.65;
}

.hero .booking-card.liquid-glass-light .booking-note { color: var(--ink-soft); }
.hero .booking-card.liquid-glass-light .booking-note a { color: var(--accent-deep); }

/* ---------- Booking: modular fields ---------- */

/* .booking-field is display:flex, which beats the hidden attribute. */
.booking-field[hidden] { display: none; }

/* Vehicle field opens the fleet picker instead of a native dropdown. */
.vehicle-trigger {
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-body);
  font-size: 0.94rem;
  text-align: left;
  color: rgba(27, 24, 17, 0.42);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(27, 24, 17, 0.22);
  border-radius: 0;
  padding: 0.5rem 1.4rem 0.55rem 0;
  width: 100%;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.vehicle-trigger::after {
  content: "";
  position: absolute;
  right: 0.3rem;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-right: 1.5px solid var(--accent-deep);
  border-bottom: 1.5px solid var(--accent-deep);
  transform: rotate(45deg);
}

.vehicle-trigger.is-chosen { color: var(--ink); }
.vehicle-trigger:hover,
.vehicle-trigger:focus-visible { border-bottom-color: var(--accent-deep); outline: none; }

/* ---------- Fleet picker dialog — clean white ---------- */

.fleet-dialog {
  border: 0;
  padding: 0;
  margin: auto;
  background: transparent;
  max-width: min(1080px, 92vw);
  width: 100%;
  max-height: 88vh;
  color: var(--ink);
  overflow: visible;
}

.fleet-dialog::backdrop {
  background: rgba(12, 10, 7, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fleet-dialog-inner {
  background: #fff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 40px 90px rgba(12, 10, 7, 0.45);
}

.fleet-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.fleet-dialog-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink);
}

.fleet-dialog-close {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1.4rem;
  line-height: 1;
  width: 2.2rem;
  height: 2.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.fleet-dialog-close:hover { border-color: var(--ink); color: var(--ink); }

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

@media (max-width: 900px) { .vehicle-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .vehicle-grid { grid-template-columns: repeat(2, 1fr); } }

/* Square corners and a hairline rule, per the card spec — but white. */
.vehicle-card {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vehicle-card:hover,
.vehicle-card:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 18px 40px -14px rgba(27, 24, 17, 0.30);
  transform: translateY(-2px);
  outline: none;
}

.vehicle-media {
  position: relative;
  display: block;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.vehicle-media img { display: block; width: 100%; height: auto; }

/* The slot pills are styled for dark backgrounds; invert them in here. */
.vehicle-media .photo-tag {
  color: var(--ink-soft);
  border-color: rgba(27, 24, 17, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

.vehicle-media .photo-tag::before { color: var(--accent-deep); }

.vehicle-name {
  display: block;
  padding: 0.9rem 1rem 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink);
}

.vehicle-unsure {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  margin: 1.6rem auto 0;
  padding: 0.8rem 1.6rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.vehicle-unsure:hover { border-color: var(--ink); color: var(--ink); }

/* Placeholder pills sit on white studio slots now — invert them so they
   stay readable until real cut-outs land. */
.fleet-media .photo-tag,
.vehicle-media .photo-tag {
  color: var(--ink-soft);
  border-color: rgba(27, 24, 17, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.fleet-media .photo-tag::before,
.vehicle-media .photo-tag::before { color: var(--accent-deep); }

/* Header lockup: the client's emblem (NL monogram over the limo) beside the
   wordmark. The supplied logo is a square lockup with the business name baked
   in — at header height those words render ~3px tall, so only the emblem is
   used here and the name is set in live type next to it. */
.wordmark { gap: 0.7rem; }

.wordmark-logo { height: 54px; }

@media (max-width: 640px) {
  .wordmark-logo { height: 38px; }
  .wordmark { gap: 0.5rem; }
  .wordmark-text { font-size: 1.15rem; }
}
