/* ============================================
   TransfersX — Dark Luxury Theme
   ============================================ */

:root {
  --black: #000000;
  --white: #ffffff;
  --grey-100: #f7f7f7;
  --grey-200: #e8e8e8;
  --grey-300: #c9c9c9;
  --grey-500: #8a8a8a;
  --grey-700: #4a4a4a;
  --grey-900: #1a1a1a;

  --bg: #ffffff;
  --bg-elev: #f7f7f7;
  --surface: #ffffff;
  --border: #e8e8e8;
  --text: #000000;
  --text-muted: #4a4a4a;
  --text-dim: #8a8a8a;

  --bg-dark: #000000;
  --bg-dark-elev: #0a0a0a;
  --border-dark: #1f1f1f;
  --text-on-dark: #ffffff;
  --text-muted-dark: #b8b8b8;
  --text-dim-dark: #6a6a6a;

  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-serif: var(--font-display);
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --max-w: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(0.6, 0.05, 0.2, 1);
}

/* ── Global Manrope enforcement — overrides any inline font-family ── */
*, *::before, *::after {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
}

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

html { scroll-behavior: smooth; color-scheme: light; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
}

h1 em, h2 em, h3 em, h4 em,
.h-display em, .h-1 em, .h-2 em, .h-3 em {
  font-style: normal;
  font-weight: 400;
}

.h-display {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

.h-1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
}

.h-2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 0.95;
}

.h-3 {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-block;
}

.eyebrow.on-dark { color: var(--text-muted); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--text-muted);
  max-width: 60ch;
}

p { color: var(--text-muted); font-weight: 500; }
.text-muted { color: var(--text-dim); }

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding: clamp(4rem, 10vw, 9rem) 0;
}

.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border: 0;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-on-dark); }
.section-dark p, .section-dark .lead { color: var(--text-muted-dark); }
.section-dark .eyebrow { color: var(--text-muted-dark); }
.section-dark .stats { border-color: var(--border-dark); }
.section-dark .stat-num { color: var(--text-on-dark); }
.section-dark .stat-label { color: var(--text-dim-dark); }
.section-dark .card-meta { color: var(--text-dim-dark); border-top-color: var(--border-dark); }
.section-dark .card-body h3 { color: var(--text-on-dark); }
.section-dark .card-body p { color: var(--text-muted-dark); }

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: 0;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.25rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: transparent;
  color: var(--black);
}

.section-dark .btn { background: var(--white); color: var(--black); border-color: var(--white); }
.section-dark .btn:hover { background: transparent; color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline-light {
  background: #0b0b0b;
  color: #ffffff;
  border-color: #0b0b0b;
}

.btn-outline-light:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.btn-arrow::after {
  content: "→";
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 0.4s var(--ease);
}

.btn-arrow:hover::after { transform: translateX(4px); }

.btn-sm {
  padding: 0.75rem 1.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease);
  color: var(--text);
}

.link-underline:hover { gap: 1rem; }

/* ----- Sticky header stack (locks announcement + topbar + nav together) ----- */
.header-stack {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
}

/* ===== Homepage variant: nav floats over hero video ===== */
.page-home .header-stack {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 100;
  transition: background 0.35s var(--ease);
}

/* announcement-bar still readable — keep white */
.page-home .header-stack .announcement-bar { background: var(--white); }

