/* ==========================================================================
   The Executive Limo — design system
   Ported from the original React/Tailwind build. Values are 1:1 with source.
   ========================================================================== */

:root {
  --gold: #d4a853;
  --gold-light: #e5c77f;
  --gold-dark: #b8860b;
  --gold-deep: #8b6914;
  /* The original uses a second, slightly cooler gold on the inner pages. */
  --gold-alt: #d4af37;

  --black: #000;
  --app-bg: #050505;
  --dark: #0d0d0d;
  --darker: #0a0a0a;
  --gray: #1a1a1a;

  --text: #fff;
  --text-2: #e0e0e0;
  --muted: #888;

  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cinzel", Georgia, serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --header-h: 80px;
  --radius: 8px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --------------------------------------------------------------- reset -- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.2;
}
h4, h5, h6 { margin: 0; font-weight: 600; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

button { font-family: inherit; font-size: inherit; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.screen-reader-text {
  position: absolute !important;
  clip-path: inset(50%);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: #000;
  padding: 12px 20px;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ----------------------------------------------------------- structure -- */

.site { background-color: var(--app-bg); min-height: 100vh; }

.wrap      { width: 100%; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.wrap-7xl  { max-width: 1280px; }
.wrap-6xl  { max-width: 1152px; }
.wrap-4xl  { max-width: 896px; }
.wrap-3xl  { max-width: 768px; }
.wrap-2xl  { max-width: 672px; }

@media (min-width: 768px) {
  .wrap { padding-left: 48px; padding-right: 48px; }
}

.section        { padding-top: 96px; padding-bottom: 96px; }
.section-sm     { padding-top: 64px; padding-bottom: 64px; }
.section-black  { background: var(--black); }
.section-dark   { background: var(--dark); }
.section-darker { background: var(--darker); }
.section-app    { background: var(--app-bg); }
.page-head      { padding-top: 128px; padding-bottom: 96px; }

.relative { position: relative; }
.stack-z  { position: relative; z-index: 10; }

/* ------------------------------------------------------------ typography */

.eyebrow {
  color: var(--gold-alt);
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.title-serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: normal; }

.h-xl { font-size: 2.25rem; }
.h-lg { font-size: 1.875rem; }
.h-md { font-size: 1.5rem; }

@media (min-width: 768px) {
  .h-xl { font-size: 3rem; }
  .h-lg { font-size: 2.25rem; }
  .h-md { font-size: 1.875rem; }
}
@media (min-width: 1024px) {
  .h-xl { font-size: 3.75rem; }
}

.lead        { color: rgba(255, 255, 255, 0.6); font-size: 1.125rem; }
.muted       { color: var(--muted); }
.muted-white { color: rgba(255, 255, 255, 0.5); }
.text-soft   { color: var(--text-2); }
.text-gold   { color: var(--gold); }

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.center { text-align: center; }

/* --------------------------------------------------------------- buttons */

.btn-gold,
.btn-outline-gold {
  display: inline-block;
  border-radius: 4px;
  padding: 14px 32px;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  border: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 30%, var(--gold-dark) 70%, var(--gold-deep));
  box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #000;
  font-weight: 600;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid rgba(212, 168, 83, 0.5);
  color: var(--gold);
  font-weight: 500;
}
.btn-outline-gold:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold);
}

.btn-block { display: block; width: 100%; }
.btn-lg    { padding: 16px 32px; }
.btn-sm    { padding: 8px 16px; font-size: 0.75rem; }

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn-row-center { justify-content: center; }
@media (min-width: 640px) {
  .btn-row { flex-direction: row; }
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ----------------------------------------------------------- decorations */

.gold-divider {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 50%, var(--gold-dark));
  transform: rotate(45deg);
}
.gold-divider-left { margin-left: 0; }

.bokeh-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 90%, rgba(212, 168, 83, 0.15) 0, transparent 25%),
    radial-gradient(circle at 90% 10%, rgba(212, 168, 83, 0.1) 0, transparent 20%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0, transparent 15%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0, transparent 15%);
}

.star-gold { fill: var(--gold); color: var(--gold); }

.stars { display: flex; gap: 4px; }

