/*
Theme Name: Luxe Auto
Theme URI: https://luxeauto.com
Author: Luxe Auto Studio
Description: Premium luxury automotive WordPress theme — cinematic, editorial, agency-quality.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: luxe-auto
*/

/* ============================================================
   LUXE AUTO v2 — PREMIUM EDITORIAL AUTOMOTIVE THEME
   ============================================================ */

:root {
  --void:          #040404;
  --black:         #080808;
  --charcoal:      #0f0f0f;
  --dark:          #161616;
  --mid:           #222222;
  --border:        rgba(255,255,255,0.07);
  --border-s:      rgba(255,255,255,0.14);
  --white:         #ffffff;
  --muted:         rgba(255,255,255,0.50);
  --subtle:        rgba(255,255,255,0.28);
  --ghost:         rgba(255,255,255,0.10);
  --red:           #c0102a;
  --red-bright:    #e01230;
  --red-glow:      rgba(192,16,42,0.22);
  --gold:          #b8943a;
  --glass:         rgba(5,5,5,0.74);

  --f-display: 'Playfair Display', Georgia, serif;
  --f-sans:    'Barlow Condensed', 'Helvetica Neue', sans-serif;
  --f-body:    'Barlow', 'Helvetica Neue', sans-serif;

  /* Layout — 90% width enforced */
  --w-site: 90%;
  --w-max:  1440px;
  --w-text: 1280px;
  --w-hero: 1500px;

  /* Fluid spacing */
  --s1: clamp(8px,  0.8vw, 12px);
  --s2: clamp(16px, 1.5vw, 24px);
  --s3: clamp(24px, 2.5vw, 40px);
  --s4: clamp(40px, 4vw,   64px);
  --s5: clamp(64px, 7vw,  120px);
  --s6: clamp(80px, 9vw,  148px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:  cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast: 0.18s;
  --t-mid:  0.42s;
  --t-slow: 0.75s;
  --t-xl:   1.1s;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  background: var(--void);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ============================================================
   CONTAINERS — 90% width
   ============================================================ */
.container {
  width: var(--w-site);
  max-width: var(--w-max);
  margin: 0 auto;
}
.container--text {
  width: var(--w-site);
  max-width: var(--w-text);
  margin: 0 auto;
}
.container--hero {
  width: var(--w-site);
  max-width: var(--w-hero);
  margin: 0 auto;
}

/* ============================================================
   GLOBAL TYPOGRAPHY
   ============================================================ */
.t-heading {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.t-overline {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}
.t-body {
  font-family: var(--f-body);
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--s6) 0; position: relative; }
.section--dark    { background: var(--black); }
.section--charcoal{ background: var(--charcoal); }
.section--void    { background: var(--void); }

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--s2);
}
.eyebrow-row::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.fade-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-s) 30%, var(--border-s) 70%, transparent);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out),
              background var(--t-fast),
              border-color var(--t-fast);
}
.btn:hover { transform: translateY(-2px); }
.btn-icon {
  width: 16px; height: 16px;
  transition: transform var(--t-fast) var(--ease-out);
  flex-shrink: 0;
}
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 10px 40px var(--red-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
}
.btn-text {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--t-fast);
  cursor: pointer;
}
.btn-text:hover { color: var(--white); transform: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.35s ease,
    border-color     0.35s ease,
    box-shadow       0.35s ease,
    transform        0.40s cubic-bezier(0.22,1,0.36,1);
}

/* Always-on top gradient — keeps logo readable over hero */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,4,4,0.65) 0%, transparent 100%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.35s ease;
}

/* Scrolled state — solid dark glass */
.site-header.scrolled {
  background-color: rgba(5,5,5,0.92);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: rgba(255,255,255,0.09);
  box-shadow: 0 1px 32px rgba(0,0,0,0.55);
}

/* When scrolled, kill the gradient (solid bg handles it) */
.site-header.scrolled::before {
  opacity: 0;
}

/* Hide on fast scroll down */
.site-header.hide {
  transform: translateY(-100%);
}