/* nav transparent + white text over the hero */
.page-home .nav {
  background: transparent;
  border-bottom: 0;
  color: var(--white);
}
.page-home .nav .logo { background: transparent; padding: 0; line-height: 0; }
.page-home .nav .logo img {
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
  transition: filter 0.3s var(--ease);
}
.page-home .header-stack.is-fixed .nav .logo img {
  filter: none;
}
.page-home .nav .nav-links a { color: var(--white); }
.page-home .nav .nav-phone { color: var(--white); }
.page-home .nav .nav-cta {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.page-home .nav .nav-cta:hover { background: var(--white); color: var(--black); }
.page-home .nav .menu-toggle span { background: var(--white); }

/* When the user scrolls past the hero, header becomes fixed — dark Blacklane style */
.page-home .header-stack.is-fixed {
  position: fixed;
  background: rgba(11,11,11,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.page-home .header-stack.is-fixed .nav {
  background: transparent;
  color: var(--white);
  border-bottom: none;
}
.page-home .header-stack.is-fixed .nav .logo img { filter: brightness(0) invert(1); }
.page-home .header-stack.is-fixed .nav .nav-links a { color: rgba(255,255,255,0.8); }
.page-home .header-stack.is-fixed .nav .nav-links a:hover { color: var(--white); }
.page-home .header-stack.is-fixed .nav .nav-phone { color: rgba(255,255,255,0.6); }
.page-home .header-stack.is-fixed .nav .nav-cta {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.page-home .header-stack.is-fixed .nav .nav-cta:hover { background: transparent; color: var(--white); }
.page-home .header-stack.is-fixed .nav .menu-toggle span { background: var(--white); }

/* Hero on homepage should extend up under the absolute header */
.page-home .hero:not(.hero-centered) { padding-top: clamp(7rem, 14vw, 11rem); }

/* ----- Announcement bar (very top) ----- */
/* Temporarily hidden — remove `display:none;` to reinstate */
.announcement-bar {
  display: none;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--border);
}

.announcement-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.announcement-track span { flex-shrink: 0; }
.announcement-track .dot { opacity: 0.4; }
.announcement-bar:hover .announcement-track { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ----- Reviews rolling bar (replaces large reviews section) ----- */
.reviews-bar {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}

.reviews-bar-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0;
  max-width: 100%;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0 var(--gutter);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

.reviews-rating .num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.reviews-rating .stars {
  display: inline-flex;
  gap: 2px;
  color: var(--black);
}
.reviews-rating .stars svg { width: 14px; height: 14px; }

.reviews-rating .label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.reviews-marquee::before, .reviews-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-elev), transparent); }
.reviews-marquee::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg-elev)); }

.reviews-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
  padding: 0 1.5rem;
}

.reviews-marquee:hover .reviews-track { animation-play-state: paused; }

.review-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.review-pill .pstars {
  display: inline-flex;
  gap: 1px;
  color: var(--black);
  flex-shrink: 0;
}
.review-pill .pstars svg { width: 12px; height: 12px; }

