:root {
  --ink: #0b0b0d;
  --ink-soft: #17171a;
  --cream: #f4f0e8;
  --paper: #fbfaf7;
  --gold: #c9a86a;
  --gold-light: #e6cf9e;
  --muted: #77736c;
  --line: rgba(11, 11, 13, .14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: var(--gold);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2em;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: var(--gold-light);
  font-size: 8px;
  letter-spacing: .34em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
}
.site-header nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.site-header nav a {
  position: relative;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  transition: color .2s;
}
.site-header nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-header nav a:hover { color: #fff; }
.site-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 13px 20px; border: 1px solid rgba(255,255,255,.38); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  color: #fff;
  overflow: hidden;
  background: #090a0c;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("assets/limousine-night.jpg") center 58% / cover no-repeat;
  animation: heroReveal 1.4s ease-out both;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,5,7,.89) 0%, rgba(4,5,7,.64) 44%, rgba(4,5,7,.14) 80%),
    linear-gradient(0deg, rgba(5,5,7,.72) 0%, transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(180px, 24vh, 250px) 5vw 100px;
}
.eyebrow {
  margin: 0 0 25px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #9a7940; }
.hero h1, h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(56px, 7.1vw, 108px); }
h2 { font-size: clamp(44px, 5vw, 76px); }
h1 em, h2 em { color: var(--gold-light); font-weight: 500; }
.hero-copy {
  max-width: 570px;
  margin: 32px 0 38px;
  color: rgba(255,255,255,.72);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 54px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background .25s, color .25s, transform .25s;
}
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--ink); background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.button-ghost { color: #fff; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.02); }
.button-ghost:hover { background: #fff; color: var(--ink); }
.hero-facts {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 56px;
  display: flex;
  border-top: 1px solid rgba(255,255,255,.24);
}
.hero-facts div { min-width: 125px; padding: 19px 18px 0; }
.hero-facts strong { display: block; color: var(--gold-light); font-family: var(--serif); font-size: 27px; font-weight: 500; }
.hero-facts span { display: block; margin-top: 3px; color: rgba(255,255,255,.54); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.5);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}
.scroll-cue i { display: block; width: 44px; height: 1px; background: var(--gold); }

.section { padding: 120px 7vw; }
.section-label {
  margin-bottom: 80px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.section-label span { margin-right: 18px; color: #9a7940; }
.section-label.light { color: rgba(255,255,255,.44); border-color: rgba(255,255,255,.14); }
.section-label.light span { color: var(--gold-light); }
.intro { background: var(--paper); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 9vw;
  margin-bottom: 80px;
}
.intro h2 { color: var(--ink); }
.intro-copy p {
  margin: 0 0 31px;
  color: #67635c;
  font-size: 17px;
  line-height: 1.8;
}
.text-link {
  display: inline-flex;
  gap: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
}
.feature-image { position: relative; height: min(58vw, 670px); overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: min(390px, 50%);
  padding: 38px 44px;
  display: flex;
  gap: 18px;
  background: var(--cream);
}
.floating-card p { margin: 4px 0 0; font-family: var(--serif); font-size: 22px; line-height: 1.4; }
.quote-mark { color: var(--gold); font-family: var(--serif); font-size: 45px; line-height: 1; }

.occasions { color: #fff; background: var(--ink); }
.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: end;
  gap: 8vw;
  margin-bottom: 70px;
}
.section-heading > p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.54);
  font-size: 16px;
  line-height: 1.75;
}
.occasion-grid { display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 12px; }
.occasion-card {
  position: relative;
  min-height: 530px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.occasion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3,3,4,.88), rgba(3,3,4,.08) 70%);
  transition: background .3s;
}
.occasion-card:hover::before { background: linear-gradient(0deg, rgba(3,3,4,.95), rgba(3,3,4,.02) 80%); }
.occasion-card > * { position: relative; z-index: 1; }
.occasion-card > span { color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .18em; }
.occasion-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.occasion-card p { max-width: 290px; margin: 0; color: rgba(255,255,255,.59); font-size: 14px; line-height: 1.65; }
.occasion-wedding { background-image: url("assets/limousine-night.jpg"); background-position: 34% center; }
.occasion-night { background-image: url("assets/limousine-interior.jpg"); }
.occasion-corporate { background-image: url("assets/luxury-car.jpg"); }

