/* =====================================================
   ARMA HIRE — Stylesheet
   ===================================================== */

/* === TOKENS === */
:root {
  /* Type — readability-first: Inter for body, Fraunces (readable serif) for headings */
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-serif:   var(--font-heading);

  --bg:        #FAFAF9;
  --bg-deep:   #F0EEE8;
  --surface:   #FFFFFF;
  --surface-2: #F5F3EE;
  --surface-3: #ECEAE3;

  --gold:       #CA8A04;
  --gold-hover: #A16207;
  --gold-dim:   rgba(202, 138, 4, 0.12);
  --gold-faint: rgba(202, 138, 4, 0.07);

  --text:      #0C0A09;
  --text-soft: #57534E;
  --text-dim:  rgba(12, 10, 9, 0.38);

  --border:        rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);

  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   30px;
  --r-pill: 999px;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.14);
  --shadow-gold: 0 8px 28px rgba(202,138,4,0.28);

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul    { margin: 0; padding: 0; list-style: none; }
p     { margin: 0; }
h1, h2, h3 { margin: 0; }

/* Keyboard focus — visible ring on interactive elements */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus-visible,
.btn:focus-visible { outline-offset: 4px; }

/* === KEYFRAMES === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* === LAYOUT === */
.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.6rem;
  z-index: 300;
  transform: translateY(calc(-100% - 0.75rem));
  padding: 0.65rem 1.1rem;
  border-radius: var(--r-sm);
  background: var(--text);
  color: var(--bg);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* === SCROLL REVEAL === */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* === TYPOGRAPHY === */
.eyebrow {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.05;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  line-height: 1.3;
}

.section-header {
  max-width: 620px;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  margin-top: 0.3rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--gold);
  color: #06101d;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  box-shadow: 0 12px 36px rgba(202, 138, 4, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(202, 138, 4, 0.55);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.82rem;
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.brand-mark {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  transition: color 0.2s var(--ease);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.site-nav a:hover          { color: var(--text); }
.site-nav a:hover::after   { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

/* === INFO STRIP === */
.info-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.strip-inner::-webkit-scrollbar { display: none; }

.strip-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

.strip-inner a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s var(--ease);
  flex-shrink: 0;
}

.strip-inner a:hover { color: var(--gold-hover); }

/* === HERO === */
.hero-section {
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(4rem, 7vw, 6rem);
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, var(--bg) 0%, var(--bg-deep) 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 75% 25%, rgba(202, 138, 4, 0.09), transparent),
    radial-gradient(ellipse 40% 55% at 12% 80%, rgba(202, 138, 4, 0.05), transparent);
  pointer-events: none;
}

/* Premium grain / atmosphere overlay */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-copy h1 { margin-bottom: 1.25rem; }

.hero-desc {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

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

.trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.trust-item span {
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 0.25rem;
  font-weight: 500;
}

.trust-sep {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* Hero visual — fleet card */
.hero-visual { position: relative; }

.fleet-card {
  margin: 0;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 0.7rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.fleet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 138, 4, 0.35), transparent);
  z-index: 2;
}

.fleet-card-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.fleet-card-img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--surface-3);
}

.fleet-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem 0.5rem 0.6rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.005em;
}

.fleet-badge-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fleet-card-body {
  padding: 1.4rem 1.25rem 1.15rem;
}

.fleet-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.fleet-stat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.fleet-stat-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex-shrink: 0;
}

.fleet-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.fleet-stat-text strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.fleet-stat-text span {
  font-size: 0.76rem;
  color: var(--text-soft);
  margin-top: 0.15rem;
}

.fleet-stat-sep {
  width: 1px;
  align-self: stretch;
  margin: 0.15rem 0;
  background: var(--border);
  flex-shrink: 0;
}

.fleet-card-caption {
  margin-top: 1.15rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.fleet-card-tags {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.6;
}

.fleet-card-tags span {
  color: var(--gold-hover);
  opacity: 0.55;
  margin: 0 0.35rem;
}

/* === SERVICES === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(202, 138, 4, 0.1);
  border-color: rgba(202, 138, 4, 0.15);
}

.card:hover::after { transform: scaleX(1); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--gold-faint);
  border: 1px solid rgba(202, 138, 4, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.card:hover .card-icon {
  background: var(--gold-dim);
  border-color: rgba(202, 138, 4, 0.35);
}

.card h3 { margin-bottom: 0.75rem; }

.card p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.93rem;
}

/* === PROCESS === */
.process-section {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(202, 138, 4, 0.04), transparent 60%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(33.333% + 24px);
  right: calc(33.333% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(202, 138, 4, 0.25));
  pointer-events: none;
}

.process-card {
  padding: 2rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 138, 4, 0.2);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--gold);
  color: #06101d;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.process-card h3 { margin-bottom: 0.65rem; }