.review-pill .text {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.review-pill .author {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .reviews-bar-inner { grid-template-columns: 1fr; }
  .reviews-rating {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 0.5rem var(--gutter) 1rem;
    justify-content: center;
  }
  .reviews-marquee { padding-top: 1rem; }
  .review-pill .text { font-size: 0.85rem; }
}

/* ----- Top utility bar (stays black) ----- */
.topbar {
  background: var(--bg-dark);
  color: var(--text-muted-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 0;
  position: relative;
  z-index: 101;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-left { color: var(--text-dim-dark); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.topbar-right a { color: var(--text-muted-dark); transition: color 0.3s var(--ease); }
.topbar-right a:hover { color: var(--white); }
.topbar-right .dot { color: var(--text-dim-dark); }

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-right { gap: 1rem; font-size: 0.68rem; }
}

/* ----- Navigation ----- */
.nav {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border 0.4s var(--ease);
  background: rgba(11,11,11,0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav.scrolled {
  background: rgba(11,11,11,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

.nav.on-dark { background: var(--white); color: var(--black); }
.nav.on-dark.scrolled { background: rgba(255, 255, 255, 0.97); color: var(--black); }

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

.logo span {
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: inline-block;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  transition: height 0.3s var(--ease);
  filter: brightness(0) invert(1);
}

.footer .logo img { height: 48px; }
.nav.scrolled .logo img { height: 28px; }

/* Logo sits flush with the left screen edge in an imaginary square */
.nav-inner .logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: calc(-1 * var(--gutter));
  padding: 0.85rem var(--gutter);
  min-width: 100px;
  min-height: 60px;
}

@media (max-width: 960px) {
  .logo img { height: 36px; }
  .nav.scrolled .logo img { height: 28px; }
  .footer .logo img { height: 42px; }
}

@media (max-width: 600px) {
  .logo img { height: 32px; }
  .nav.scrolled .logo img { height: 24px; }
  .footer .logo img { height: 36px; }

  .nav-inner .logo { min-width: 70px; min-height: 50px; padding: 0.5rem var(--gutter); }
  .page-home .nav { padding-top: 0.6rem; padding-bottom: 0.6rem; }
  .page-home .hero { padding-top: 9rem; }
  .hero-centered .hero-tagline { margin-top: 1.25rem; }
  .hero-centered .h-display { margin-top: 0.5rem; }
}

/* Center nav links */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  padding: 0.6rem 0;
  transition: opacity 0.3s var(--ease);
  color: inherit;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 24px; }

/* Right side: phone + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
}

.nav-phone svg { width: 14px; height: 14px; opacity: 0.7; }

.nav-cta {
  padding: 0.8rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  border-radius: 50px;
}

.nav-cta::after {
  content: "→";
  letter-spacing: 0;
  transition: transform 0.3s var(--ease);
}

.nav-cta:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.nav-cta:hover::after { transform: translateX(3px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: all 0.3s var(--ease);
}

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

@media (max-width: 1080px) {
  .nav-phone { display: none; }
}

/* Mobile menu — hidden by default everywhere */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  color: #fff;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.45s;
  overflow-y: auto;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: calc(72px + env(safe-area-inset-top, 0px) + 1.5rem) 28px calc(2rem + env(safe-area-inset-bottom, 0px));
}

/* Nav items */
.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  color: #fff;
  transition: padding-left 0.25s ease;
}

.mobile-nav-item:hover { padding-left: 6px; }

.mobile-nav-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.22);
  min-width: 22px;
  font-family: var(--font-sans);
}

.mobile-nav-label {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.mobile-nav-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.25);
  transition: transform 0.2s ease, color 0.2s;
}

.mobile-nav-item:hover .mobile-nav-arrow {
  transform: translateX(4px);
  color: rgba(255,255,255,0.6);
}

/* Reserve CTA */
.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 1.5rem;
  padding: 1rem 2rem;
  background: #fff;
  color: #0b0b0b;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-cta:hover { background: rgba(255,255,255,0.85); }

/* Contact footer */
.mobile-menu .mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu .mobile-contact a,
.mobile-menu .mobile-contact span {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.mobile-menu .mobile-contact a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 960px) {
  .nav-inner { grid-template-columns: 1fr auto; gap: 1rem; }
  .nav-inner > nav, .nav-right { display: none; }
  .menu-toggle { display: flex; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: flex-end;
  color: var(--text-on-dark);
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  isolation: isolate;
}

.hero > .container { position: relative; z-index: 2; }
.hero > .hero-content { position: relative; z-index: 2; }

.hero h1, .hero h2, .hero h3 { color: var(--text-on-dark); }
.hero .eyebrow { color: var(--text-muted-dark); }
.hero .hero-tagline { color: var(--text-muted-dark); }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: grayscale(0%) contrast(1.05) brightness(0.85);
  transform: scale(1.05);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.7) 100%);
}

.hero-content { width: 100%; }

.hero-content .eyebrow { color: var(--grey-300); margin-bottom: 1.5rem; }

.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 50ch;
  margin: 1.5rem 0 2.5rem;
  font-weight: 500;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-meta {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-meta::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--text-muted);
}

@media (max-width: 768px) { .hero-meta { display: none; } }

/* ----- Page hero (sub-pages) ----- */
.page-hero {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0%) brightness(0.45);
  opacity: 0.55;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero { color: var(--text-on-dark); }
.page-hero h1 { max-width: 18ch; color: var(--text-on-dark); }
.page-hero .eyebrow { color: var(--text-muted-dark); margin-bottom: 1.5rem; }
.page-hero p { color: var(--text-muted-dark); max-width: 60ch; margin-top: 1.5rem; font-weight: 500; }

/* ----- Grid ----- */
.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ----- Cards ----- */
.card {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--text);
}

