/*
Theme Name: Saber West
Theme URI: https://saberwest.com/
Author: Saber West
Description: Custom WordPress theme for Saber West Limo & Bus Service.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: saberwest
*/

:root {
  --font-body: "Geist", sans-serif;
  --font-display: "PP Fragment", "Geist", sans-serif;
  --font-accent: "Gravitas One", "Rockwell", serif;
  --black: #050505;
  --black-2: #0b0b0d;
  --charcoal: #151518;
  --panel: #101115;
  --panel-2: #181a20;
  --white: #ffffff;
  --mist: #f5f6f8;
  --silver: #cfd1d4;
  --silver-2: #8e9298;
  --gold: #c6a15a;
  --gold-2: #e0c78c;
  --red: #96753a;
  --ink: #0d1117;
  --line: rgba(198, 161, 90, 0.34);
  --line-soft: rgba(255, 255, 255, 0.12);
  --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.32);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.2);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--mist);
  line-height: 1.55;
  letter-spacing: 0.01em;
  background:
    radial-gradient(circle at 84% 2%, rgba(198, 161, 90, 0.18), transparent 32%),
    radial-gradient(circle at 8% 70%, rgba(198, 161, 90, 0.08), transparent 38%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 24px),
    linear-gradient(180deg, #050505 0%, #101115 42%, #060606 100%);
}

body.mobile-menu-open,
body.whatsapp-drawer-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(1.85rem, 3.25vw, 3.25rem);
}

h3 {
  font-size: clamp(1.08rem, 1.9vw, 1.55rem);
}

p {
  margin: 0;
  color: #cfd3d8;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.55rem 0.9rem;
  z-index: 999;
}

.skip-link:focus {
  left: 0.5rem;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--gold), var(--red), var(--gold-2));
}

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.section-pad {
  padding: clamp(3.5rem, 7vw, 6.8rem) 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(198, 161, 90, 0.24);
  backdrop-filter: blur(14px) saturate(1.15);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(10, 10, 12, 0.88));
}

.site-header .container {
  width: min(1420px, 98.7vw);
}

.nav-shell {
  min-height: 106px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.logo-link {
  justify-self: start;
}

.logo-link img {
  width: clamp(122px, 11vw, 166px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.nav-desktop a {
  font-family: var(--font-display);
  font-weight: 800;
  color: #e9eaec;
  font-size: 0.92rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  position: relative;
  padding: 0.16rem 0.32rem;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  right: 0.3rem;
  bottom: -0.42rem;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
}

.license-glass {
  position: relative;
  white-space: nowrap;
  padding: 0.52rem 0.8rem;
  clip-path: polygon(0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
  border: 1px solid rgba(198, 161, 90, 0.56);
  background: linear-gradient(120deg, rgba(198, 161, 90, 0.16), rgba(224, 199, 140, 0.22), rgba(198, 161, 90, 0.09));
  color: #fff6d9;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  font-weight: 900;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.72rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn::after {
  content: "";
  position: absolute;
  inset: -160% auto -160% -38%;
  width: 30%;
  transform: translate3d(-190%, 0, 0) rotate(20deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  pointer-events: none;
  transition: transform 620ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.btn:hover::after {
  transform: translate3d(520%, 0, 0) rotate(20deg);
}

.btn-solid {
  color: #0a0a0a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 58%, #ffffff);
  box-shadow: 0 12px 26px rgba(198, 161, 90, 0.28);
}

.btn-outline {
  color: #f5f6f8;
  border-color: rgba(198, 161, 90, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.btn-outline:hover {
  border-color: rgba(198, 161, 90, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.btn-light {
  color: var(--black);
  background: #ffffff;
}

.btn-large {
  padding: 0.88rem 1.38rem;
}

.menu-toggle,
.mobile-nav,
.mobile-sticky-cta {
  display: none;
}

.mobile-quick-links {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.motion-layer {
  will-change: translate;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2rem, 5vw, 4rem);
  --spotlight-x: 68%;
  --spotlight-y: 18%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -12% -18% auto -18%;
  height: 70%;
  background: linear-gradient(180deg, rgba(198, 161, 90, 0.12), rgba(198, 161, 90, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 26px);
  mix-blend-mode: screen;
  opacity: 0.26;
  animation: heroGridSweep 18s linear infinite;
  pointer-events: none;
}

.hero-noise,
.hero-beams,
.hero-gridline,
.hero-spotlight {
  position: absolute;
  pointer-events: none;
}

.hero-noise {
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(198, 161, 90, 0.055) 0, rgba(198, 161, 90, 0.055) 1px, transparent 1px, transparent 19px);
}

.hero-beams {
  inset: -44% -28% -38% -28%;
  background: conic-gradient(from 220deg at 68% 18%, rgba(198, 161, 90, 0.22), rgba(198, 161, 90, 0.1), rgba(198, 161, 90, 0.2));
  opacity: 0.62;
  filter: blur(18px);
  animation: beamSweep 22s linear infinite;
}

.hero-gridline {
  width: min(1050px, 90vw);
  height: min(1050px, 90vw);
  right: -18%;
  top: -35%;
  background: radial-gradient(circle, rgba(198, 161, 90, 0.13), rgba(198, 161, 90, 0));
  animation: drift 12s ease-in-out infinite alternate;
}

.hero-spotlight {
  inset: -10% -10% -12% -10%;
  background: radial-gradient(230px circle at var(--spotlight-x) var(--spotlight-y), rgba(224, 199, 140, 0.18), rgba(224, 199, 140, 0) 72%);
  mix-blend-mode: screen;
  opacity: 0.48;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-areas:
    "copy panel"
    "proof panel";
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  isolation: isolate;
}

.hero-copy,
.hero-panel,
.solution-card,
.fleet-card,
.coverage-card,
.flow-card,
.quote-wall blockquote,
.contact-form,
.contact-copy,
.seo-article,
.booking-placeholder,
.blog-card {
  min-width: 0;
  border-radius: 0;
  clip-path: polygon(0 16px, 16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px));
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(18, 19, 23, 0.95), rgba(10, 10, 12, 0.9));
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  grid-area: copy;
  display: grid;
  gap: 1.15rem;
  padding: clamp(1rem, 2.6vw, 1.45rem);
  border-color: rgba(198, 161, 90, 0.34);
  overflow: hidden;
}

.mobile-top-image-bubble {
  display: none;
}

.hero-title {
  font-size: clamp(2.15rem, 5.25vw, 4.6rem);
  line-height: 0.96;
  text-shadow: 0 20px 38px rgba(0, 0, 0, 0.4);
}

.hero-title span {
  display: block;
}

.hero-title span:last-child {
  color: var(--gold);
  font-family: var(--font-accent);
  font-size: 0.56em;
  letter-spacing: 0.035em;
  text-transform: none;
}

.hero-lead {
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  max-width: 62ch;
}

.hero-badges,
.hero-cta-row,
.stack-chips,
.whatsapp-actions,
.planner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-badges span,
.solution-tag,
.stack-chips span {
  width: max-content;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
  color: #f3ecdb;
  border: 1px solid rgba(198, 161, 90, 0.4);
  background: linear-gradient(145deg, rgba(198, 161, 90, 0.16), rgba(198, 161, 90, 0.07));
  clip-path: polygon(0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
  padding: 0.42rem 0.62rem;
}

.hero-panel {
  grid-area: panel;
  padding: clamp(1rem, 2.6vw, 1.45rem);
  display: grid;
  gap: 0.9rem;
  border-color: rgba(198, 161, 90, 0.42);
  overflow: hidden;
}

.panel-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}

.panel-monogram {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  padding: 0.34rem 0.6rem;
  clip-path: polygon(0 7px, 7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px));
}

.panel-brand p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--gold);
}

.panel-feature {
  position: relative;
  border: 1px solid rgba(150, 117, 58, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 161, 90, 0.12), transparent 56%),
    linear-gradient(180deg, #ffffff, #fbf8f1);
  clip-path: polygon(0 14px, 14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px));
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.panel-feature-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 0.72rem;
  color: #96753a;
}

.panel-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.panel-feature-list li {
  position: relative;
  padding-left: 1.3rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 600;
  font-size: 0.98rem;
  color: #10131a;
}

.panel-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #c6a15a, #96753a);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.panel-stats div,
.proof-cluster div {
  border: 1px solid rgba(198, 161, 90, 0.24);
  background: rgba(255, 255, 255, 0.055);
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
  padding: 0.72rem;
}

.panel-stats strong,
.proof-cluster strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.panel-stats span,
.proof-cluster p {
  font-size: 0.84rem;
  color: var(--silver);
}

.proof-cluster {
  grid-area: proof;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.signal-bar {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(198, 161, 90, 0.26);
  border-bottom: 1px solid rgba(198, 161, 90, 0.26);
  background: linear-gradient(180deg, rgba(20, 20, 22, 0.96), rgba(6, 6, 6, 0.94));
}

.signal-bar::before,
.signal-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(48px, 8vw, 120px);
  pointer-events: none;
  z-index: 2;
}

.signal-bar::before {
  left: 0;
  background: linear-gradient(90deg, #090909, rgba(9, 9, 9, 0));
}

.signal-bar::after {
  right: 0;
  background: linear-gradient(270deg, #090909, rgba(9, 9, 9, 0));
}

.signal-marquee {
  overflow: hidden;
}

.signal-track {
  display: flex;
  width: max-content;
  padding: 0.24rem 0;
  animation: signalRoll 18s linear infinite;
}

.signal-segment {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  min-width: 100vw;
  gap: clamp(1.1rem, 3.6vw, 3.2rem);
  flex: 0 0 auto;
  padding-inline: clamp(0.75rem, 3vw, 2.5rem);
}

.signal-word {
  flex: 0 0 auto;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: clamp(0.92rem, 1.5vw, 1.15rem);
  color: #10131a;
  white-space: nowrap;
}

.signal-dot {
  flex: 0 0 auto;
  font-size: 0.6rem;
  color: #96753a;
  transform: translateY(-1px);
}

.signal-bar {
  padding: 0.85rem 0;
}

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

.section-head {
  max-width: 880px;
  display: grid;
  gap: 0.78rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  position: relative;
  width: max-content;
  max-width: 100%;
  color: #f6f6f6;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: min(260px, 90%);
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red), transparent);
}

.solution-grid,
.fleet-grid,
.coverage-grid,
.flow-grid,
.blog-grid {
  display: grid;
  gap: 0.95rem;
}

.solution-grid,
.fleet-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coverage-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-card,
.fleet-card,
.coverage-card,
.blog-card {
  padding: clamp(1rem, 2.2vw, 1.3rem);
  display: grid;
  gap: 0.72rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-card:hover,
.fleet-card:hover,
.coverage-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 161, 90, 0.58);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.36);
}

.solution-card p,
.fleet-card p,
.coverage-card p,
.flow-card p,
.seo-article p,
.blog-card p {
  color: #1f2937;
}

.solution-card ul,
.coverage-card ul {
  display: grid;
  gap: 0.36rem;
}

.solution-card li::marker,
.coverage-card li::marker {
  color: var(--gold);
}

.text-link {
  width: max-content;
  color: var(--gold);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 900;
  position: relative;
}

.fleet-section,
.coverage-section,
.faq-section {
  border-top: 1px solid rgba(198, 161, 90, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(198, 161, 90, 0.035) 0, rgba(198, 161, 90, 0.035) 1px, transparent 1px, transparent 24px);
}

.fleet-card {
  align-content: start;
}

.fleet-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.45));
}