.process-card p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.93rem;
}

/* === FLEET === */
.fleet-categories {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.fleet-cat-header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.fleet-cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.fleet-cat-badge--taxi {
  background: var(--gold-faint);
  border: 1px solid rgba(202, 138, 4, 0.22);
  color: var(--gold);
}

.fleet-cat-badge--super {
  background: #1e1010;
  border: 1px solid rgba(239, 68, 68, 0.28);
  color: #fca5a5;
}

.fleet-cat-badge--ev {
  background: #0e1c10;
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: #86efac;
}

.fleet-cat-badge--exec {
  background: #141e2c;
  border: 1px solid rgba(148, 163, 184, 0.28);
  color: #cbd5e1;
}

.fleet-cat-badge--std {
  background: #161410;
  border: 1px solid rgba(202, 138, 4, 0.18);
  color: var(--text-soft);
}

.fleet-cat-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
}

.vehicle-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 138, 4, 0.2);
  box-shadow: var(--shadow-md);
}

.vehicle-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--surface-3);
}

.vehicle-info {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
}

.vehicle-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 4.5rem;
  align-items: center;
}

.about-copy h2 { margin-top: 0.4rem; margin-bottom: 1.25rem; }

.about-copy > p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-list { display: flex; flex-direction: column; gap: 0.65rem; }

.about-list li {
  padding: 0.9rem 1.2rem 0.9rem 2.4rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-soft);
  position: relative;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.about-visual { display: flex; justify-content: flex-end; }

.about-card {
  width: 100%;
  max-width: 380px;
  padding: 2.25rem;
  border-radius: var(--r-xl);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 138, 4, 0.4), transparent);
}

.about-card:hover { border-color: rgba(202, 138, 4, 0.2); }

.about-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.about-card h3 { font-size: 1.2rem; line-height: 1.4; margin-bottom: 1.75rem; }

.about-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.about-badges span {
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  background: var(--gold-faint);
  border: 1px solid rgba(202, 138, 4, 0.15);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

/* === WHY SECTION === */
.why-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.why-copy h2 { margin-top: 0.4rem; margin-bottom: 1.25rem; }

.why-copy > p { color: var(--text-soft); line-height: 1.75; }

.feature-list { display: flex; flex-direction: column; gap: 0.65rem; }

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-soft);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.feature-list li:hover {
  border-color: rgba(202, 138, 4, 0.2);
  background: rgba(202, 138, 4, 0.025);
}

.feature-check {
  width: 20px;
  height: 20px;
  border-radius: var(--r-xs);
  background: var(--gold-faint);
  border: 1px solid rgba(202, 138, 4, 0.28);
  flex-shrink: 0;
  position: relative;
}

.feature-check::after {
  content: '';
  position: absolute;
  left: 50%; top: 47%;
  transform: translate(-55%, -58%) rotate(-45deg);
  width: 8px;
  height: 5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
}

/* === TESTIMONIALS === */
.testimonials-section {
  background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(202, 138, 4, 0.035), transparent 60%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2.25rem;
  border-radius: var(--r-xl);
  background: var(--surface-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 138, 4, 0.15);
}

.testimonial-stars {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-faint);
  border: 1px solid rgba(202, 138, 4, 0.28);
  color: var(--gold-hover);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-right: auto;
  min-width: 0;
}

.testimonial-meta strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-meta span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.32rem 0.65rem;
  border-radius: var(--r-pill);
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #14612F;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.testimonial-verified svg {
  width: 13px;
  height: 13px;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-copy h2 { margin-top: 0.4rem; margin-bottom: 1.25rem; }

.contact-copy > p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.contact-email {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
  transition: color 0.2s var(--ease);
}

.contact-email:hover { color: var(--gold-hover); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.93rem;
  resize: vertical;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-dim); }

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(202, 138, 4, 0.5);
  box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.07);
}

/* === FOOTER === */
.site-footer {
  --text:      #FAFAF9;
  --text-soft: #A8A29E;
  --text-dim:  rgba(250, 250, 249, 0.38);
  --border:    rgba(255, 255, 255, 0.08);
  background: #0C0A09;
  border-top: none;
  padding: 3.5rem 0 2.5rem;
  margin-top: 4rem;
}

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

.footer-brand .brand { display: block; margin-bottom: 0.5rem; }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.6;
}

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

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

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

/* Discreet staff-only link — visually secondary to the customer nav items */
.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  /* colour inherited from .footer-nav a (--text-soft) to keep 4.5:1 contrast;
     the smaller size and padlock mark it as a staff link */
}

