/* ============================================================
   Hayward Limo Service — single-page premium chauffeur site
   Aesthetic: black + cream + warm gold accent. Editorial serif
   display (Cormorant Garamond) + clean sans (Inter).
   ============================================================ */

:root {
  --ink:        #0c0a08;
  --ink-2:      #1a1714;
  --ink-3:      #2a2521;
  --cream:      #f4efe6;
  --paper:      #faf7f1;
  --line:       #d9d2c3;
  --line-dark:  #2e2823;
  --gold:       #b8945a;
  --gold-2:     #c9a76c;
  --muted:      #6e6557;
  --muted-2:    #a89d8b;

  --maxw: 1240px;
  --pad:  clamp(20px, 4vw, 40px);

  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 2px;
  --t: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-2);
  margin: 0 0 18px;
}
.eyebrow.dark { color: var(--gold); }

h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.08;
  color: var(--ink);
  max-width: 22ch;
}
.section-title.light { color: var(--cream); }
.section-sub {
  margin-top: 18px;
  max-width: 56ch;
  color: var(--muted);
  font-size: 16px;
}
.section-dark .section-sub { color: var(--muted-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .35s var(--t);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-line {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: var(--cream); }
.btn-line.light { border-color: var(--cream); color: var(--cream); }
.btn-line.light:hover { background: var(--cream); color: var(--ink); }

/* When btn-line appears on the dark hero overlay, it needs cream styling */
.hero .btn-line {
  border-color: rgba(244,239,230,.7);
  color: var(--cream);
}
.hero .btn-line:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,239,230,.25);
  padding: 10px 18px;
  font-size: 12.5px;
}
.btn-ghost:hover { background: rgba(244,239,230,.08); border-color: rgba(244,239,230,.5); }
.btn-ghost .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #76d36f; box-shadow: 0 0 10px #76d36faa;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(12,10,8,.55) 0%, rgba(12,10,8,0) 100%);
  transition: background .35s var(--t), box-shadow .35s var(--t), backdrop-filter .35s var(--t);
}
.site-header.is-scrolled {
  background: rgba(12,10,8,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(244,239,230,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--cream);
}
.brand-mark { width: 32px; height: 32px; color: var(--gold-2); flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 2px;
}
.site-nav { display: flex; gap: 32px; }
.site-nav a {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: .82;
  transition: opacity .25s, color .25s;
}
.site-nav a:hover { opacity: 1; color: var(--gold-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  padding: 120px 0 120px;
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url('../images/hero-sedan.png');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,10,8,.55) 0%, rgba(12,10,8,.15) 35%, rgba(12,10,8,.85) 100%),
    linear-gradient(90deg, rgba(12,10,8,.6) 0%, rgba(12,10,8,0) 60%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; padding-bottom: 40px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  max-width: 16ch;
  margin: 0 0 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-2);
}
.hero-sub {
  max-width: 60ch;
  color: rgba(244,239,230,.85);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: flex; gap: 36px;
  list-style: none; padding: 0; margin: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(244,239,230,.18);
  padding-top: 24px;
}
.hero-meta li {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(244,239,230,.7);
}
.hero-meta strong {
  display: block;
  color: var(--cream);
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
}
.hero-tagline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244,239,230,.55);
  padding: 22px 20px;
  border-top: 1px solid rgba(244,239,230,.12);
  background: rgba(12,10,8,.4);
  backdrop-filter: blur(8px);
}

/* ---------- Intro ---------- */
.intro { padding: clamp(80px, 12vw, 140px) 0; background: var(--paper); }
.intro-inner { max-width: 880px; }
.intro-eyebrow {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
  font-weight: 500;
}
.intro-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 28ch;
}
.intro-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 64ch;
}

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 11vw, 140px) 0; }
.section-dark {
  background: var(--ink);
  color: var(--cream);
}
.section-head { margin-bottom: clamp(48px, 6vw, 80px); }
.section-head.center { text-align: center; }
.section-head.center .section-title { margin-left: auto; margin-right: auto; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 36px 32px;
  transition: background .3s var(--t);
}
.service-card:hover { background: #fff; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 14px;
  color: var(--ink);
}
.service-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.service-card strong { color: var(--ink); font-weight: 500; }
.key-list {
  list-style: none;
  padding: 16px 0 0;
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
}
.key-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.02em;
}

/* ---------- Fleet ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fleet-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: transform .5s var(--t), border-color .3s;
}
.fleet-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.fleet-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.fleet-body { padding: 28px; }
.fleet-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 10px;
  font-weight: 500;
}
.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 20px;
}
.spec {
  list-style: none;
  padding: 0; margin: 0 0 20px;
  border-top: 1px solid var(--line-dark);
}
.spec li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.spec strong { color: var(--cream); font-weight: 500; }
.fleet-from {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-2);
  font-size: 18px;
  margin: 0;
}
.fleet-note {
  margin: 48px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  text-align: center;
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
}

/* ---------- Destinations ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.dest-block {
  background: var(--paper);
  padding: 36px 32px;
}
.dest-block h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.dest-list {
  list-style: none;
  padding: 0; margin: 0;
}
.dest-list li {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
}
.dest-list li:last-child { border-bottom: none; }
.dest-list em {
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  white-space: nowrap;
  font-family: var(--font-display);
}
.dest-tags {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.dest-tags.small {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.dest-from {
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
}
.dest-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  padding: 0;
  background: var(--cream);
}
.dest-feature-image {
  background-size: cover;
  background-position: center;
  min-height: 380px;
}
.dest-feature-body { padding: 48px 44px; }
.dest-feature-body h3 {
  border: none;
  padding: 0;
  font-size: 32px;
  margin-bottom: 22px;
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.why-card {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}
.why-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 96px) 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  margin: 0;
  max-width: 22ch;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 880px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color .2s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .3s var(--t);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:hover { color: var(--gold); }
.faq-list details p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 64ch;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-tag {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--muted-2);
  margin: 0 0 24px;
  max-width: 38ch;
}
.footer-phone {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 6px;
}
.footer-phone a:hover { color: var(--gold-2); }
.footer-email a, .footer-addr, .footer-text {
  font-size: 14px;
  color: var(--muted-2);
  margin: 0 0 4px;
}
.footer-text a { color: var(--cream); }
.footer-text a:hover { color: var(--gold-2); }
.footer-email a:hover { color: var(--gold-2); }

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-2);
  margin: 0 0 18px;
}
.site-footer h4.mt { margin-top: 28px; }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li {
  font-size: 14px;
  color: var(--muted-2);
  padding: 4px 0;
}
.site-footer ul li a:hover { color: var(--gold-2); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.04em;
}
.footer-keywords {
  max-width: 60ch;
  text-align: right;
  color: rgba(168,157,139,.5) !important;
  font-size: 11px !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .dest-feature { grid-template-columns: 1fr; }
  .dest-feature-image { min-height: 280px; }
}

@media (max-width: 720px) {
  .header-inner { height: 64px; }
  .site-nav { display: none; }
  .header-cta { padding: 9px 14px; font-size: 11.5px; }
  .brand-sub { display: none; }
  .brand-name { font-size: 19px; }

  .hero { min-height: 100vh; padding: 100px 0 110px; }
  .hero-meta { gap: 24px 28px; }
  .hero-title { font-size: clamp(36px, 9vw, 56px); }
  .hero-tagline { font-size: 9.5px; letter-spacing: 0.24em; padding: 16px 16px; }

  .service-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
  .dest-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }

  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .footer-keywords { text-align: left; }

  .dest-feature-body { padding: 32px 24px; }
  .service-card, .dest-block { padding: 28px 22px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