.fleet-card:has(img[src$=".jpg"]) img {
  object-fit: cover;
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
}

.dark-flow {
  background:
    radial-gradient(circle at 92% 0%, rgba(198, 161, 90, 0.22), transparent 42%),
    linear-gradient(160deg, #050505 0%, #15151a 52%, #1b1b20 100%);
  position: relative;
  overflow: hidden;
}

.flow-head p,
.flow-head h2,
.flow-head .eyebrow {
  color: #fff5d4;
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.flow-grid::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(198, 161, 90, 0.74), rgba(255, 255, 255, 0.18));
}

.flow-card {
  position: relative;
  padding: 0.95rem;
  display: grid;
  gap: 0.58rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.flow-card span {
  width: 34px;
  height: 34px;
  clip-path: polygon(0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--black);
  background: var(--gold);
  z-index: 1;
}

.stack-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(198, 161, 90, 0.16), transparent 42%),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 2px, transparent 2px, transparent 28px),
    #0a0a0b;
}

.stack-layout,
.contact-layout,
.booking-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.stack-copy,
.contact-copy,
.booking-copy {
  display: grid;
  gap: 0.86rem;
}

.quote-wall {
  display: grid;
  gap: 0.7rem;
}

.quote-wall blockquote {
  margin: 0;
  padding: 0.92rem;
  font-family: var(--font-display);
  color: var(--mist);
}

.quote-wall cite {
  display: block;
  margin-top: 0.48rem;
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.86rem;
}

.seo-depth {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 95% 15%, rgba(198, 161, 90, 0.08), transparent 46%);
}

.seo-article,
.booking-placeholder {
  padding: clamp(1rem, 2.6vw, 1.55rem);
  display: grid;
  gap: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  clip-path: polygon(0 12px, 12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(18, 19, 23, 0.95), rgba(10, 10, 12, 0.9));
  box-shadow: var(--shadow-md);
  padding: 0.85rem 0.95rem;
  transition: transform 200ms ease, border-color 200ms ease;
}

.faq-item:hover {
  transform: translateX(4px);
  border-color: rgba(198, 161, 90, 0.58);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--mist);
}

.faq-item p {
  margin-top: 0.56rem;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(198, 161, 90, 0.06)),
    radial-gradient(circle at 86% 20%, rgba(198, 161, 90, 0.1), transparent 46%);
}