.footer-admin-link::before {
  content: '';
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  background: currentColor;
  /* padlock glyph */
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='10' rx='2'/%3E%3Cpath d='M8 11V7a4 4 0 0 1 8 0v4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer-admin-link:hover { color: var(--gold) !important; }

.footer-contact { text-align: right; }

.footer-contact a {
  display: block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  transition: color 0.2s var(--ease);
}

.footer-contact a:hover { color: var(--text); }

.footer-contact p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

.footer-credit { margin-top: 0.35rem; }

.footer-contact .footer-credit a {
  display: inline;
  color: var(--text-soft);
  font-size: inherit;
  margin-bottom: 0;
}

.footer-contact .footer-credit a:hover { color: var(--gold); }

/* === RESPONSIVE — TABLET === */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual { max-width: 560px; }

  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual { justify-content: flex-start; }

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

  .process-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-contact { text-align: left; }
}

/* === RESPONSIVE — MOBILE === */
@media (max-width: 600px) {
  .cards-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 2rem; }

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

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    gap: 0;
    display: none;
    z-index: 99;
  }

  .site-nav a {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
  }

  .site-nav a:last-child { border-bottom: none; }

  .site-nav.open  { display: flex; }
  .nav-toggle     { display: flex; }
  .header-cta     { display: none; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn { text-align: center; }

  .trust-row    { gap: 1.25rem; flex-wrap: wrap; }
  .trust-sep    { display: none; }

  /* Hero fleet card — tighter on mobile */
  .fleet-stat        { gap: 0.5rem; }
  .fleet-stat-icon   { width: 22px; height: 22px; }
  .fleet-stat-text strong { font-size: 1.12rem; }
  .fleet-stat-text span   { font-size: 0.72rem; }
  .fleet-card-body   { padding: 1.2rem 1rem 1rem; }
  .fleet-card-tags span   { margin: 0 0.2rem; }

  .strip-inner  { gap: 0.75rem; font-size: 0.75rem; }
  .strip-sep    { display: none; }

  /* Footer */
  .footer-nav { flex-wrap: wrap; gap: 1rem; }

  /* Inner pages — CTA */
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Inner pages — services features */
  .service-feature {
    font-size: 0.85rem;
    padding: 0.75rem 0.9rem;
    gap: 0.7rem;
  }

  /* About — badges wrap */
  .about-badges { flex-wrap: wrap; gap: 0.5rem; }

  /* Floating buttons — reduce size on small screens */
  .whatsapp-btn {
    width: 2.8rem;
    height: 2.8rem;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .back-to-top {
    bottom: 5.1rem;
    right: 1.25rem;
    width: 2.4rem;
    height: 2.4rem;
  }

  /* Process grid — tighter on mobile */
  .process-card { padding: 1.5rem; }
}

/* =====================================================
   INNER PAGES
   ===================================================== */

/* === PAGE HERO === */
.page-hero {
  padding: clamp(1.75rem, 3vw, 2.75rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 55% at 12% 50%, rgba(202, 138, 4, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0.5rem 0 1.25rem;
}

.page-hero .hero-desc { margin-bottom: 0; }

/* === SERVICE DETAIL SECTIONS === */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-of-type { border-bottom: none; }

.service-detail-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.4rem 0 1.25rem;
}

.service-detail-copy > p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: border-color 0.2s var(--ease);
}

.service-feature:hover { border-color: var(--border-strong); }

.service-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  display: block;
  background-color: var(--surface-3);
}

/* === CTA SECTION === */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: clamp(3rem, 5vw, 4.5rem) 0;
}

.cta-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.cta-copy p { color: var(--text-soft); }

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* === ABOUT VALUES GRID === */
.about-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 1.6rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s var(--ease);
}

.value-card:hover { border-color: var(--border-strong); }

.value-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-sm);
  background: var(--gold-faint);
  border: 1px solid rgba(202, 138, 4, 0.2);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.value-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.value-card:hover .value-icon {
  background: var(--gold-dim);
  border-color: rgba(202, 138, 4, 0.35);
}

.value-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.contact-info-card { margin-top: 2rem; }

.about-lead {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 7rem;
}

.stat-card {
  padding: 1.75rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
}

.stat-card-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-card-label {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* === ACTIVE NAV PAGE LINK === */
.site-nav a[aria-current="page"],
.footer-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* === CONTENT-VISIBILITY for below-fold sections === */
.services-section,
.process-section,
.fleet-section,
.about-section,
.why-section,
.testimonials-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* === RESPONSIVE — inner page components === */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.2s var(--ease), color 0.2s var(--ease);
}

.card-link::after {
  content: '→';
}

.card-link:hover {
  color: var(--gold-hover);
  gap: 0.6rem;
}