.nav-inner {
  width: var(--w-site);
  max-width: var(--w-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--f-display);
  font-size: 1.45rem;
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-family: var(--f-sans);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}
.nav-link {
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width var(--t-mid) var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 9px 22px;
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover { background: var(--red-bright); box-shadow: 0 4px 20px var(--red-glow); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px; min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transform-origin: center;
  transition: all var(--t-mid) var(--ease-out);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(4,4,4,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  z-index: 940;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(28px, 8vw, 80px) 48px;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-link {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 7vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--subtle);
  display: block;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  letter-spacing: -0.01em;
  transition: color var(--t-mid), padding-left var(--t-mid) var(--ease-out);
}
.mobile-nav-link:hover { color: var(--white); padding-left: 18px; }
.mobile-menu-footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
}
.mobile-menu-footer .footer-label {
  font-family: var(--f-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 4px;
}
.mobile-menu-footer a {
  font-family: var(--f-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  transition: color var(--t-fast);
}
.mobile-menu-footer a:hover { color: var(--white); }

/* ============================================================
   HERO — EDITORIAL, LEFT-ALIGNED, UPPER-THIRD VERTICAL
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--void);
  display: flex;
  align-items: stretch;
}

/* Background */
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 62% center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 9s var(--ease-out);
  will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }

/* Cinematic overlays — layered */
.hero-cinema {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(4,4,4,0.97) 0%,
    rgba(4,4,4,0.84) 26%,
    rgba(4,4,4,0.52) 50%,
    rgba(4,4,4,0.18) 70%,
    transparent 100%
  );
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 90% at 18% 50%,
    transparent 42%, rgba(4,4,4,0.38) 100%
  );
}
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 280px;
  background: linear-gradient(to top, var(--void) 0%, transparent 100%);
}

/* Shell — 90% wide */
.hero-shell {
  position: relative;
  z-index: 10;
  width: var(--w-site);
  max-width: var(--w-hero);
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 14vh;
  padding-bottom: 10vh;
}

/* Copy block */
.hero-copy { max-width: 580px; width: 100%; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  opacity: 0;
  animation: anim-up var(--t-slow) var(--ease-out) 0.15s forwards;
}
.hero-eyebrow-line { width: 44px; height: 1px; background: var(--red); flex-shrink: 0; }
.hero-eyebrow-text {
  font-family: var(--f-sans);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red);
}

/* Headline — 15-20% smaller, refined */
.hero-hl {
  font-family: var(--f-display);
  font-size: clamp(3.6rem, 6.5vw, 6.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: anim-up var(--t-slow) var(--ease-out) 0.3s forwards;
}
.hero-hl em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.32);
}

/* Sub */
.hero-sub {
  font-size: 1rem;
  font-family: var(--f-body);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 430px;
  margin-bottom: 38px;
  opacity: 0;
  animation: anim-up var(--t-slow) var(--ease-out) 0.48s forwards;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: anim-up var(--t-slow) var(--ease-out) 0.64s forwards;
}

/* Stats — bottom right, absolute to shell */
.hero-stats {
  position: absolute;
  bottom: clamp(36px, 6vh, 72px);
  right: 0;
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  z-index: 11;
  opacity: 0;
  animation: anim-fade var(--t-slow) var(--ease-out) 1.1s forwards;
}
.hero-stat { text-align: right; }
.hero-stat-n {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white); line-height: 1;
}
.hero-stat-l {
  font-family: var(--f-sans);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--subtle); margin-top: 3px;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: clamp(28px, 4vh, 44px);
  left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  z-index: 11;
  opacity: 0;
  animation: anim-fade 1s ease 1.6s forwards;
}
.hero-scroll-label {
  font-family: var(--f-sans);
  font-size: 0.56rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--subtle);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}

/* ============================================================
   BRAND MARQUEE STRIP
   ============================================================ */
.brand-strip {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}
.brand-strip-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.brand-item {
  display: flex;
  align-items: center;
  padding: 0 clamp(28px, 4vw, 52px);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.brand-item span {
  font-family: var(--f-sans);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--subtle); white-space: nowrap;
}
.brand-item .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 14px; flex-shrink: 0;
}

/* ============================================================
   FLEET — ASYMMETRIC EDITORIAL GRID
   ============================================================ */
.fleet-section {
  background: var(--black);
  padding: var(--s6) 0;
}
.fleet-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--s4);
  gap: var(--s3);
  flex-wrap: wrap;
}
.fleet-hdr-left { max-width: 520px; }
.fleet-hdr-left .t-heading { margin: 10px 0; }

/* Two-column golden layout */
.fleet-layout {
  display: grid;
  grid-template-columns: 1.62fr 1fr;
  gap: 3px;
}