.card-body h3 { color: var(--text); }
.card-body p { color: var(--text-muted); }

.card-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: transform 0.8s var(--ease);
}

.card:hover .card-image img { transform: scale(1.04); }

.card-image-wide { aspect-ratio: 16 / 11; }

.card-body { padding: 1.75rem 0 0; }

.card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-body p { font-size: 0.95rem; }

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}

/* ----- Service cards (homepage) ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  min-height: 320px;
}

.service-card .service-image {
  position: relative;
  overflow: hidden;
  background: var(--grey-100);
}

.service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: transform 0.7s var(--ease);
}

.service-card:hover .service-image img { transform: scale(1.04); }

.service-card .service-body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
}

.service-card .service-body h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
}

.service-card .service-body p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.service-card .service-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.service-card .service-actions .btn {
  padding: 0.7rem 1.1rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  flex: 1 1 0;
  min-width: 0;
}

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

@media (max-width: 600px) {
  .service-card { grid-template-columns: 1fr; min-height: 0; }
  .service-card .service-image { aspect-ratio: 16 / 10; }
  .service-card .service-actions .btn { padding: 0.7rem 0.8rem; }
}

/* ----- Service block (services.html page rows) ----- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.service-row:last-child { border-bottom: 1px solid var(--border); }

.service-row .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.service-row h3 { margin-bottom: 1rem; }

@media (max-width: 768px) {
  .service-row { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
}

/* ----- Stats ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.75rem;
}

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

/* ----- Testimonials ----- */
.testimonial {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.testimonial blockquote::before { content: "“"; }
.testimonial blockquote::after { content: "”"; }

.testimonial cite {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ----- Hero video bg ----- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%) contrast(1.05) brightness(0.75);
  z-index: 0;
  background: #000;
}

/* On portrait phones, fill height; on desktop, fill width (already cover) */
@media (max-aspect-ratio: 1/1) {
  .hero-video { object-position: center; }
}

/* ----- Hero cinematic bg (fallback when no video) ----- */
.hero-cinema {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.cinema-frame {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0%) contrast(1.05) brightness(0.55);
  opacity: 0;
  animation: cinemaSlide 27s infinite;
  will-change: opacity, transform;
}

.cinema-frame:nth-child(1) { animation-delay: 0s; }
.cinema-frame:nth-child(2) { animation-delay: 9s; }
.cinema-frame:nth-child(3) { animation-delay: 18s; }

@keyframes cinemaSlide {
  0%   { opacity: 0; transform: scale(1) translate3d(0,0,0); }
  3%   { opacity: 1; }
  30%  { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.08) translate3d(-1%, 0, 0); }
  36%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.08) translate3d(-1%, 0, 0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.45) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .cinema-frame { animation: none; opacity: 1; }
  .cinema-frame:nth-child(2), .cinema-frame:nth-child(3) { display: none; }
}

/* ----- Service tabs (vertical white-box buttons → collapse to horizontal tabs) ----- */
.quick-form-prompt {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  display: block;
  margin-bottom: 0.25rem;
}

.quick-form[data-active="true"] .quick-form-prompt { display: none; }

.service-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  position: relative;
}

.service-tabs .tab {
  padding: 1.15rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  width: 100%;
}

.service-tabs .tab::after {
  content: "→";
  font-weight: 500;
  letter-spacing: 0;
  font-size: 1rem;
  transition: transform 0.3s var(--ease);
}

.service-tabs .tab:hover {
  background: transparent;
  color: var(--white);
}

.service-tabs .tab:hover::after { transform: translateX(4px); }

/* Once a tab is selected, tabs collapse to compact horizontal underlined row */
.quick-form[data-active="true"] .service-tabs {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: -0.25rem 0 1rem;
  border-bottom: 1px solid var(--border);
}

.quick-form[data-active="true"] .service-tabs .tab {
  padding: 0.85rem 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  background: transparent;
  color: var(--text-dim);
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: block;
  text-align: center;
}

.quick-form[data-active="true"] .service-tabs .tab::after { display: none; }

.quick-form[data-active="true"] .service-tabs .tab:hover {
  background: transparent;
  color: var(--text-muted);
}