.section-footer {
  display: flex;
  justify-content: center;
  padding-top: 2.5rem;
}

/* === FORM VALIDATION === */
.form-field--error input,
.form-field--error textarea {
  border-color: rgba(239, 68, 68, 0.55);
  background: rgba(239, 68, 68, 0.04);
}

.form-field-error {
  display: block;
  font-size: 0.78rem;
  color: #fca5a5;
  margin-top: 0.35rem;
  padding-left: 0.25rem;
}

.form-success {
  display: none;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  background: #f0fdf4;
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #166534;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

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

.form-error {
  display: none;
  padding: 1.1rem 1.25rem;
  border-radius: var(--r-md);
  background: #fef2f2;
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #991b1b;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

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

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* === WHATSAPP BUTTON === */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.32);
  z-index: 201;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.44);
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 5.75rem;
  right: 1.75rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  z-index: 200;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--surface-3);
  color: var(--text);
}

/* === 404 PAGE === */
.error-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.error-inner {
  text-align: center;
  max-width: 520px;
}

.error-inner h1 {
  margin: 0.5rem 0 1.25rem;
}

.error-inner .hero-desc {
  margin-bottom: 2.5rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Flip image above text on mobile for service detail */
  .service-detail .service-visual { order: -1; }

  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .about-visual-stack {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
  }

  .about-visual-stack img {
    display: none;
  }

  .stat-card { text-align: center; }

  /* Fleet */
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === RESPONSIVE — SMALL PHONE (375px) === */
@media (max-width: 400px) {
  .container { width: calc(100% - 2rem); }

  .trust-row { flex-wrap: wrap; gap: 1rem; }
  .trust-sep { display: none; }

  .vehicle-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .about-visual-stack {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    padding: 0.85rem 1.5rem;
  }

  .cards-grid { gap: 1rem; }

  .card { padding: 1.5rem; }

  .cta-actions .btn { padding: 0.85rem 1.5rem; }

  .about-badges span {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }
}

/* === PRIVACY PAGE === */
.privacy-content {
  max-width: 720px;
}

.privacy-updated {
  font-size: 0.83rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
}

.privacy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-content ul {
  color: var(--text-soft);
  line-height: 1.8;
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}

.privacy-content a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.privacy-content a:hover { color: var(--gold-hover); }

/* === JAECOO PROMO === */
.jaecoo-promo {
  background: linear-gradient(135deg, #0f0c07 0%, #1a1208 50%, #0f0c07 100%);
  border-top: 1px solid rgba(202, 138, 4, 0.15);
  border-bottom: 1px solid rgba(202, 138, 4, 0.15);
  overflow: hidden;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  background: var(--gold-faint);
  border: 1px solid rgba(202, 138, 4, 0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.promo-copy { color: #FAFAF9; }

.promo-copy .eyebrow {
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.promo-copy h2 {
  color: #FAFAF9;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.6rem);
  margin-bottom: 1rem;
}

.promo-price { color: var(--gold); }

.promo-copy p {
  color: rgba(250, 250, 249, 0.7);
  line-height: 1.7;
  max-width: 38ch;
  margin-bottom: 2rem;
}

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

.promo-visual { position: relative; }

.promo-img-wrap {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.promo-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.promo-price-tag {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(202, 138, 4, 0.35);
  border-radius: var(--r-sm);
  padding: 0.7rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.15;
}

.promo-price-main {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.promo-price-unit {
  font-size: 0.78rem;
  color: rgba(250, 250, 249, 0.6);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .promo-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .promo-copy p { max-width: none; }
}

/* === BOOKING PAGE === */
.booking-section { padding-block: clamp(3rem, 5vw, 5rem); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.booking-copy h2 {
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.4rem);
  margin-bottom: 1rem;
}

.booking-copy > p {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.booking-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.booking-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.booking-step-num {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 2rem;
  line-height: 1;
  margin-top: 0.05rem;
}

.booking-contact {
  padding: 1.4rem 1.6rem;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-contact p {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin: 0 0 0.25rem;
}

.booking-form { background: var(--surface-2); border-radius: var(--r-md); padding: 2rem; border: 1px solid var(--border); }

.booking-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-legend {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.date-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-optional {
  font-weight: 400;
  color: var(--text-dim);
  font-size: 0.8rem;
}

.booking-form .form-select,
.contact-form .form-select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.93rem;
  font-family: var(--font-body);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A29E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.booking-form .form-select:focus,
.contact-form .form-select:focus {
  outline: none;
  border-color: rgba(202, 138, 4, 0.5);
  box-shadow: 0 0 0 3px rgba(202, 138, 4, 0.07);
}

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

  .date-row { grid-template-columns: 1fr; }
}

/* === ACCESSIBILITY — REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