/* Feature card — explicit height so abs-positioned img renders */
.fleet-feature {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  height: 600px;
  min-height: 380px;
  display: block;
}

/* Right panel */
.fleet-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  min-height: 600px;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark);
  min-height: 240px;
  display: block;
}

/* img fills absolutely — parent must have explicit height OR min-height */
.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  transition: transform var(--t-xl) var(--ease-out);
}
.fleet-feature:hover .fleet-img,
.fleet-card:hover .fleet-img { transform: scale(1.055); }

.fleet-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(4,4,4,0.92) 0%,
    rgba(4,4,4,0.28) 55%,
    transparent 100%
  );
  transition: background var(--t-mid);
}
.fleet-feature:hover .fleet-ov,
.fleet-card:hover .fleet-ov {
  background: linear-gradient(to top,
    rgba(4,4,4,0.96) 0%,
    rgba(4,4,4,0.45) 55%,
    transparent 100%
  );
}

.fleet-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: clamp(20px, 3vw, 36px);
  transform: translateY(5px);
  transition: transform var(--t-mid) var(--ease-out);
}
.fleet-feature:hover .fleet-info,
.fleet-card:hover .fleet-info { transform: translateY(0); }

.fleet-badge {
  font-family: var(--f-sans);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--red); margin-bottom: 5px;
}
.fleet-name {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 700; font-style: italic;
  color: var(--white); line-height: 1.1;
  margin-bottom: 5px;
}
.fleet-price {
  font-family: var(--f-sans);
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 12px;
}
.fleet-link {
  display: inline-flex;
  align-items: center; gap: 7px;
  font-family: var(--f-sans);
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white);
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--t-mid) var(--ease-out), transform var(--t-mid) var(--ease-out);
}
.fleet-feature:hover .fleet-link,
.fleet-card:hover .fleet-link { opacity: 1; transform: translateY(0); }
.fleet-link svg { transition: transform var(--t-fast) var(--ease-out); }
.fleet-link:hover svg { transform: translateX(4px); }

/* ============================================================
   CRAFTSMANSHIP STRIP
   ============================================================ */
.craft-section {
  background: var(--void);
  padding: var(--s6) 0;
  overflow: hidden;
}
/* craft-inner sits inside .container (90% wide) */
.craft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  /* Bleed the visual to the left edge of container */
  overflow: hidden;
}
.craft-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: block;
  /* Negative margin to bleed left edge */
  margin-left: calc((100vw - var(--w-max)) / -2);
  margin-left: clamp(-72px, calc((100vw - 1440px) / -2), 0px);
}
.craft-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
  transition: transform var(--t-xl) var(--ease-out);
}
.craft-section:hover .craft-img { transform: scale(1.04); }
.craft-img-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--void) 100%);
}
.craft-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(40px, 5vw, 72px);
  background: var(--void);
}
.craft-text .eyebrow-row { margin-bottom: var(--s2); }
.craft-text .t-heading { margin-bottom: var(--s2); }
.craft-text .t-body { margin-bottom: var(--s3); max-width: 420px; }
.craft-stats {
  display: flex; gap: var(--s3);
  padding-top: var(--s3);
  border-top: 1px solid var(--border);
}
.craft-stat-n {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 700; font-style: italic;
  color: var(--white); line-height: 1;
}
.craft-stat-l {
  font-family: var(--f-sans);
  font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--subtle);
  margin-top: 4px;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  background: var(--charcoal);
  padding: var(--s6) 0;
  position: relative; overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute; top: -240px; right: -180px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(192,16,42,0.10) 0%, transparent 68%);
  pointer-events: none;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.booking-info { padding-top: 8px; }
.booking-info .t-heading { margin: 12px 0 16px; }
.booking-info .t-body { margin-bottom: var(--s3); }

.booking-feat {
  display: flex; align-items: flex-start;
  gap: 15px; margin-bottom: 20px;
}
.booking-feat-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-s);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--red);
  background: rgba(255,255,255,0.02);
}
.booking-feat-body h4 {
  font-family: var(--f-sans);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--white);
  margin-bottom: 3px;
}
.booking-feat-body p {
  font-size: 0.75rem; color: var(--subtle); line-height: 1.55;
}

/* Form card */
.form-card {
  background: var(--dark);
  border: 1px solid var(--border-s);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}