.quick-form[data-active="true"] .service-tabs .tab.active {
  color: var(--text);
  border-bottom-color: var(--white);
}

/* Map preview (renders below pickup/drop after selection) */
.form-map {
  width: 100%;
  height: 200px;
  display: none;
  background: var(--bg-dark-elev);
  border: 1px solid var(--border-dark);
  margin-top: 0.25rem;
}

.form-map.visible { display: block; }

/* Hide Google Places autocomplete attribution overlap */
.pac-container {
  font-family: var(--font-sans);
  border: 1px solid var(--border-dark);
  background: var(--bg-dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 1000;
  border-radius: 0;
}
.pac-item {
  padding: 0.6rem 0.85rem;
  border-top: 1px solid var(--border-dark);
  color: var(--text-on-dark);
  font-size: 0.9rem;
  cursor: pointer;
}
.pac-item:hover, .pac-item-selected { background: var(--bg-dark-elev); }
.pac-item-query { color: var(--text-on-dark); font-weight: 600; }
.pac-matched { color: var(--white); }
.pac-icon { filter: invert(1) opacity(0.6); }

/* Form fields hidden until a tab is selected */
.quick-form-fields { display: none; }

.quick-form[data-active="true"] .quick-form-fields {
  display: grid;
  gap: 1rem;
  animation: fieldsReveal 0.4s var(--ease);
}

@keyframes fieldsReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .service-tabs .tab { font-size: 0.75rem; padding: 1rem 1.2rem; letter-spacing: 0.18em; }
  .quick-form[data-active="true"] .service-tabs .tab { font-size: 0.58rem; padding: 0.7rem 0.2rem; }
}

/* ----- Hero (centered overlay style — Dubai reference) ----- */
.hero-centered {
  /* full-screen hero — iOS Safari safe */
  height: 100vh;
  height: -webkit-fill-available;
  height: 100dvh;
  height: var(--real-vh, 100dvh);
  min-height: 0 !important;
  /* override base .hero padding completely */
  padding: 0 var(--gutter) !important;
  display: flex;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-centered .hero-content {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: calc(72px + env(safe-area-inset-top, 0px) + 0.5rem);
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.hero-centered .hero-title-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .hero-centered { padding: 0 1rem !important; }
}

/* ----- Service highlights bar ----- */
.highlights-bar {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.highlight-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.highlight-icon svg { width: 20px; height: 20px; color: var(--white); }

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.highlight-text strong {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}
.highlight-text span {
  font-size: 0.78rem;
  color: var(--text-muted-dark);
}

@media (max-width: 768px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .highlight { justify-content: flex-start; }
}

/* ----- Fleet listing (one-by-one rows) ----- */
.fleet-listing { padding: 0; }

.fleet-listing-header {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
}

.fleet-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--border);
  min-height: clamp(380px, 50vw, 540px);
  background: var(--white);
  transition: background 0.4s var(--ease);
}

.fleet-row:last-child { border-bottom: 1px solid var(--border); }

.fleet-row .fleet-image {
  position: relative;
  overflow: hidden;
  background: var(--grey-100);
}

.fleet-row .fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: transform 0.7s var(--ease);
}

.fleet-row:hover .fleet-image > img { transform: scale(1.04); }

/* Multi-vehicle image grid (shows all models in a category) */
.fleet-image.multi {
  display: grid;
  gap: 2px;
  background: var(--border);
}
.fleet-image.multi.cols-2 { grid-template-columns: 1fr 1fr; }
.fleet-image.multi.cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.fleet-image.multi figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--grey-100);
}
.fleet-image.multi figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.fleet-row:hover .fleet-image.multi figure img { transform: scale(1.06); }

.fleet-image.multi figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

.fleet-image.multi figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.85rem 0.9rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.4vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  z-index: 2;
  text-align: center;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}

.fleet-image.multi figcaption::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 0 auto 0.55rem;
}

