/* ============== LUXE AUTOMOTIVE THEME ============== */
:root{
  --bg: #f5f6f7;
  --text: #2b2f33;
  --muted: #6f7780;

  --primary-900: #0f1b2a;   /* midnight graphite/navy */
  --primary-800: #15263a;
  --primary-700: #1b324a;

  --surface: #ffffff;
  --ring: #d4af37;          /* classic gold */
  --ring-700: #c39b26;
  --ring-600: #e0c35a;

  --card-shadow: 0 10px 24px rgba(15, 27, 42, .10);
  --radius: 12px;
}

/* ===== RESET ===== */
*{ box-sizing: border-box; margin:0; padding:0 }
img{ max-width:100%; display:block }

/* ===== BASE ===== */
html{ scroll-behavior:smooth }
body{
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding: 20px;
}

/* ===== BRAND (non-sticky) ===== */
.site-header .brand{
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--primary-900), var(--primary-800));
  border-radius: var(--radius);
  padding: 36px 14px 22px;
  box-shadow: var(--card-shadow);
}
.site-header .brand h1{
  font-size: clamp(28px, 4.2vw, 44px);
  letter-spacing: .3px;
  font-weight: 800;
  margin-bottom: 6px;
}
.site-header .brand p{
  opacity: .95;
  font-weight: 600;
}

/* ===== STICKY NAV (only this sticks; needs #nav-placeholder + JS) ===== */
.site-nav{
  position: relative;             /* becomes fixed when .stuck via JS */
  z-index: 1000;
  display: flex; justify-content: center; gap: 1.6rem; flex-wrap: wrap;
  padding: .7rem 1rem;
  margin-top: 10px;
  color: #fff;
  background: var(--primary-900);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: background .25s ease, box-shadow .25s ease, transform .2s ease;
}
.site-nav.stuck{
  position: fixed; top: 0; left: 0; right: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(15,27,42,.92);
  backdrop-filter: saturate(140%) blur(4px);
}
#nav-placeholder{ height:0 }           /* JS sets height when stuck */

/* Nav links */
.site-nav a{
  position: relative;
  color:#fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  padding-bottom: 2px;
  transition: color .25s ease;
}

/* Gold underline animation */
.site-nav a::after{
  content:"";
  position:absolute; left:0; bottom:-6px;
  width:0; height:2px;
  background: linear-gradient(90deg, var(--ring), var(--ring-600));
  transition: width .25s ease;
}
.site-nav a:hover{ color:#e6edf5 }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after{ width:100% }

/* Book Now (gold CTA) */
.site-nav a.book-now{
  background: linear-gradient(90deg, var(--ring), var(--ring-600));
  color:#222;
  padding:.5rem 1rem;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 6px 18px rgba(212,175,55,.25);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.site-nav a.book-now:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 24px rgba(212,175,55,.35);
}

/* ===== LAYOUT / TYPO ===== */
main{ max-width: 980px; margin: 0 auto; padding: 1rem }
section{
  background: var(--surface);
  padding: 22px;
  margin: 18px 0;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}
h2{
  color: var(--primary-900);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing:.2px;
}

/* Lists with subtle checkmarks in luxe purple-blue */
ul{ list-style:none; padding-left: 22px }
ul li{ position:relative; margin: 10px 0; }
ul li::before{
  content:"✔";
  position:absolute; left:-22px; top:0;
  color:#6547c3; font-weight:700;
}

/* ===== CARDS / GRID (pricing, testimonials) ===== */
.grid{ display:grid; gap:1rem; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)) }
.card{
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
  padding: 16px;
}
.badge{
  display:inline-block;
  font-size:.85rem;
  padding:.2rem .6rem;
  border-radius:999px;
  border:1px solid #e8e2c2;
  color:#7a5f0e;
  background: #fff9e0;
}

/* ===== FORM ===== */
form{ display:flex; flex-direction:column; gap: 12px }
label{ font-weight:700 }
input,select,textarea,button{
  font-size: 1rem;
  padding: 12px 12px;
  border-radius: 10px;
  border:1px solid #d8dde3;
  background:#fbfcfd;
  transition: border .2s ease, box-shadow .2s ease, background .2s ease;
}
input:focus,select:focus,textarea:focus{
  outline:none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(212,175,55,.25);
  background:#fff;
}
button{
  background: var(--primary-900);
  color:#fff;
  border:none;
  font-weight:900;
  letter-spacing:.3px;
  cursor:pointer;
  box-shadow: var(--card-shadow);
}
button:hover{ background: var(--primary-700) }

/* ===== CONTACT / FOOTER ===== */
#contact p{ margin:6px 0; color: var(--muted) }
footer{
  text-align:center;
  background: var(--primary-900);
  color:#eaf0f6;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-top: 26px;
}

/* ===== ANCHOR OFFSET FOR STICKY NAV ===== */
#booking{ scroll-margin-top: 100px }