/* --------------------------------------------------------------- header -- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-header.is-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header-logo img { height: 80px; width: auto; }

.nav-desktop { display: none; align-items: center; gap: 24px; }

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.is-current { color: #fff; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.is-current::after { width: 100%; }

.header-cta { display: none; align-items: center; gap: 16px; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.header-phone:hover { color: var(--gold-light); }

.header-book { padding: 12px 24px; font-size: 0.875rem; }

.menu-toggle {
  display: inline-flex;
  padding: 8px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .nav-desktop, .header-cta { display: flex; }
  .menu-toggle { display: none; }
}

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
@media (min-width: 1024px) { .mobile-menu { display: none; } }

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.mobile-menu-head img { height: 40px; width: auto; }
.mobile-menu-close { background: none; border: none; color: #fff; padding: 8px; cursor: pointer; }

.mobile-nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-nav a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.mobile-nav a:hover { color: var(--gold); }

.mobile-menu-foot { margin-top: auto; padding-top: 32px; display: grid; gap: 16px; }
.mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold);
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100vh;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.6), #000);
}
.hero-fill {
  position: absolute;
  top: 100vh; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: #000;
}

.hero-inner { position: relative; z-index: 10; padding-top: 128px; padding-bottom: 64px; }

.hero-logo { text-align: center; margin-bottom: 24px; }
.hero-logo img { height: 160px; width: auto; margin: 0 auto; }
.hero-tagline {
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .hero-logo img { height: 208px; }
}

.hero-headline { text-align: center; margin-bottom: 48px; }
.hero-headline h1 {
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: #fff;
  margin-bottom: 16px;
}
.hero-headline .sub {
  color: var(--text-2);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .hero-headline h1 { font-size: 2.25rem; }
  .hero-headline .sub { font-size: 1.25rem; }
}
@media (min-width: 1024px) {
  .hero-headline h1 { font-size: 3rem; }
}

.cta-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 20px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.05);
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cta-strip span.item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.875rem;
}
.cta-strip .dot { display: none; color: rgba(212, 168, 83, 0.4); }
@media (min-width: 640px) {
  .cta-strip { gap: 16px; }
  .cta-strip .dot { display: inline; }
}

.hero-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.hero-aside { display: none; }
@media (min-width: 1024px) {
  .hero-aside { display: grid; gap: 24px; }
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 10px); }
}

/* -------------------------------------------------------------- feature -- */

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 768px;
  margin: 64px auto 0;
}

.feature-card { padding: 24px; text-align: center; }
.feature-card h3 { font-size: 0.875rem; font-weight: 500; color: #fff; margin-bottom: 4px; }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.05);
  border-radius: 50%;
}
.feature-icon svg { color: var(--gold); }
.feature-icon-left { margin-left: 0; }

.feature-box {
  padding: 32px;
  background: var(--darker);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.feature-box:hover { border-color: rgba(212, 175, 55, 0.3); }
.feature-box h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 8px; }
.feature-box p { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.feature-box svg { color: var(--gold-alt); margin-bottom: 16px; }
.feature-box.center svg { margin-left: auto; margin-right: auto; }

.contact-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 672px;
  margin: 0 auto;
  padding: 16px 32px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(13,13,13,0.95), rgba(26,26,26,0.95) 50%, rgba(13,13,13,0.95));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact-bar a { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); font-weight: 500; transition: color 0.3s ease; }
.contact-bar a:hover { color: var(--gold-light); }
.contact-bar .sep { display: none; width: 1px; height: 24px; background: rgba(212, 168, 83, 0.3); }
@media (min-width: 640px) { .contact-bar .sep { display: block; } }

/* -------------------------------------------------------------- cards --- */