@media (max-width: 600px) {
  .fleet-image.multi figcaption { font-size: 0.85rem; padding: 0.6rem 0.4rem 0.7rem; letter-spacing: 0.02em; }
  .fleet-image.multi figcaption::before { width: 16px; margin-bottom: 0.4rem; }
}

.fleet-row .fleet-info {
  padding: clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.fleet-row .fleet-info h3 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
}

.fleet-row .fleet-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 50ch;
}

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  list-style: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.fleet-specs li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fleet-specs li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--text); }

.fleet-includes {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.fleet-includes li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fleet-includes li::before {
  content: "✓";
  color: var(--black);
  font-weight: 700;
  font-size: 0.9rem;
}

.fleet-note {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  font-style: italic;
  margin-top: -0.25rem;
}

.fleet-row.featured .fleet-note { color: var(--text-dim-dark); }

.fleet-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.fleet-actions .btn {
  padding: 0.85rem 1.4rem;
  font-size: 0.7rem;
  flex: 1 1 auto;
  min-width: 120px;
}

.fleet-actions .btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.fleet-actions .btn-icon svg { width: 14px; height: 14px; }

/* Alternate layout (image right) */
.fleet-row.alternate .fleet-image { order: 2; }
.fleet-row.alternate .fleet-info { order: 1; }

/* Featured USP card (dark inverted) */
.fleet-row.featured {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  border: 0;
  position: relative;
}
.fleet-row.featured + .fleet-row { border-top: 0; }

.fleet-row.featured .fleet-info h3 { color: var(--text-on-dark); }
.fleet-row.featured .fleet-desc { color: var(--text-muted-dark); }
.fleet-row.featured .fleet-specs { border-color: var(--border-dark); color: var(--text-on-dark); }
.fleet-row.featured .fleet-specs li { color: var(--text-on-dark); }
.fleet-row.featured .fleet-specs li::before { background: var(--white); }
.fleet-row.featured .fleet-includes li { color: var(--text-muted-dark); }
.fleet-row.featured .fleet-includes li::before { color: var(--white); }
.fleet-row.featured .btn { background: var(--white); color: var(--black); border-color: var(--white); }
.fleet-row.featured .btn:hover { background: transparent; color: var(--white); }
.fleet-row.featured .btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.fleet-row.featured .btn-outline:hover { background: var(--white); color: var(--black); }

.fleet-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  color: var(--black);
  padding: 0.55rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 768px) {
  .fleet-row, .fleet-row.alternate { grid-template-columns: 1fr; min-height: 0; }
  .fleet-row .fleet-image { aspect-ratio: 16 / 10; }
  .fleet-row.alternate .fleet-image { order: 0; }
  .fleet-row.alternate .fleet-info { order: 0; }
  .fleet-row .fleet-info { padding: 2rem; }

  /* Multi-vehicle cards: stack thumbnails vertically with proper landscape aspect */
  .fleet-row .fleet-image.multi { aspect-ratio: auto; }
  .fleet-image.multi.cols-2,
  .fleet-image.multi.cols-3 { grid-template-columns: 1fr; gap: 4px; }
  .fleet-image.multi figure { aspect-ratio: 16 / 9; }
  .fleet-image.multi figcaption { font-size: 0.9rem; padding: 0.7rem 0.5rem 0.85rem; }
  .fleet-image.multi figcaption::before { width: 18px; margin-bottom: 0.45rem; }
}

/* ----- Quick form (hero, legacy — kept for booking page) ----- */
.hero-with-form {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  min-height: auto;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 440px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero-with-form .h-display { font-size: clamp(2.25rem, 6.5vw, 5.5rem); }
.hero-with-form .hero-tagline { margin: 1rem 0 1.5rem; }

.quick-form {
  background: transparent;
  color: var(--text);
  padding: 0;
  display: grid;
  gap: 0.85rem;
  border: 0;
  box-shadow: none;
}

.quick-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.quick-form .field { margin: 0; }

.quick-form .field input,
.quick-form .field select {
  padding: 0.7rem 0;
  font-size: 0.95rem;
}

.quick-form .form-row { gap: 1rem; }

.quick-form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero-with-form { padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero-form { order: 0; }
}

/* ----- Reviews ----- */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.review-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--black);
}