.contact-copy,
.contact-form {
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.contact-list {
  display: grid;
  gap: 0.28rem;
}

.contact-list strong {
  color: var(--white);
}

.contact-list a,
.coverage-card a {
  color: var(--gold);
  font-weight: 900;
}

.contact-form,
.quote-form {
  display: grid;
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.34rem;
  font-size: 0.74rem;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 900;
  color: #f0f0f0;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(198, 161, 90, 0.28);
  border-radius: 0;
  clip-path: polygon(0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
  padding: 0.72rem 0.82rem;
  font: inherit;
  color: var(--mist);
  background: rgba(255, 255, 255, 0.06);
}

input::placeholder,
textarea::placeholder {
  color: #8f949a;
}

.site-footer {
  background:
    radial-gradient(circle at 110% -20%, rgba(198, 161, 90, 0.14), transparent 36%),
    linear-gradient(180deg, #050505, #000000);
  color: #c6c9ce;
  padding: 2.2rem 0 4.4rem;
  border-top: 1px solid rgba(198, 161, 90, 0.2);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.75fr 0.95fr;
  gap: 1rem;
}

.footer-layout img {
  width: 150px;
  margin-bottom: 0.5rem;
}

.footer-layout h3 {
  color: #f4f4f4;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.footer-layout a,
.footer-layout p {
  color: #c6c9ce;
  display: block;
  margin-bottom: 0.35rem;
}

.copyright {
  width: min(var(--container), 92vw);
  margin: 1rem auto 0;
  border-top: 1px solid rgba(198, 161, 90, 0.2);
  padding-top: 0.92rem;
  font-size: 0.87rem;
  color: #989da4;
  display: grid;
  gap: 0.35rem;
}

.copyright p {
  margin: 0;
}

.copyright-legal {
  font-size: 0.8rem;
  color: #7a8088;
}

.footer-link-btn {
  display: block;
  margin-bottom: 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: #c6c9ce;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.footer-link-btn:hover {
  color: var(--gold);
}

.whatsapp-drawer-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  position: fixed;
  right: 0;
  top: 50vh;
  width: 126px;
  min-height: 40px;
  border: 1px solid rgba(37, 211, 102, 0.65);
  border-right: 0;
  border-radius: 0;
  clip-path: polygon(0 10px, 10px 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0.42rem 0.5rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  z-index: 93;
  transform: translateY(-50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.whatsapp-drawer-toggle strong {
  font-size: 0.9rem;
  line-height: 1;
}

.whatsapp-card {
  position: fixed;
  right: 0;
  top: var(--whatsapp-drawer-top, 94px);
  width: min(92vw, 390px);
  max-height: calc(100vh - var(--whatsapp-drawer-top, 94px) - 0.6rem);
  overflow-y: auto;
  border: 1px solid rgba(37, 211, 102, 0.42);
  background: linear-gradient(150deg, rgba(16, 22, 18, 0.98), rgba(7, 8, 8, 0.96));
  box-shadow: var(--shadow-xl);
  clip-path: polygon(0 18px, 18px 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  padding: 0.92rem;
  display: grid;
  gap: 0.75rem;
  transform: translate3d(106%, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms cubic-bezier(0.2, 0.62, 0.2, 1), opacity 220ms ease;
  z-index: 92;
}

.whatsapp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.52rem;
}

.whatsapp-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #8cffb6;
  font-weight: 900;
}

.whatsapp-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.whatsapp-drawer-backdrop {
  display: block;
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 91;
}

body.whatsapp-drawer-open .whatsapp-card {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  pointer-events: auto;
}

body.whatsapp-drawer-open .whatsapp-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.whatsapp-drawer-open .whatsapp-drawer-toggle {
  opacity: 0;
  transform: translate(14px, -50%);
  pointer-events: none;
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  transition: opacity 680ms cubic-bezier(0.2, 0.64, 0.2, 1),
    transform 860ms cubic-bezier(0.2, 0.64, 0.2, 1),
    filter 860ms cubic-bezier(0.2, 0.64, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-bottom: 1px solid rgba(198, 161, 90, 0.2);
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 161, 90, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.page-hero .container {
  display: grid;
  gap: 1rem;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.booking-placeholder {
  min-height: 520px;
  align-content: center;
  justify-items: center;
  text-align: center;
  border-color: rgba(198, 161, 90, 0.42);
}

.embed-frame {
  width: min(720px, 100%);
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(198, 161, 90, 0.52);
  color: #f3ecdb;
  padding: 1.25rem;
  clip-path: polygon(0 16px, 16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  clip-path: polygon(0 12px, 12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
}

.blog-meta {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.blog-status {
  padding: 1rem;
  border: 1px solid rgba(198, 161, 90, 0.28);
  background: rgba(255, 255, 255, 0.05);
  clip-path: polygon(0 12px, 12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
  color: #1f2937;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

@keyframes mobileBubbleFade {
  0%, 26% { opacity: 1; }
  31%, 100% { opacity: 0; }
}

@keyframes fleetHeroSwap {
  0%, 21% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  26%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.985);
  }
}

@keyframes drift {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(7deg) scale(1.08); }
}

@keyframes beamSweep {
  from { transform: rotate(0deg) scale(1); }
  to { transform: rotate(360deg) scale(1.06); }
}

@keyframes heroGridSweep {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-26px, 0, 0); }
}

@media (max-width: 1120px) {
  .site-header .container {
    width: min(var(--container), 92vw);
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 98px;
  }

  .nav-desktop,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(198, 161, 90, 0.46);
    background: rgba(255, 255, 255, 0.07);
    color: var(--mist);
    font-weight: 900;
    padding: 0.55rem 0.95rem;
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    margin: 0;
    border-left: 1px solid rgba(198, 161, 90, 0.3);
    background: linear-gradient(180deg, #0b0b0d, #050505);
    box-shadow: -16px 0 34px rgba(0, 0, 0, 0.42);
    padding: 5.5rem 1rem 1rem;
    flex-direction: column;
    gap: 0.38rem;
    transform: translateX(105%);
    opacity: 0;
    transition: transform 260ms ease, opacity 200ms ease;
    z-index: 70;
    overflow-y: auto;
  }

  .mobile-nav.is-open {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }

  .mobile-nav a {
    font-weight: 900;
    color: var(--mist);
    border: 1px solid transparent;
    padding: 0.7rem 0.72rem;
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav a:last-child {
    margin-top: 0.4rem;
    text-align: center;
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
  }

  .hero-layout,
  .stack-layout,
  .contact-layout,
  .booking-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "panel"
      "proof";
  }

  .flow-grid,
  .solution-grid,
  .fleet-grid,
  .coverage-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), 94vw);
  }

  .section-pad {
    padding: 2.8rem 0;
  }

  .nav-shell {
    min-height: 82px;
    gap: 0.5rem;
    grid-template-columns: auto minmax(0, 1fr);
    padding-top: 0.3rem;
    padding-bottom: 0.2rem;
  }

  .logo-link img {
    width: clamp(92px, 25vw, 118px);
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: end;
    justify-self: end;
    gap: 0.34rem;
  }

  .mobile-sticky-cta a {
    min-height: 38px;
    padding: 0.5rem 0.68rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.68rem;
    line-height: 1;
    white-space: nowrap;
    text-transform: uppercase;
    clip-path: polygon(0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
  }

  .mobile-sticky-cta .dock-call {
    color: var(--black);
    background: var(--silver);
  }

  .mobile-sticky-cta .dock-quote {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
  }

  .hero {
    padding-top: 0.9rem;
  }

  .hero::before,
  .hero::after,
  .hero-noise,
  .hero-gridline,
  .hero-beams,
  .hero-spotlight {
    display: none;
  }

  .hero-layout {
    gap: 0.92rem;
  }

  .hero-copy {
    position: relative;
    padding: 1rem 0.92rem;
  }

  h1 {
    font-size: clamp(1.86rem, 8vw, 2.3rem);
  }

  .hero-title {
    padding-right: 0;
    font-size: clamp(1.82rem, 8vw, 2.28rem);
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-title span {
    overflow-wrap: anywhere;
  }

  .hero-title span:last-child {
    font-size: 0.5em;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-badges span:nth-child(n+3) {
    display: none;
  }

  .hero-main-cta {
    display: none;
  }

  .mobile-quick-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem;
  }

  .mobile-quick-links a {
    min-height: 44px;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px solid rgba(198, 161, 90, 0.34);
    background: rgba(255, 255, 255, 0.07);
    color: var(--mist);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    clip-path: polygon(0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
  }

  .mobile-quick-links a:first-child {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
  }

  .proof-cluster,
  .solution-grid,
  .fleet-grid,
  .flow-grid,
  .coverage-grid,
  .quote-wall,
  .blog-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .proof-cluster::-webkit-scrollbar,
  .solution-grid::-webkit-scrollbar,
  .fleet-grid::-webkit-scrollbar,
  .flow-grid::-webkit-scrollbar,
  .coverage-grid::-webkit-scrollbar,
  .quote-wall::-webkit-scrollbar,
  .blog-grid::-webkit-scrollbar {
    display: none;
  }

  .proof-cluster div,
  .solution-card,
  .fleet-card,
  .flow-card,
  .coverage-card,
  .quote-wall blockquote,
  .blog-card {
    scroll-snap-align: start;
  }

  .panel-stats {
    grid-template-columns: 1fr;
  }

  .fleet-hero {
    min-height: 170px;
  }

  .signal-track {
    animation-duration: 14s;
  }

  .signal-media {
    flex-basis: clamp(112px, 28vw, 150px);
    width: clamp(112px, 28vw, 150px);
  }

  .section-head {
    gap: 0.66rem;
    margin-bottom: 1.25rem;
  }

  .section-head h2 {
    width: 100%;
  }

  .stack-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.3rem;
    scrollbar-width: none;
  }

  .stack-chips::-webkit-scrollbar {
    display: none;
  }

  .stack-chips span {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  .whatsapp-drawer-toggle {
    width: 112px;
    min-height: 36px;
    font-size: 0.62rem;
    top: 54dvh;
  }

  .whatsapp-card {
    width: min(88vw, 348px);
  }
}

@media (max-width: 520px) {
  .nav-shell {
    gap: 0.32rem;
  }

  .logo-link img {
    width: clamp(82px, 23vw, 104px);
  }

  .mobile-sticky-cta {
    gap: 0.24rem;
  }

  .mobile-sticky-cta a {
    min-height: 34px;
    padding: 0.42rem 0.52rem;
    font-size: 0.62rem;
  }

  .hero-title {
    padding-right: 0;
  }

  .proof-cluster,
  .solution-grid,
  .fleet-grid,
  .flow-grid,
  .coverage-grid,
  .quote-wall,
  .blog-grid {
    grid-auto-columns: 90%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .motion-layer {
    translate: 0 0 !important;
  }
}

/* Professional light theme refresh */
body {
  color: #111827;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 52%, #ffffff 100%);
}

p {
  color: #4b5563;
}

h1,
h2,
h3,
.section-head h2 {
  color: #0b0f18;
  text-transform: none;
}

.eyebrow {
  color: #b77905;
}

.site-header {
  border-bottom-color: rgba(17, 24, 39, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.nav-desktop a,
.menu-toggle {
  color: #111827;
}

.license-glass {
  border-color: rgba(180, 121, 6, 0.24);
  background: #fff7e6;
  color: #8a5200;
  box-shadow: none;
}

.btn-solid {
  color: #111827;
  background: linear-gradient(135deg, #c6a15a, #ffd76a);
  box-shadow: 0 14px 30px rgba(180, 121, 6, 0.22);
}

.btn-outline {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.18);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.08);
}

.hero,
.fleet-section,
.coverage-section,
.professional-section,
.faq-section,
.contact-section,
.seo-depth,
.stack-section {
  background: #ffffff;
}

.hero::before {
  background: linear-gradient(180deg, rgba(198, 161, 90, 0.12), rgba(198, 161, 90, 0));
}

.hero::after,
.hero-noise {
  opacity: 0.28;
}

.hero-copy,
.hero-panel,
.solution-card,
.fleet-card,
.coverage-card,
.flow-card,
.quote-wall blockquote,
.contact-form,
.contact-copy,
.seo-article,
.booking-placeholder,
.blog-card,
.professional-copy,
.professional-media,
.professional-card-grid article {
  border-color: rgba(17, 24, 39, 0.11);
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
}

.hero-title,
.hero-title span:last-child {
  color: #111827;
  font-family: var(--font-display);
  text-shadow: none;
}

.hero-badges span,
.solution-tag,
.stack-chips span {
  color: #8a5200;
  border-color: rgba(180, 121, 6, 0.2);
  background: #fff7e6;
}

.panel-brand p,
.text-link,
.contact-list a,
.coverage-card a,
.quote-wall cite {
  color: #b77905;
}

.fleet-hero,
.signal-media {
  border-color: rgba(17, 24, 39, 0.1);
  background:
    radial-gradient(circle at 50% 28%, rgba(198, 161, 90, 0.16), transparent 46%),
    #f8fafc;
}

.panel-stats div,
.proof-cluster div {
  border-color: rgba(17, 24, 39, 0.1);
  background: #f8fafc;
}

.panel-stats strong,
.proof-cluster strong {
  color: #111827;
}

.panel-stats span,
.proof-cluster p,
.solution-card p,
.fleet-card p,
.coverage-card p,
.flow-card p,
.seo-article p,
.blog-card p {
  color: #1f2937;
}

.signal-bar {
  border-color: rgba(17, 24, 39, 0.08);
  background: #f8fafc;
}

.signal-bar::before {
  background: linear-gradient(90deg, #f8fafc, rgba(248, 250, 252, 0));
}

.signal-bar::after {
  background: linear-gradient(270deg, #f8fafc, rgba(248, 250, 252, 0));
}

.dark-flow {
  background: #111827;
}

.flow-head h2,
.flow-head p,
.flow-head .eyebrow,
.flow-card h3 {
  color: #ffffff;
}

.flow-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.flow-card p {
  color: #d1d5db;
}

.professional-section {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.professional-layout {
  display: grid;
  justify-items: center;
  text-align: center;
}

.professional-copy {
  width: min(880px, 100%);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.1rem;
  justify-items: center;
  border: 1px solid rgba(198, 161, 90, 0.26);
  background:
    radial-gradient(circle at 50% -20%, rgba(198, 161, 90, 0.14), transparent 55%),
    linear-gradient(160deg, rgba(20, 21, 26, 0.95), rgba(9, 9, 11, 0.92));
  clip-path: polygon(0 18px, 18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px));
}

.professional-section .section-head h2::after,
.professional-copy h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.professional-card-grid {
  width: 100%;
}

.professional-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.professional-card-grid article {
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
  clip-path: polygon(0 12px, 12px 0, calc(100% - 12px) 0, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0 calc(100% - 12px));
}

.professional-card-grid p {
  color: #4b5563;
}

input,
select,
textarea {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.14);
  background: #ffffff;
}

.site-footer {
  background: #0b0f18;
}

@media (max-width: 1120px) {
  .professional-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
  }

  .professional-card-grid {
    grid-template-columns: 1fr;
  }

  .professional-media,
  .professional-media img {
    min-height: 300px;
  }

  .hero-copy,
  .hero-panel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-copy {
    padding: 0.9rem 0.72rem;
  }

  .hero-title {
    font-size: clamp(1.55rem, 6.7vw, 1.86rem);
    line-height: 1.04;
  }

  .hero-title span {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-title span:last-child {
    font-size: 0.76em;
  }

  .hero-lead {
    max-width: 32ch;
    font-size: 0.9rem;
    line-height: 1.5;
    overflow-wrap: break-word;
  }

  .panel-brand {
    justify-content: flex-start;
  }

  .panel-brand p {
    font-size: 0.72rem;
  }

  .mobile-quick-links {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 0.35rem;
  }

  .mobile-quick-links a {
    min-width: 0;
    padding-inline: 0.5rem;
    font-size: 0.66rem;
    color: #111827;
    background: #ffffff;
  }
}

/* Luxury editorial refinement */
:root {
  --font-body: "Geist", sans-serif;
  --font-display: "PP Fragment", sans-serif;
  --luxury-black: #070707;
  --luxury-ink: #10131a;
  --luxury-muted: #525a66;
  --luxury-cream: #fbf8f1;
  --luxury-line: #e8e0d2;
  --luxury-gold: #96753a;
  --luxury-gold-bright: #c6a15a;
}

body {
  font-family: "Geist", sans-serif;
  color: var(--luxury-ink);
  background: #ffffff;
}

h1,
h2,
h3,
.hero-title,
.section-head h2,
.page-hero h1 {
  font-family: "PP Fragment", sans-serif;
  font-weight: 400;
  letter-spacing: 0.25px;
  line-height: 1.02;
  text-transform: none;
  text-wrap: balance;
  overflow-wrap: normal;
}

p,
li,
label,
input,
select,
textarea,
button,
a {
  font-family: "Geist", sans-serif;
}

h1 {
  font-size: clamp(3rem, 6.6vw, 6.4rem);
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.65rem);
}

h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
}

p {
  color: var(--luxury-muted);
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(16, 19, 26, 0.08);
  box-shadow: 0 18px 46px rgba(16, 19, 26, 0.08);
}

.nav-desktop a {
  color: var(--luxury-ink);
  font-weight: 800;
}

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(198, 161, 90, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--luxury-cream) 100%);
}

.hero-copy {
  background:
    radial-gradient(circle at 88% 10%, rgba(198, 161, 90, 0.2), transparent 34%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 62%, #050505 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 90px rgba(7, 7, 7, 0.34);
}

.hero-copy .eyebrow,
.hero-copy .hero-lead,
.hero-copy .hero-badges span {
  color: #f8f1e1;
}

.hero-title,
.hero-title span:last-child {
  color: #ffffff;
}

.hero-title span:last-child {
  color: var(--luxury-gold-bright);
  font-size: 0.52em;
}

.hero-lead {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
}

.hero-badges span {
  border-color: rgba(198, 161, 90, 0.35);
  background: rgba(198, 161, 90, 0.12);
}

.hero-panel,
.solution-card,
.fleet-card,
.coverage-card,
.contact-form,
.contact-copy,
.seo-article,
.blog-card,
.professional-copy,
.professional-media,
.professional-card-grid article,
.quote-wall blockquote,
.proof-cluster div,
.panel-stats div {
  background: #ffffff;
  border-color: var(--luxury-line);
  box-shadow: 0 24px 70px rgba(16, 19, 26, 0.1);
}

.hero-panel {
  background:
    linear-gradient(180deg, #ffffff, #fbf8f1);
}

.fleet-hero {
  background:
    radial-gradient(circle at 50% 34%, rgba(16, 19, 26, 0.08), transparent 50%),
    linear-gradient(180deg, #ffffff, #f4f1eb);
  border-color: var(--luxury-line);
}

.section-head {
  max-width: 980px;
}

.section-head h2 {
  color: var(--luxury-ink);
}

.section-head h2::after {
  background: linear-gradient(90deg, var(--luxury-gold), var(--luxury-gold-bright), transparent);
}

.eyebrow,
.panel-brand p,
.text-link,
.contact-list a,
.coverage-card a,
.quote-wall cite {
  color: var(--luxury-gold);
}

.solution-tag,
.stack-chips span {
  color: #6d572c;
  background: #f3ecdb;
  border-color: rgba(150, 117, 58, 0.22);
}

.signal-bar {
  background: #f6f2ea;
  border-color: var(--luxury-line);
}

.signal-bar::before {
  background: linear-gradient(90deg, #f6f2ea, rgba(246, 242, 234, 0));
}

.signal-bar::after {
  background: linear-gradient(270deg, #f6f2ea, rgba(246, 242, 234, 0));
}

.fleet-section,
.coverage-section,
.professional-section,
.faq-section,
.contact-section,
.seo-depth {
  background: #ffffff;
}

.stack-section {
  background: var(--luxury-cream);
}

.dark-flow {
  background:
    radial-gradient(circle at 88% 0%, rgba(198, 161, 90, 0.18), transparent 40%),
    linear-gradient(145deg, #070707, #15151a 72%, #070707);
}

.flow-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.professional-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f5ee 100%);
}

.professional-copy {
  background: #ffffff;
}

.professional-media {
  background: #0a0a0a;
}

.professional-card-grid article {
  background: #fbf8f1;
}

.faq-item {
  background: #ffffff;
  border-color: var(--luxury-line);
}

.faq-item summary {
  color: var(--luxury-ink);
}

.btn-solid {
  color: #111111;
  background: linear-gradient(135deg, #c6a15a, #e0c78c);
  box-shadow: 0 18px 34px rgba(150, 117, 58, 0.24);
}

.btn-outline {
  color: var(--luxury-ink);
  background: #ffffff;
  border-color: var(--luxury-line);
  box-shadow: 0 10px 28px rgba(16, 19, 26, 0.08);
}

.mobile-quick-links a {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-quick-links a:first-child {
  color: #111111;
  background: linear-gradient(135deg, #c6a15a, #e0c78c);
}

@media (max-width: 1120px) {
  h1 {
    font-size: clamp(2.45rem, 8vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 6vw, 3.2rem);
  }
}

@media (max-width: 760px) {
  .hero {
    background: linear-gradient(180deg, #ffffff, #fbf8f1);
  }

  .hero-copy {
    width: 100%;
    padding: 1.05rem 0.9rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 10.6vw, 2.85rem);
    line-height: 0.98;
    max-width: 10.5ch;
  }

  .hero-title span:last-child {
    font-size: 0.46em;
    max-width: 18ch;
  }

  .hero-lead {
    max-width: 31ch;
    color: #f7efe2;
  }

  .section-head h2,
  .professional-copy h2,
  .stack-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.04;
    max-width: 100%;
  }

  .eyebrow {
    color: var(--luxury-gold);
  }

  .hero-copy .eyebrow {
    color: #c6a15a;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.45rem);
    max-width: 10ch;
  }

  .hero-title span:last-child {
    font-size: 0.44em;
  }
}

/* Corrective pass: typography, contrast, and overflow */
:root {
  --font-size-display-md: clamp(2.35rem, 4.7vw, 4.85rem);
  --line-height-display-md: 1.02;
  --font-size-display-sm: clamp(1.35rem, 2.2vw, 2rem);
  --line-height-display-sm: 1.12;
}

.Typography_display__MFaXd.Typography_md__MMzMN,
h1,
h2,
.hero-title,
.section-head h2,
.page-hero h1,
.professional-copy h2,
.stack-copy h2,
.contact-copy h2 {
  font-family: "PP Fragment", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-display-md);
  line-height: var(--line-height-display-md);
  letter-spacing: 0.25px;
  text-transform: none;
}

h3,
.coverage-card h3,
.solution-card h3,
.fleet-card h3,
.professional-card-grid h3,
.seo-article h3 {
  font-family: "PP Fragment", sans-serif;
  font-weight: 400;
  font-size: var(--font-size-display-sm);
  line-height: var(--line-height-display-sm);
  letter-spacing: 0.25px;
  color: #10131a;
}

.section-head,
.section-head h2,
.page-hero h1 {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
}

.section-head h2,
.professional-copy h2,
.stack-copy h2,
.contact-copy h2,
.seo-depth .section-head h2,
.coverage-section .section-head h2,
.fleet-section .section-head h2,
#services .section-head h2 {
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

.section-head h2::after {
  max-width: 320px;
}

.quote-wall blockquote,
.quote-wall blockquote p,
.contact-form label,
.contact-form input,
.contact-form select,
.contact-form textarea,
.faq-item summary,
.faq-item p,
.seo-article,
.seo-article p,
.coverage-card,
.coverage-card p,
.solution-card,
.solution-card p,
.fleet-card,
.fleet-card p,
.professional-card-grid article,
.professional-card-grid p {
  color: #10131a;
}

.quote-wall blockquote {
  background: #ffffff;
  border-color: #e8e0d2;
}

.quote-wall cite,
.contact-list a,
.coverage-card a,
.text-link {
  color: #9a6406;
}

.contact-copy,
.contact-list,
.contact-list p,
.contact-list a {
  text-align: left;
  justify-items: start;
}

.contact-list {
  justify-content: start;
  align-items: start;
}

.contact-list p {
  width: 100%;
}

.contact-list strong {
  color: #10131a;
}

.contact-form label {
  color: #10131a;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
input,
select,
textarea {
  color: #10131a;
  background: #ffffff;
  border-color: #d9dce2;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

.nav-actions {
  align-items: center;
}

.nav-actions .btn,
.nav-actions .license-glass {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
}

@media (min-width: 1121px) {
  .section-head {
    max-width: min(100%, 1040px);
  }
}

@media (max-width: 1120px) {
  :root {
    --font-size-display-md: clamp(2rem, 6vw, 3.25rem);
  }
}

@media (max-width: 760px) {
  :root {
    --font-size-display-md: clamp(1.75rem, 8vw, 2.55rem);
    --line-height-display-md: 1.06;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-title span,
  .hero-title span:last-child {
    display: block;
    max-width: 100%;
    font-size: inherit;
  }

  .hero-title span:last-child {
    color: #c6a15a;
  }

  .hero-lead {
    max-width: 100%;
  }

  .quote-wall blockquote {
    color: #10131a;
  }
}

/* Button and premium identity cleanup */
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 42px;
  padding: 0.62rem 0.86rem;
  color: #111111;
  background: linear-gradient(135deg, #c6a15a, #e0c78c);
  border: 1px solid rgba(154, 100, 6, 0.28);
  box-shadow: 0 12px 26px rgba(154, 100, 6, 0.16);
  clip-path: polygon(0 9px, 9px 0, calc(100% - 9px) 0, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px));
  font-size: 0.76rem;
  line-height: 1;
}

.text-link::after {
  display: none;
  content: "";
}

.text-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(154, 100, 6, 0.22);
}

.btn,
.mobile-quick-links a,
.nav-actions .btn {
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
}

.dark-flow {
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(198, 161, 90, 0.14) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 88% 0%, rgba(198, 161, 90, 0.22), transparent 36%),
    radial-gradient(circle at 18% 70%, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(145deg, #070707 0%, #120f0a 58%, #050505 100%);
  background-size: 42px 100%, auto, auto, auto;
}

.dark-flow .section-head h2,
.dark-flow .flow-head h2,
.dark-flow .section-head p,
.dark-flow .flow-head p,
.dark-flow .flow-card h3,
.dark-flow .flow-card p {
  color: #ffffff !important;
}

.dark-flow .eyebrow,
.dark-flow .flow-head .eyebrow {
  color: #c6a15a !important;
}

.dark-flow .section-head h2 {
  max-width: min(100%, 920px) !important;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.58);
}

.flow-grid {
  align-items: stretch;
}

.flow-card {
  min-height: 230px;
  border-color: rgba(198, 161, 90, 0.2) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    linear-gradient(180deg, rgba(198, 161, 90, 0.08), rgba(198, 161, 90, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 24px 60px rgba(0, 0, 0, 0.28);
}

.flow-card span {
  background: linear-gradient(135deg, #c6a15a, #e0c78c);
  color: #111111;
}

.solution-card,
.coverage-card,
.fleet-card,
.professional-card-grid article,
.quote-wall blockquote,
.contact-form {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.92));
  border-color: #dfd3bf;
}

.solution-card::after,
.coverage-card::after,
.fleet-card::after,
.professional-card-grid article::after,
.quote-wall blockquote::after,
.contact-form::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(150, 117, 58, 0.48), transparent);
  pointer-events: none;
}

.solution-card:hover,
.coverage-card:hover,
.fleet-card:hover {
  border-color: rgba(150, 117, 58, 0.45);
  box-shadow: 0 30px 80px rgba(16, 19, 26, 0.16);
}

.solution-tag {
  color: #111111;
  background: #fff1c7;
}

.section-head h2 {
  max-width: min(100%, 960px) !important;
}

.fleet-section .section-head h2,
.coverage-section .section-head h2,
#services .section-head h2,
.seo-depth .section-head h2 {
  max-width: min(100%, 980px) !important;
}

.quote-wall blockquote {
  min-height: auto;
}

.quote-wall blockquote,
.quote-wall blockquote * {
  color: #10131a !important;
}

.quote-wall cite {
  color: #9a6406 !important;
}

@media (max-width: 1120px) {
  .flow-card {
    min-height: 210px;
  }
}

@media (max-width: 760px) {
  .text-link {
    min-height: 40px;
    font-size: 0.7rem;
    white-space: normal;
    width: fit-content;
    max-width: 100%;
  }

  .dark-flow .section-head h2 {
    max-width: 100% !important;
  }

  .flow-card {
    min-height: 230px;
  }
}

/* Store-style conversion pass */
body {
  padding-bottom: 92px;
}

.store-announcement {
  border-bottom: 1px solid rgba(150, 117, 58, 0.18);
  background:
    linear-gradient(90deg, #090909 0%, #16100a 52%, #090909 100%);
  color: #ffffff;
}

.store-announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-announcement span,
.store-announcement a {
  color: #c6a15a;
  font-weight: 900;
}

.store-announcement strong {
  color: #ffffff;
  font-weight: 700;
}

.store-announcement a {
  border-bottom: 1px solid currentColor;
}

.checkout-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.checkout-promise span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.52rem;
  color: #f7efe2;
  border: 1px solid rgba(198, 161, 90, 0.24);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  clip-path: polygon(0 7px, 7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px));
}

.panel-booking-btn {
  width: 100%;
}

.shopping-cta-strip {
  position: relative;
  background: #0b0b0b;
  border-top: 1px solid rgba(198, 161, 90, 0.22);
  border-bottom: 1px solid rgba(198, 161, 90, 0.22);
  padding: 1rem 0;
}

.shopping-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.shopping-cta-card {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 0.32rem;
  padding: 1rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(198, 161, 90, 0.16), rgba(255, 255, 255, 0.04)),
    #111111;
  border: 1px solid rgba(198, 161, 90, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  clip-path: polygon(0 14px, 14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.shopping-cta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 161, 90, 0.68);
  background:
    linear-gradient(135deg, rgba(198, 161, 90, 0.24), rgba(255, 255, 255, 0.07)),
    #111111;
}

.shopping-cta-card span {
  color: #c6a15a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shopping-cta-card strong {
  color: #ffffff;
  font-family: "PP Fragment", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 400;
  line-height: 1.02;
}

.shopping-cta-card small {
  color: #d7d9de;
  font-size: 0.88rem;
}

.service-grid .solution-card,
.fleet-grid .fleet-card {
  align-content: stretch;
  min-height: 100%;
}

.service-grid .solution-card {
  grid-template-rows: auto auto 1fr auto;
}

.fleet-grid .fleet-card {
  grid-template-rows: auto auto 1fr auto;
}

.card-purchase-row,
.fleet-card-actions {
  display: grid;
  gap: 0.64rem;
  align-self: end;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(150, 117, 58, 0.18);
}

.card-purchase-row span,
.fleet-card-actions span {
  color: #7a6536;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-purchase-row .text-link,
.fleet-card-actions .btn {
  width: 100%;
}

.fleet-card-actions .btn {
  min-height: 42px;
  color: #111111;
  background: #ffffff;
  border-color: rgba(150, 117, 58, 0.38);
  box-shadow: 0 10px 22px rgba(16, 19, 26, 0.08);
}

.fleet-card:hover .fleet-card-actions .btn,
.fleet-card-actions .btn:hover {
  color: #111111;
  background: linear-gradient(135deg, #c6a15a, #e0c78c);
  border-color: rgba(150, 117, 58, 0.38);
}

.section-shop-banner,
.article-cta-box,
.blog-shop-banner,
.booking-summary-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.4rem);
  border: 1px solid #dfd3bf;
  background:
    radial-gradient(circle at 88% 10%, rgba(198, 161, 90, 0.18), transparent 36%),
    linear-gradient(135deg, #ffffff, #fbf8f1);
  box-shadow: 0 22px 60px rgba(16, 19, 26, 0.1);
  clip-path: polygon(0 16px, 16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px));
}

.section-shop-banner,
.article-cta-box,
.blog-shop-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 1.2rem;
}

.section-shop-banner h3,
.article-cta-box h3,
.booking-summary-card h3 {
  max-width: 760px;
  color: #10131a;
  font-size: clamp(1.28rem, 2.3vw, 2rem);
}

.blog-shop-banner {
  margin: 0 0 1rem;
}

.blog-shop-banner h2 {
  font-size: clamp(1.7rem, 3.4vw, 3.1rem);
  max-width: 760px;
}

.booking-summary-card {
  background:
    radial-gradient(circle at 90% 8%, rgba(198, 161, 90, 0.2), transparent 34%),
    linear-gradient(145deg, #101010, #070707);
  border-color: rgba(198, 161, 90, 0.32);
}

.booking-summary-card h3,
.booking-summary-card li,
.booking-summary-card p {
  color: #ffffff;
}

.booking-summary-card .eyebrow {
  color: #c6a15a;
}

.booking-summary-card ul {
  display: grid;
  gap: 0.36rem;
  padding-left: 1.1rem;
}

.booking-summary-card li::marker {
  color: #c6a15a;
}

.conversion-dock {
  position: fixed;
  left: 50%;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  width: min(980px, calc(100vw - 2rem));
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.74rem 0.82rem 0.74rem 1rem;
  transform: translate(-50%, calc(125% + 1rem));
  opacity: 0;
  pointer-events: none;
  color: #ffffff;
  border: 1px solid rgba(198, 161, 90, 0.42);
  background:
    linear-gradient(90deg, rgba(198, 161, 90, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(8, 8, 8, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px) saturate(1.2);
  clip-path: polygon(0 16px, 16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px));
  transition: transform 240ms ease, opacity 180ms ease;
}

.conversion-dock.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.conversion-dock span {
  display: block;
  color: #c6a15a;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.conversion-dock strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.22;
}

.conversion-dock .dock-phone {
  color: #ffffff;
  font-weight: 900;
  white-space: nowrap;
}

.conversion-dock .btn {
  min-width: 142px;
  min-height: 46px;
}

.whatsapp-drawer-toggle {
  top: calc(50vh - 42px);
}

@media (max-width: 1120px) {
  body {
    padding-bottom: 112px;
  }

  .store-announcement-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .store-announcement-inner::-webkit-scrollbar {
    display: none;
  }

  .shopping-cta-grid {
    grid-template-columns: 1fr;
  }

  .section-shop-banner,
  .article-cta-box,
  .blog-shop-banner {
    grid-template-columns: 1fr;
  }

  .section-shop-banner .btn,
  .article-cta-box .btn,
  .blog-shop-banner .btn {
    width: 100%;
  }

  .conversion-dock {
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(720px, calc(100vw - 1rem));
  }

  .conversion-dock .dock-phone {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 126px;
  }

  .store-announcement-inner {
    min-height: 34px;
    gap: 0.55rem;
    font-size: 0.62rem;
  }

  .store-announcement strong {
    min-width: max-content;
  }

  .store-announcement span {
    display: none;
  }

  .checkout-promise span {
    font-size: 0.6rem;
  }

  .shopping-cta-strip {
    padding: 0.8rem 0;
  }

  .shopping-cta-grid {
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .shopping-cta-grid::-webkit-scrollbar {
    display: none;
  }

  .shopping-cta-card {
    min-height: 118px;
    scroll-snap-align: start;
  }

  .card-purchase-row,
  .fleet-card-actions {
    gap: 0.52rem;
  }

  .section-shop-banner,
  .article-cta-box,
  .blog-shop-banner,
  .booking-summary-card {
    padding: 0.95rem;
  }

  .blog-shop-banner h2 {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .conversion-dock {
    grid-template-columns: 1fr;
    gap: 0.62rem;
    bottom: max(0.5rem, env(safe-area-inset-bottom));
    width: calc(100vw - 0.7rem);
    min-height: 106px;
    padding: 0.72rem;
  }

  .conversion-dock strong {
    font-size: 0.82rem;
  }

  .conversion-dock .btn {
    width: 100%;
    min-height: 44px;
  }

  .whatsapp-drawer-toggle {
    top: auto;
    right: 0.35rem;
    bottom: calc(126px + env(safe-area-inset-bottom));
    transform: none;
    width: 104px;
  }

  body.whatsapp-drawer-open .whatsapp-drawer-toggle {
    transform: translateX(14px);
  }
}

@media (max-width: 420px) {
  .conversion-dock strong {
    font-size: 0.78rem;
  }

  .conversion-dock span {
    font-size: 0.6rem;
  }
}

.conversion-dock.is-visible {
  transform: translate(-50%, 0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Service cards — text-forward luxe pass */
.service-grid .solution-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  align-content: start;
  min-height: 230px;
  padding: clamp(1.4rem, 2.4vw, 1.8rem);
  border: 1px solid var(--luxury-line);
  background:
    radial-gradient(circle at 112% -12%, rgba(198, 161, 90, 0.12), transparent 48%),
    linear-gradient(165deg, #ffffff, #fbf8f1);
  box-shadow: 0 22px 52px rgba(16, 19, 26, 0.08);
}

.service-grid .solution-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c6a15a, #96753a, transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-grid .solution-card:hover::before {
  opacity: 1;
}

.solution-index {
  font-family: var(--font-accent);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  color: rgba(150, 117, 58, 0.32);
  letter-spacing: 0.04em;
}

.service-grid .solution-card h3 {
  max-width: 16ch;
  color: var(--luxury-ink);
}

.service-grid .solution-card > p:not(.solution-tag) {
  max-width: 38ch;
  color: var(--luxury-muted);
}

/* Trust & process feature grid */
.trust-process-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(198, 161, 90, 0.1), transparent 42%),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 100%);
  border-top: 1px solid var(--luxury-line);
  border-bottom: 1px solid var(--luxury-line);
  padding-top: clamp(2.8rem, 5vw, 4rem);
  padding-bottom: clamp(2.8rem, 5vw, 4rem);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.trust-feature {
  position: relative;
  display: grid;
  gap: 0.55rem;
  align-content: start;
  padding: clamp(1.3rem, 2.2vw, 1.6rem);
  border: 1px solid var(--luxury-line);
  background: #ffffff;
  clip-path: polygon(0 14px, 14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 18px 44px rgba(16, 19, 26, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.trust-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(150, 117, 58, 0.45);
  box-shadow: 0 26px 56px rgba(16, 19, 26, 0.12);
}

.trust-feature-tag {
  width: max-content;
  color: #111111;
  background: linear-gradient(135deg, #c6a15a, #e0c78c);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.32rem 0.52rem;
  clip-path: polygon(0 6px, 6px 0, calc(100% - 6px) 0, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0 calc(100% - 6px));
}

.trust-feature h3 {
  color: var(--luxury-ink);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.trust-feature p {
  color: var(--luxury-muted);
  font-size: 0.95rem;
}

.trust-process-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.fleet-section {
  padding-bottom: clamp(2.4rem, 4vw, 3.2rem);
}

#process.dark-flow {
  padding-top: clamp(2.4rem, 4vw, 3.2rem);
}

@media (max-width: 1120px) {
  .service-grid .solution-card {
    min-height: 0;
  }

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

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

/* Mobile overflow hardening for image-heavy layout */
@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .hero-layout,
  .hero-copy,
  .hero-panel,
  .section-head,
  .professional-layout,
  .contact-layout,
  .booking-layout {
    max-width: 100%;
    min-width: 0;
  }

  .hero-title {
    width: 100%;
    max-width: 100% !important;
    font-size: clamp(2.05rem, 10vw, 2.65rem);
    line-height: 1.02;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-title span,
  .hero-title span:last-child {
    display: block;
    max-width: 100% !important;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
  }

  .hero-title span:last-child {
    font-size: clamp(1.72rem, 8.5vw, 2.28rem);
    line-height: 1.04;
  }

  .hero-copy .eyebrow,
  .hero-lead,
  .hero-badges,
  .checkout-promise,
  .mobile-quick-links {
    max-width: 100%;
    min-width: 0;
  }

  .hero-badges span,
  .checkout-promise span {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .checkout-promise span:last-child {
    width: 100%;
  }

  .mobile-quick-links a {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

.hero-title .hero-subline {
  color: #c6a15a !important;
}

@media (min-width: 761px) {
  .hero-title .hero-subline {
    font-size: 0.52em;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100vw - 1.5rem));
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 0.9rem;
  }

  .hero-title .hero-subline,
  .hero-title span.hero-subline:last-child {
    color: #c6a15a !important;
    font-size: clamp(1.62rem, 8vw, 2.12rem);
    line-height: 1.02;
    max-width: 100% !important;
  }

  .checkout-promise span {
    width: auto !important;
    max-width: 100% !important;
    line-height: 1.2;
  }

  .checkout-promise span:last-child {
    width: 100% !important;
  }

  .mobile-quick-links {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
  }

  .mobile-quick-links a {
    width: 100%;
    padding-inline: 0.28rem;
    font-size: 0.62rem;
  }
}

@media (max-width: 760px) {
  .hero-layout {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-copy,
  .hero-panel {
    width: calc(100vw - 1.5rem) !important;
    max-width: calc(100vw - 1.5rem) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-panel,
  .proof-cluster {
    margin-top: 0.95rem;
  }

  .hero-lead {
    max-width: calc(100vw - 3.6rem) !important;
  }

  .mobile-quick-links {
    grid-template-columns: 1fr;
  }

  .mobile-quick-links a {
    min-height: 42px;
  }

  .store-announcement-inner {
    justify-content: center;
    overflow: hidden;
  }

  .store-announcement strong {
    min-width: 0;
    font-size: 0;
  }

  .store-announcement strong::after {
    content: "Reserve rides online.";
    font-size: 0.62rem;
  }

  .store-announcement a {
    display: none;
  }

  .whatsapp-drawer-toggle {
    display: none;
  }
}

/* Legal pages */
.legal-page {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.legal-prose {
  max-width: 760px;
  display: grid;
  gap: 1rem;
}

.legal-prose h2 {
  margin-top: 1.2rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.legal-prose h3 {
  margin-top: 0.6rem;
  font-size: 1.05rem;
}

.legal-prose p,
.legal-prose li {
  color: #3a3f46;
  line-height: 1.65;
}

.legal-prose ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.legal-prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: #f2f2f2;
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid rgba(16, 19, 26, 0.12);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f6f6f6;
  font-weight: 700;
}

.consent-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #c6c9ce;
}

.consent-label input {
  margin-top: 0.2rem;
  min-height: auto;
}

.consent-label a {
  color: var(--gold);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Cookie consent */
.cookie-consent[hidden],
.cookie-modal[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: block;
  padding: 0.85rem;
  background: rgba(5, 5, 5, 0.92);
  border-top: 1px solid rgba(198, 161, 90, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 -18px 48px rgba(0, 0, 0, 0.38);
}

.cookie-consent.is-visible {
  animation: cookieSlideUp 280ms ease;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent.is-visible {
    animation: none;
  }
}

.cookie-consent-inner {
  width: min(var(--container), 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1rem;
  align-items: center;
}

.cookie-consent-copy h2 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: #f4f4f4;
  margin: 0.2rem 0;
}

.cookie-consent-copy p {
  color: #b8bcc2;
  font-size: 0.92rem;
  max-width: 58ch;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.cookie-modal:not([hidden]) {
  display: grid;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  place-items: center;
  padding: 1rem;
}

.cookie-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(88vh, 720px);
  overflow: auto;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid rgba(198, 161, 90, 0.35);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  padding: 1.25rem;
  clip-path: polygon(0 14px, 14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px));
}

.cookie-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cookie-modal-head h2 {
  font-size: 1.35rem;
  margin: 0;
}

.cookie-modal-close {
  border: 0;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #555;
}

.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(16, 19, 26, 0.1);
}

.cookie-category h3 {
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}

.cookie-category p {
  font-size: 0.88rem;
  color: #5a6068;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-ui {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #cfd3d8;
  transition: background 180ms ease;
}

.cookie-toggle-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 180ms ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.cookie-toggle input:checked + .cookie-toggle-ui {
  background: linear-gradient(135deg, #c6a15a, #e0c78c);
}

.cookie-toggle input:checked + .cookie-toggle-ui::after {
  transform: translateX(20px);
}

.cookie-toggle-locked {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a7078;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.cookie-modal-foot {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  color: #5a6068;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .cookie-consent-inner {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-actions .btn {
    flex: 1 1 auto;
    min-width: calc(50% - 0.3rem);
  }
}

/* ============================================================
   Modern luxe refinements (image-light pass)
   ============================================================ */

.section-pad {
  padding-block: clamp(3.4rem, 6vw, 5.6rem);
}

.section-head {
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.section-head .eyebrow {
  color: #96753a;
  letter-spacing: 0.22em;
}

.section-head h2::after {
  height: 2px;
  width: min(190px, 70%);
  bottom: -0.55rem;
  background: linear-gradient(90deg, #96753a, transparent);
}

.btn {
  letter-spacing: 0.06em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(150, 117, 58, 0.3);
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: #96753a;
}

.solution-card,
.fleet-card,
.coverage-card,
.trust-feature,
.flow-card {
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.fleet-card img {
  transition: transform 320ms ease, filter 320ms ease;
}

.fleet-card:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 22px 24px rgba(16, 19, 26, 0.22));
}

@media (max-width: 760px) {
  .signal-segment {
    gap: clamp(0.9rem, 4vw, 1.6rem);
  }
}

/* ============================================================
   Hero slideshow (fleet photos) - overlaid UI, no cards
   ============================================================ */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 0;
  min-height: clamp(560px, 84vh, 820px);
  display: flex;
  background: #0b0b0d;
}

.hero::before,
.hero::after {
  content: none;
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.2s ease, transform 7s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.72) 36%, rgba(8, 8, 10, 0.28) 66%, rgba(8, 8, 10, 0.1) 100%),
    linear-gradient(0deg, rgba(8, 8, 10, 0.8) 0%, rgba(8, 8, 10, 0) 44%);
}

.hero-stage {
  position: relative;
  z-index: 2;
  width: min(var(--container), 92vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(1.5rem, 4vw, 2.4rem);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.hero-content {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 42rem;
}

.hero-content .eyebrow {
  color: #e6cf95;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.6rem, 6.6vw, 5.2rem);
  line-height: 0.98;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.hero-title span {
  display: block;
}

.hero-title .hero-subline {
  color: #e0c78c !important;
  font-family: "PP Fragment", sans-serif;
  font-size: 0.5em;
  letter-spacing: 0.02em;
  margin-top: 0.25em;
}

.hero-lead {
  color: rgba(247, 244, 238, 0.92);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  max-width: 48ch;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero .btn-outline:hover {
  border-color: #e0c78c;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  font-family: "PP Fragment", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(247, 244, 238, 0.82);
}

.hero-meta li + li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin: 0 1.05rem;
  transform: rotate(45deg);
  background: #c6a15a;
}

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

.hero-caption {
  font-family: "PP Fragment", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(247, 244, 238, 0.78);
}

.hero-dots {
  display: inline-flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
  transition: background 240ms ease, width 240ms ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dot.is-active {
  width: 46px;
  background: linear-gradient(90deg, #c6a15a, #e0c78c);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: opacity 0.4s ease;
    transform: none;
  }
  .hero-slide.is-active {
    transform: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: clamp(500px, 86vh, 720px) !important;
    background: #0b0b0d !important;
  }
  .hero-slide,
  .hero-media {
    background-position: center 42%;
  }
  .hero-scrim {
    background: linear-gradient(0deg, rgba(8, 8, 10, 0.94) 6%, rgba(8, 8, 10, 0.42) 52%, rgba(8, 8, 10, 0.5) 100%);
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-lead {
    max-width: 44ch !important;
    color: rgba(247, 244, 238, 0.92) !important;
  }
  .hero-title .hero-subline {
    font-size: 0.46em !important;
  }
}

/* Fleet photos rendered to fully fit inside cards (no cutoff) */
.fleet-card img {
  width: 100%;
  height: clamp(180px, 24vw, 230px);
  object-fit: contain;
  object-position: center;
  padding: 0.3rem;
  background: linear-gradient(160deg, #f6f1e6, #ece4d4);
  filter: none;
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
}

.fleet-card:hover img {
  filter: none;
  transform: none;
}

.fleet-card.img-missing img {
  display: none;
}

.fleet-card.img-missing::before {
  content: "Photo coming soon";
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(180px, 24vw, 230px);
  font-family: "PP Fragment", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #96753a;
  background:
    radial-gradient(circle at 50% 40%, rgba(198, 161, 90, 0.16), transparent 60%),
    linear-gradient(160deg, #f6f1e6, #ece4d4);
  clip-path: polygon(0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
}

.single-post-hero h1 {
  max-width: 960px;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 1rem;
  color: #6b7280;
}

.single-post-meta a {
  color: var(--luxury-gold);
}

.single-post-layout {
  max-width: 920px;
}

.single-post-featured {
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--luxury-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.1);
}

.single-post-featured img {
  width: 100%;
  height: auto;
}

.single-post-content {
  color: #111827;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.8;
}

.single-post-content > * + * {
  margin-top: 1.15rem;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  margin-top: 2rem;
  color: #111827;
  line-height: 1.16;
}

.single-post-content h2 {
  font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.single-post-content h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.single-post-content p,
.single-post-content li {
  color: #374151;
}

.single-post-content a {
  color: var(--luxury-gold);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 1.4rem;
}

.single-post-content blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--luxury-gold);
  border-radius: 0 8px 8px 0;
  background: #f8fafc;
  color: #111827;
}

.single-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