.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) {
  .card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.service-card {
  display: block;
  height: 100%;
  padding: 32px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.service-card:hover { border-color: rgba(212, 168, 83, 0.3); }
.service-card h3 { font-family: var(--font-body); font-size: 1.25rem; font-weight: 500; color: #fff; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

.testimonial-card {
  padding: 32px;
  background: rgba(13, 13, 13, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
}
.testimonial-card p.quote {
  color: var(--text-2);
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.testimonial-card p.who { color: #fff; font-weight: 500; }

.split {
  display: grid;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.split img { width: 100%; }
/* Only the home "Why Choose Us" shot was rounded in the original; the
   About and Corporate images ran square-cornered. */
.split img.is-rounded { border-radius: var(--radius); }

.prose-block { display: grid; gap: 16px; color: var(--text-2); line-height: 1.7; }
.prose-block strong { color: #fff; font-weight: 600; }

/* ------------------------------------------------------------- sections -- */

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 { color: #fff; margin-bottom: 16px; }
.section-head p  { color: var(--muted); max-width: 672px; margin: 0 auto; }
.section-head .gold-divider { margin-bottom: 32px; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.stat { text-align: center; }
.stat .value { display: block; font-size: 2.25rem; font-weight: 600; color: var(--gold-alt); }
.stat .label { color: rgba(255, 255, 255, 0.5); margin-top: 8px; }
@media (min-width: 768px) { .stat .value { font-size: 3rem; } }

.step { text-align: center; }
.step .num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--gold-alt); }
.step h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: #fff; margin: 16px 0 8px; }
.step p { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }

.ratio-43 { aspect-ratio: 4 / 3; overflow: hidden; }
.ratio-43 img { width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------------------------------------- fleet -- */

.fleet-list { display: grid; gap: 64px; }

.fleet-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.fleet-card.is-flagship {
  border: 2px solid var(--gold);
  background: linear-gradient(to bottom, var(--gray), var(--dark));
}
.fleet-card .body { padding: 32px; }
.fleet-card h2 { font-size: 1.5rem; color: #fff; margin-bottom: 8px; }
.fleet-card .desc { color: var(--gold); font-size: 0.875rem; margin-bottom: 16px; }
@media (min-width: 768px) { .fleet-card h2 { font-size: 1.875rem; } }

.flagship-badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 10;
  padding: 4px 12px;
  border-radius: 9999px;
  background: var(--gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.875rem;
}
.fleet-meta span { display: inline-flex; align-items: center; gap: 8px; }

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 768px) { .spec-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.spec-list li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.875rem; }
.spec-list svg { color: var(--gold); flex-shrink: 0; }

.include-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (min-width: 768px) { .include-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.include-item { text-align: center; }
.include-item .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.1);
}
.include-item .dot svg { color: var(--gold); }
.include-item h3 { font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; color: #fff; margin-bottom: 4px; }
.include-item p { color: var(--muted); font-size: 0.75rem; }

/* -------------------------------------------------------------- airport -- */

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-media .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,0.8), var(--app-bg));
}

.airport-card {
  padding: 32px;
  background: var(--darker);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.airport-card .head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.airport-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.1);
}
.airport-card .icon svg { color: var(--gold-alt); }
.airport-card h3 { font-family: var(--font-body); font-size: 1.125rem; font-weight: 500; color: #fff; }
.airport-card .dist { display: flex; align-items: center; gap: 8px; margin-top: 4px; color: rgba(255,255,255,0.5); font-size: 0.875rem; }
.airport-card .foot {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ------------------------------------------------------------ corporate -- */

.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.benefit-grid li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.7); }
.benefit-grid .mark { width: 8px; height: 8px; background: var(--gold-alt); flex-shrink: 0; }

.quote-panel {
  padding: 32px;
  background: var(--darker);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.quote-panel h3 { font-family: var(--font-serif); font-size: 1.25rem; color: #fff; margin-bottom: 24px; }
.quote-panel > p { color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }
.quote-panel ul { display: grid; gap: 12px; margin-bottom: 32px; }
.quote-panel li { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.7); font-size: 0.875rem; }
.quote-panel li svg { color: var(--gold-alt); flex-shrink: 0; }

/* -------------------------------------------------------------- contact -- */

.contact-list { display: grid; gap: 24px; margin-bottom: 48px; }
.contact-list .row { display: flex; align-items: flex-start; gap: 16px; }
.contact-list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
}
.contact-list .icon svg { color: var(--gold-alt); }
.contact-list .label { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.contact-list a { color: #fff; transition: color 0.3s ease; }
.contact-list a:hover { color: var(--gold-alt); }

.panel {
  padding: 24px;
  background: var(--darker);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.panel h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: #fff; margin-bottom: 16px; }
.panel p  { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; margin-bottom: 16px; }

.panel-dark {
  padding: 32px;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
}
.panel-dark h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 24px;
}
.panel-dark h3 svg { color: var(--gold); }

/* ---------------------------------------------------------------- forms -- */

.field { display: block; margin-bottom: 0; }

.field-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.input-light,
.input-light:is(textarea),
select.input-light {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}
textarea.input-light { height: auto; min-height: 150px; padding: 14px 16px; resize: vertical; }
.input-light::placeholder { color: rgba(255, 255, 255, 0.3); }
.input-light:focus { outline: none; border-color: rgba(212, 175, 55, 0.5); box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1); }

.input-dark {
  width: 100%;
  padding: 14px 16px;
  background: rgba(26, 26, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
}
.input-dark::placeholder { color: var(--muted); }
.input-dark:focus { outline: none; border-color: rgba(212, 168, 83, 0.5); box-shadow: 0 0 0 2px rgba(212, 168, 83, 0.1); }
.input-dark.has-icon { padding-left: 48px; }
textarea.input-dark { min-height: 80px; resize: none; }

.field-grid { display: grid; gap: 24px; }
.field-grid-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 640px) { .field-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.field-grid-tight { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.form-stack { display: grid; gap: 24px; }
.form-stack-tight { display: grid; gap: 12px; }

.input-wrap { position: relative; }
.input-wrap > svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  pointer-events: none;
}

.form-note { color: var(--muted); font-size: 0.75rem; text-align: center; }

.form-msg { padding: 14px 16px; border-radius: 6px; font-size: 0.875rem; display: none; }
.form-msg.is-ok   { display: block; background: rgba(212, 168, 83, 0.1); border: 1px solid rgba(212, 168, 83, 0.4); color: var(--gold-light); }
.form-msg.is-err  { display: block; background: rgba(220, 60, 60, 0.1); border: 1px solid rgba(220, 60, 60, 0.4); color: #ff9b9b; }

.is-busy { opacity: 0.6; pointer-events: none; }

/* --------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-inner { padding-top: 64px; padding-bottom: 64px; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px)  { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.footer-brand img { height: 160px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; }
.footer-brand .rating { color: var(--gold); font-size: 0.875rem; margin-top: 8px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul { display: grid; gap: 12px; }

.footer-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-link:hover { color: var(--gold); }

.footer-contact { display: grid; gap: 16px; }
.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: #fff; }
.footer-contact a.gold { color: var(--gold); }
.footer-contact a.gold:hover { color: var(--gold-light); }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.875rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ------------------------------------------------------------- whatsapp -- */

.whatsapp-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.whatsapp-fab:hover { background: #20bd5a; transform: scale(1.1); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.35); }

/* --------------------------------------------------------- legal pages -- */

.legal h1 { font-family: var(--font-serif); font-size: 2.25rem; color: #fff; margin-bottom: 32px; }
.legal h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin: 32px 0 16px;
  letter-spacing: normal;
}
.legal p { color: rgba(255, 255, 255, 0.6); margin-bottom: 16px; }
.legal .updated { color: rgba(255, 255, 255, 0.6); margin-bottom: 24px; }

/* ------------------------------------------------------------- reveal --- */

/* Scoped to .js so that if the script never runs — blocked, errored, an old
   browser — every section is simply visible rather than stuck at opacity 0. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
/* The sideways slide only applies from the two-column breakpoint up. On a
   phone everything is stacked, and a 30px horizontal offset on a full-width
   block pushes past the viewport edge while it waits to be revealed. */
@media (min-width: 1024px) {
  .js .reveal-left  { transform: translateX(-30px); }
  .js .reveal-right { transform: translateX(30px); }
}
.js .reveal.is-in.reveal-left,
.js .reveal.is-in.reveal-right { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .scroll-cue { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------- responsive helpers --- */

[data-mobile-only] { display: block; }
.hide-mobile       { display: none; }

@media (min-width: 1024px) {
  [data-mobile-only] { display: none; }
  .hide-mobile       { display: block; }
}

/* Custom quote page: sidebar + form */
.quote-layout { display: grid; gap: 48px; }
@media (min-width: 1024px) {
  .quote-layout { grid-template-columns: 1fr 2fr; }
}

/* The mobile drawer and a few other pieces set an explicit `display`, which
   would otherwise beat the `hidden` attribute the scripts toggle. */
[hidden] { display: none !important; }

/* Match the dark select styling on the light-panel forms too, so the native
   dropdown arrow does not break the look. */
select.input-light {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
select.input-light option { background: #1a1a1a; color: #fff; }