.form-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(192,16,42,0.15));
}
.form-card-title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700; font-style: italic;
  color: var(--white); margin-bottom: 5px;
}
.form-card-sub {
  font-family: var(--f-sans); font-size: 0.76rem;
  color: var(--muted); letter-spacing: 0.04em;
  margin-bottom: var(--s3);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.span-2 { grid-column: span 2; }
.form-label {
  font-family: var(--f-sans);
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}

/* INPUTS & SELECTS */
.form-input,
.form-select,
.form-textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select, textarea {
  width: 100%;
  background: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.09);
  color: #ffffff;
  padding: 13px 16px;
  font-family: var(--f-sans);
  font-size: 0.88rem; font-weight: 400;
  letter-spacing: 0.03em;
  outline: none;
  appearance: none; -webkit-appearance: none;
  border-radius: 0; line-height: 1.5;
  min-height: 48px;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.form-input::placeholder, input::placeholder, textarea::placeholder {
  color: rgba(255,255,255,0.22); font-weight: 300;
}
.form-input:hover, .form-select:hover,
input[type="text"]:hover, input[type="email"]:hover,
input[type="tel"]:hover, input[type="date"]:hover,
select:hover, textarea:hover {
  border-color: rgba(255,255,255,0.2);
  background: #101010;
}
.form-input:focus, .form-select:focus,
input[type="text"]:focus, input[type="email"]:focus,
input[type="tel"]:focus, input[type="date"]:focus,
select:focus, textarea:focus {
  border-color: var(--red);
  background: #0e0e0e;
  box-shadow: 0 0 0 3px rgba(192,16,42,0.15);
  color: #ffffff;
}
input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.4); cursor: pointer; }
input[type="date"]::-webkit-datetime-edit,
input[type="date"]::-webkit-datetime-edit-fields-wrapper { color: #ffffff; }
input[type="date"]::-webkit-datetime-edit-text { color: rgba(255,255,255,0.3); }
input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field { color: #ffffff; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute; right: 15px; top: 50%;
  transform: translateY(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.38);
  pointer-events: none;
  transition: border-top-color var(--t-fast), transform var(--t-fast);
}
.select-wrap:focus-within::after {
  border-top-color: var(--red);
  transform: translateY(-50%) rotate(180deg);
}
.form-select, select { padding-right: 40px; cursor: pointer; }
.form-select option, select option { background-color: #181818; color: #ffffff; }
.form-select option:checked, select option:checked { background-color: var(--red); color: #ffffff; }
.form-select option[value=""], select option[value=""] { color: rgba(255,255,255,0.28); }
@-moz-document url-prefix() {
  select, .form-select { background-color: #0c0c0c; color: #ffffff; }
  select option, .form-select option { background-color: #181818; color: #ffffff; }
}
textarea.form-textarea { resize: vertical; min-height: 108px; line-height: 1.65; }

.form-submit {
  width: 100%; padding: 17px 36px; margin-top: 4px;
  background: var(--red); color: var(--white);
  font-family: var(--f-sans); font-size: 0.74rem;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  position: relative; overflow: hidden;
  transition: background var(--t-fast), transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out);
}
.form-submit::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-100%);
  transition: transform var(--t-mid) var(--ease-out);
}
.form-submit:hover::before { transform: translateX(0); }
.form-submit:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 8px 36px rgba(192,16,42,0.28);
}
.form-privacy {
  font-family: var(--f-sans); font-size: 0.63rem;
  color: var(--subtle); text-align: center;
  margin-top: 13px; line-height: 1.6;
}
.form-privacy a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* ============================================================
   WHY CHOOSE US — 4-column
   ============================================================ */
.why-section { background: var(--void); padding: var(--s6) 0; }
.why-hdr { text-align: center; max-width: 560px; margin: 0 auto var(--s4); }
.why-hdr .t-heading { margin: 12px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
}
.why-card {
  background: var(--charcoal);
  padding: clamp(28px, 4vw, 48px) clamp(22px, 3vw, 34px);
  position: relative; overflow: hidden;
  transition: background var(--t-mid);
}
.why-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}
.why-card:hover { background: var(--dark); }
.why-card:hover::after { transform: scaleX(1); }
.why-num {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 700; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(192,16,42,0.22);
  line-height: 1; margin-bottom: 16px;
  transition: -webkit-text-stroke var(--t-mid);
}
.why-card:hover .why-num { -webkit-text-stroke-color: var(--red); }
.why-card h3 {
  font-family: var(--f-sans);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; color: var(--white);
  margin-bottom: 9px;
}
.why-card p { font-family: var(--f-body); font-size: 0.78rem; color: var(--subtle); line-height: 1.7; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--black); padding: var(--s6) 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: var(--s4);
}
.review-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: clamp(22px, 3vw, 36px);
  display: flex; flex-direction: column;
  transition: border-color var(--t-mid), transform var(--t-mid) var(--ease-out);
}
.review-card:hover { border-color: var(--border-s); transform: translateY(-3px); }
.review-stars {
  display: flex; gap: 2px;
  color: var(--gold); font-size: 0.75rem;
  letter-spacing: 2px; margin-bottom: 14px;
}
.review-quote-mark {
  font-family: var(--f-display);
  font-size: 2.8rem; font-style: italic;
  color: var(--red); opacity: 0.38;
  line-height: 0.6; margin-bottom: 12px;
  display: block;
}
.review-text {
  font-family: var(--f-body);
  font-size: 0.86rem; font-style: italic;
  line-height: 1.85; color: var(--muted);
  margin-bottom: var(--s2); flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 11px;
  padding-top: var(--s2); border-top: 1px solid var(--border);
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  object-fit: cover; border: 1px solid var(--border-s); flex-shrink: 0;
}
.review-name {
  font-family: var(--f-sans); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.04em; color: var(--white);
}
.review-role {
  font-family: var(--f-sans); font-size: 0.65rem;
  color: var(--subtle); margin-top: 1px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--charcoal); padding: var(--s6) 0; }