.services { background: var(--cream); }
.services-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 10vw; }
.services-sticky { align-self: start; position: sticky; top: 50px; }
.services-sticky > p:last-child { max-width: 420px; margin: 32px 0 0; color: var(--muted); line-height: 1.7; }
.service-list { border-top: 1px solid var(--line); }
.service-list article {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.service-icon { color: #9a7940; font-family: var(--serif); font-size: 29px; }
.service-list h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.service-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 11vw;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(7,7,9,.97), rgba(7,7,9,.87)),
    url("assets/luxury-car.jpg") center / cover;
}
.contact-copy > p:not(.eyebrow) { max-width: 480px; margin: 30px 0; color: rgba(255,255,255,.58); line-height: 1.75; }
.phone-link { display: inline-flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.phone-link span { color: var(--gold-light); font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.phone-link strong { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.quote-form {
  align-self: end;
  padding: clamp(28px, 4vw, 56px);
  color: var(--ink);
  background: var(--paper);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.quote-form label {
  display: block;
  margin-bottom: 23px;
  color: #5f5b54;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 11px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #cbc5bb;
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color .2s;
}
.quote-form textarea { resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: #9a7940; }
.quote-form .button { width: 100%; margin-top: 5px; }
.form-note { margin: 12px 0 0; color: #8c877e; font-size: 10px; text-align: center; }

footer {
  padding: 55px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 35px;
  color: #fff;
  background: #050507;
  border-top: 1px solid rgba(255,255,255,.1);
}
footer > p { margin: 0; color: rgba(255,255,255,.38); font-size: 11px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 11px; }
.footer-links a:hover { color: var(--gold-light); }
.copyright { white-space: nowrap; }
.whatsapp-float {
  position: fixed;
  z-index: 15;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 8px 28px rgba(0,0,0,.24);
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 27px; fill: #fff; }

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 960px) {
  .site-header { height: 86px; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: block;
    border: 0;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 8px;
    width: 26px;
    height: 1px;
    background: #fff;
    transition: transform .25s, top .25s;
  }
  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:nth-child(2) { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(-45deg); }
  .site-header nav {
    position: fixed;
    inset: 0;
    padding: 120px 9vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    visibility: hidden;
    opacity: 0;
    background: #09090b;
    transition: opacity .25s, visibility .25s;
  }
  .site-header nav.open { visibility: visible; opacity: 1; }
  .site-header nav a { font-family: var(--serif); font-size: 31px; }
  .nav-cta { margin-top: 10px; font-family: var(--sans) !important; font-size: 13px !important; }
  .hero-content { padding-left: 7vw; padding-right: 7vw; }
  .hero-facts { right: 7vw; }
  .scroll-cue { display: none; }
  .intro-grid, .section-heading, .services-layout, .contact { grid-template-columns: 1fr; }
  .services-sticky { position: static; }
  .occasion-grid { grid-template-columns: 1fr 1fr; }
  .occasion-card:last-child { grid-column: 1 / -1; min-height: 430px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 82px 24px; }
  .section-label { margin-bottom: 54px; }
  .hero { min-height: 720px; }
  .hero-content { padding: 170px 24px 175px; }
  .hero h1 { font-size: clamp(50px, 15vw, 70px); }
  .hero-copy { font-size: 15px; line-height: 1.6; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 310px; }
  .hero-facts { left: 24px; right: 24px; bottom: 30px; justify-content: space-between; }
  .hero-facts div { min-width: 0; padding: 14px 8px 0; }
  .hero-facts strong { font-size: 21px; }
  .hero-facts span { font-size: 8px; }
  .intro-grid { gap: 37px; margin-bottom: 55px; }
  .feature-image { height: 520px; }
  .floating-card { right: 16px; bottom: 16px; left: 16px; min-width: 0; padding: 25px; }
  .floating-card p { font-size: 18px; }
  .section-heading { gap: 35px; margin-bottom: 48px; }
  .occasion-grid { grid-template-columns: 1fr; }
  .occasion-card, .occasion-card:last-child { grid-column: auto; min-height: 430px; }
  .service-list article { grid-template-columns: 42px 1fr; gap: 14px; }
  .contact { gap: 60px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { margin: 0 -8px; }
  footer { grid-template-columns: 1fr; padding: 50px 24px 90px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
