:root {
  --black: #050505;
  --ink: #111111;
  --charcoal: #171717;
  --panel: #202020;
  --gold: #c7a04a;
  --gold-light: #f1d58a;
  --ivory: #f7f2e8;
  --muted: #b9b1a2;
  --line: rgba(241, 213, 138, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ivory);
  background: var(--black);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: #ddd4c5; margin: 0 0 1rem; }
h1, h2, h3 { line-height: 1.05; margin: 0 0 1rem; letter-spacing: 0; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 7vw, 6.8rem); max-width: 920px; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: 1.25rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--gold);
  color: #090909;
  padding: .75rem 1rem;
  z-index: 1000;
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1220px;
  margin: 0 auto;
  padding: .85rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: 248px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
}

.brand strong { display: block; font-size: .9rem; }
.brand small { display: block; color: var(--muted); font-size: .74rem; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.05rem;
  flex: 1;
  font-size: .9rem;
}

.nav-links a { color: #e9dfcf; }
.nav-links a:hover, .city-links a:hover, .footer-links a:hover { color: var(--gold-light); }

.nav-phone {
  border: 1px solid var(--gold);
  padding: .7rem .95rem;
  color: var(--gold-light);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  color: var(--ivory);
  background: transparent;
  border: 1px solid var(--line);
  padding: .65rem .8rem;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: url("images/wedding-limo-shuttle-cross-county.webp") center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, var(--black), transparent);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.62), rgba(0,0,0,.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 7rem 1rem 5rem;
}

.sub-hero {
  min-height: 58vh;
  background-image: var(--hero-image);
}

.hero-copy {
  max-width: 720px;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.eyebrow {
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-actions, .form-row, .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.2rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.btn-primary {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-secondary {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(0,0,0,.36);
}

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

.trust-row {
  margin-top: 1.5rem;
  color: #f3eadb;
}

.trust-row span {
  border-left: 2px solid var(--gold);
  padding-left: .75rem;
}

.container {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.band {
  background: #111;
  border-block: 1px solid rgba(255,255,255,.06);
}

.band-dark {
  background: linear-gradient(180deg, #070707, #151515);
  border-block: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 2rem;
  align-items: start;
}

.feature-panel, .quote-card, .map-card, .meta-panel {
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.4rem;
}

.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li { padding: .55rem 0 .55rem 1.6rem; position: relative; color: #efe6d7; }
.check-list li::before { content: ">"; position: absolute; left: 0; color: var(--gold-light); font-weight: 900; }

.section-heading {
  max-width: 830px;
  margin-bottom: 2rem;
}

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

.service-card {
  min-height: 205px;
  padding: 1.2rem;
  border: 1px solid rgba(241,213,138,.2);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.service-card span {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 1.12rem;
}

.service-card p { margin: .5rem 0 0; }
.service-card:hover { border-color: var(--gold); transform: translateY(-2px); }

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

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(241,213,138,.18);
}

.fleet-card {
  border: 1px solid rgba(241,213,138,.18);
  background: rgba(255,255,255,.045);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.fleet-card div {
  padding: 1rem;
}

.fleet-card h3 {
  color: var(--gold-light);
}

.city-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.city-links a {
  border: 1px solid rgba(241,213,138,.18);
  padding: .9rem 1rem;
  background: rgba(255,255,255,.045);
  color: #eee1ce;
  font-weight: 800;
}

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

blockquote {
  margin: 0;
  padding: 1.3rem;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.05);
  color: #f0e7d8;
}

cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold-light);
  font-style: normal;
  font-weight: 800;
}

.quote-map {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 1rem;
  align-items: stretch;
}

.quote-form {
  display: grid;
  gap: .85rem;
}

label span {
  display: block;
  color: var(--gold-light);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: .35rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(241,213,138,.22);
  background: rgba(0,0,0,.36);
  color: var(--ivory);
  padding: .9rem;
  font: inherit;
}

textarea { min-height: 116px; resize: vertical; }

.map-card iframe {
  width: 100%;
  min-height: 410px;
  border: 0;
  filter: grayscale(.2) contrast(1.05);
}

.content-list {
  display: grid;
  gap: 1rem;
}

.content-list article {
  padding: 1.1rem;
  border: 1px solid rgba(241,213,138,.16);
  background: rgba(255,255,255,.04);
}

.faq {
  display: grid;
  gap: .75rem;
}

.faq details {
  border: 1px solid rgba(241,213,138,.18);
  background: rgba(255,255,255,.045);
  padding: 1rem;
}

.faq summary {
  cursor: pointer;
  color: var(--gold-light);
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-inner {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
}

.footer-links {
  display: grid;
  gap: .55rem;
}

.footer-links a { color: #d9cfbf; }

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: .75rem;
}

.social-icons.compact {
  margin: .9rem 0 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .65rem .85rem;
  border: 1px solid rgba(241,213,138,.24);
  background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  color: #fff4df;
  font-weight: 900;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon.instagram {
  box-shadow: inset 0 0 0 1px rgba(241, 213, 138, .08), 0 10px 30px rgba(199, 160, 74, .08);
}

.social-icon.tiktok {
  color: #f6f1e8;
  border-color: rgba(255,255,255,.22);
}

.social-icon:hover {
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.fine-print {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
  color: #9d9488;
  font-size: .9rem;
}

@media (max-width: 940px) {
  .nav { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-phone { margin-left: auto; }
  .two-col, .quote-map, .footer-inner { grid-template-columns: 1fr; }
  .card-grid, .gallery, .review-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .brand { min-width: 0; }
  .brand strong { font-size: .78rem; }
  .brand small { max-width: 170px; }
  .nav-phone { width: 100%; text-align: center; justify-content: center; }
  .hero { min-height: 76vh; }
  .sub-hero { min-height: 52vh; }
  .hero-content { padding: 5rem 1rem 3rem; }
  .btn, .hero-actions { width: 100%; }
  .card-grid, .gallery, .review-grid, .city-links { grid-template-columns: 1fr; }
  .container { padding: 3.5rem 0; }
  .map-card iframe { min-height: 320px; }
}