.process-hdr { text-align: center; max-width: 520px; margin: 0 auto var(--s4); }
.process-hdr .t-heading { margin: 12px 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 23px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--border-s);
}
.process-step { padding: 0 clamp(14px, 2vw, 26px); text-align: center; }
.process-num {
  width: 46px; height: 46px;
  border: 1px solid var(--border-s); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s2); background: var(--charcoal);
  font-family: var(--f-display); font-size: 1rem;
  font-style: italic; font-weight: 700; color: var(--red);
  position: relative; z-index: 1;
  transition: background var(--t-mid), color var(--t-mid), border-color var(--t-mid);
}
.process-step:hover .process-num {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.process-step h4 {
  font-family: var(--f-sans); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.06em;
  color: var(--white); margin-bottom: 7px;
}
.process-step p {
  font-family: var(--f-body); font-size: 0.76rem;
  color: var(--subtle); line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { position: relative; padding: var(--s6) 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  opacity: 0.22;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--void) 28%, transparent 72%);
}
.cta-body { position: relative; z-index: 2; max-width: 640px; }
.cta-body .t-heading { margin: 12px 0 16px; }
.cta-body .t-body { margin-bottom: var(--s3); }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--void);
  border-top: 1px solid var(--border);
  padding: var(--s5) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: var(--s4);
}
.footer-brand-desc {
  font-family: var(--f-body); font-size: 0.8rem;
  color: var(--subtle); line-height: 1.85;
  margin-top: 14px; max-width: 256px;
}
.footer-col h4 {
  font-family: var(--f-sans); font-size: 0.58rem;
  font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 17px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link {
  font-family: var(--f-body); font-size: 0.8rem;
  color: var(--subtle); transition: color var(--t-fast);
}
.footer-link:hover { color: var(--white); }
.footer-social { display: flex; gap: 11px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--subtle);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { border-color: var(--red); color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 12px; flex-wrap: wrap;
}
.footer-legal {
  font-family: var(--f-sans); font-size: 0.64rem;
  color: var(--subtle); letter-spacing: 0.06em;
}
.footer-legal a { color: var(--subtle); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out),
              transform 0.65s var(--ease-out);
  /* If JS never runs, show content after delay */
  animation: reveal-safe 0s 3s forwards;
}
.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none;
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.26s; }
.reveal.d4 { transition-delay: 0.38s; }

@keyframes reveal-safe {
  to { opacity: 1; transform: translateY(0); }
}