.review-stars.on-dark { color: var(--white); }
.review-stars svg { width: 18px; height: 18px; }

.review-rating {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
}

.review-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.review-card {
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.review-card:hover { border-color: var(--black); transform: translateY(-3px); }

.review-card p {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author-info { display: flex; flex-direction: column; }
.review-author-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.review-author-meta { font-size: 0.75rem; color: var(--text-dim); }

.google-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.google-mark::before {
  content: "G";
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
}

/* ----- Instagram ----- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin: 3rem 0;
}

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--grey-100);
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.ig-tile:hover img { transform: scale(1.06); filter: grayscale(0%); }

@media (max-width: 768px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

.ig-handle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

/* ----- Forms ----- */
.form { display: grid; gap: 1.75rem; max-width: 720px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.field { position: relative; }

.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  border: 0;
  border-bottom: 1px solid var(--grey-300);
  background: transparent;
  color: var(--text);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.field input::placeholder, .field textarea::placeholder { color: var(--grey-500); }

.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--black); }

.field textarea { min-height: 120px; resize: vertical; padding: 0.85rem 0; }

.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23000000' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.5rem center; }

.field select option { background: var(--white); color: var(--black); }

/* Form fields in dark contexts (hero, section-dark) */
.hero .field input, .hero .field select, .hero .field textarea,
.section-dark .field input, .section-dark .field select, .section-dark .field textarea {
  color: var(--text-on-dark);
  border-bottom-color: var(--border-dark);
}
.hero .field input::placeholder, .section-dark .field input::placeholder { color: var(--text-dim-dark); }
.hero .field input:focus, .hero .field select:focus, .hero .field textarea:focus,
.section-dark .field input:focus { border-bottom-color: var(--white); }
.hero .field label, .section-dark .field label { color: var(--text-dim-dark); }
.hero .field select, .section-dark .field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' fill='none'/%3E%3C/svg%3E");
}
.hero .field select option, .section-dark .field select option { background: #000; color: #fff; }
.hero .field input[type="date"], .hero .field input[type="time"],
.section-dark .field input[type="date"], .section-dark .field input[type="time"] { color-scheme: dark; }

/* ----- Cities list ----- */
.cities-list { list-style: none; }

.cities-list li {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: padding 0.4s var(--ease);
}

.cities-list li:last-child { border-bottom: 1px solid var(--border); }

.cities-list li:hover { padding-left: 1rem; }

.cities-list .num {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.cities-list .name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1;
}

.cities-list .arrow {
  font-size: 1.5rem;
  color: var(--text-dim);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}

.cities-list li:hover .arrow { transform: translateX(8px); color: var(--white); }

@media (max-width: 640px) {
  .cities-list li { grid-template-columns: auto 1fr; gap: 1rem; }
  .cities-list .arrow { display: none; }
}

/* ----- WhatsApp float ----- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.3s var(--ease);
}

.wa-float:hover { transform: scale(1.08); }

.wa-float svg { width: 26px; height: 26px; }

/* ----- Footer ----- */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: clamp(4rem, 8vw, 6rem) 0 2.5rem;
}

.footer .logo, .footer h4, .footer-tagline { color: var(--text-on-dark); }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-dark);
}

@media (max-width: 960px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }

.footer .logo { color: var(--white); margin-bottom: 1.5rem; }

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim-dark);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: grid; gap: 0.6rem; }

.footer-col a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  transition: color 0.3s var(--ease);
}

.footer-col a:hover { color: var(--white); }

.footer-tagline {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  max-width: 32ch;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim-dark);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: var(--text-dim-dark); transition: color 0.3s var(--ease); }
.footer-bottom a:hover { color: var(--white); }

/* ----- Animations ----- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ----- Utilities ----- */
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.section-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
@media (max-width: 768px) { .section-header { grid-template-columns: 1fr; gap: 1.5rem; } }

.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 2.5rem; } .mt-6 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-6 { margin-bottom: 3rem; }
.text-center { text-align: center; }