/* Images and structural elements should NEVER be hidden by reveal */
.fleet-feature.reveal,
.fleet-card.reveal,
.craft-visual.reveal,
.why-grid.reveal,
.reviews-grid.reveal {
  opacity: 1 !important;
  transform: none !important;
  animation: none;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes anim-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes anim-fade {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.55); opacity: 0.35; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE ≤ 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .fleet-layout { grid-template-columns: 1fr; gap: 3px; }
  .fleet-feature { min-height: 420px; }
  .fleet-panel { grid-template-columns: repeat(4, 1fr); }
  .process-steps::before { display: none; }
}

/* ============================================================
   RESPONSIVE ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { height: 68px; }
  .hero-bg { background-position: 65% center; }
  .hero-shell { padding-top: 12vh; }
  .hero-copy { max-width: 520px; }
  .hero-stats { gap: 20px; }
  .craft-inner { grid-template-columns: 1fr; }
  .craft-img-ov { background: linear-gradient(to bottom, transparent 50%, var(--void) 100%); }
  .craft-text { padding: var(--s4) 0; background: none; }
  .booking-layout { grid-template-columns: 1fr; gap: var(--s4); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .review-card:nth-child(3) { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: var(--s3); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s3); }
  .footer-brand { grid-column: span 2; }
  .fleet-panel { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  html, body { max-width: 100%; overflow-x: hidden; }
  .nav-inner { height: 62px; width: 100%; max-width: 100%; padding: 0 20px; }
  .mobile-menu { width: 100%; }

  .hero { min-height: 100svh; }
  .hero-bg { background-position: 72% center; }
  .hero-cinema {
    background: linear-gradient(to bottom,
      rgba(4,4,4,0.45) 0%, rgba(4,4,4,0.62) 40%,
      rgba(4,4,4,0.88) 68%, rgba(4,4,4,0.97) 100%
    );
  }
  .hero-shell {
    padding-top: 0; padding-bottom: 96px;
    justify-content: flex-end; min-height: 100svh;
  }
  .hero-copy { max-width: 100%; }
  .hero-hl { font-size: clamp(2.8rem, 11vw, 4rem); margin-bottom: 16px; }
  .hero-sub { font-size: 0.9rem; max-width: 100%; margin-bottom: 26px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats, .hero-scroll { display: none; }

  .fleet-layout { grid-template-columns: 1fr; }
  .fleet-feature { min-height: 300px; }
  .fleet-panel { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .fleet-card { min-height: 200px; }
  .fleet-info { transform: translateY(0) !important; }
  .fleet-link { opacity: 1 !important; transform: none !important; }
  .fleet-hdr { flex-direction: column; align-items: flex-start; gap: var(--s2); }
  .fleet-hdr .btn { width: 100%; justify-content: center; }

  .craft-visual { min-height: 52vw; }
  .craft-text { padding: var(--s4) 0 0; }

  .booking-layout { gap: var(--s4); }
  .form-card { padding: 22px 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-group.span-2 { grid-column: span 1; }

  .why-grid { grid-template-columns: 1fr; gap: 1px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card:nth-child(3) { display: flex; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: var(--s2); }

  .cta-body { max-width: 100%; }
  .cta-btns { flex-direction: column; gap: 10px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--s3); }
  .footer-brand { grid-column: span 1; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-social { justify-content: center; }
}

/* ============================================================
   RESPONSIVE ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .nav-logo-name { font-size: 1.2rem; }
  .hero-hl { font-size: clamp(2.4rem, 13vw, 3rem); }
  .t-heading { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .form-card { padding: 18px 12px; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .fleet-panel { grid-template-columns: 1fr; }
}

/* ============================================================
   LANDSCAPE MOBILE
   ============================================================ */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-shell { padding-top: 0; padding-bottom: 60px; justify-content: center; }
  .hero-hl { font-size: clamp(2rem, 6vw, 2.8rem); }
  .hero-sub { display: none; }
}

/* ============================================================
   TOUCH DEVICES
   ============================================================ */
@media (hover: none) {
  .fleet-link { opacity: 1; transform: none; }
  .fleet-info { transform: none; }
  .fleet-feature, .fleet-card { transform: none !important; }
  .btn { min-height: 48px; }
  input, select, textarea, .form-input, .form-select { font-size: 16px !important; min-height: 48px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.btn:focus-visible { outline-color: var(--white); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
html, body { max-width: 100%; overflow-x: hidden; }

/* WP compat */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { margin: 0 auto; display: block; }
