/* ==========================================================================
   Prestige Chauffeur Worldwide — Premium Lead-Gen Design System
   Palette: brand gold #ceac5b on deep black, warm paper neutrals
   Type: Playfair Display (display serif) / Inter (body)
   ========================================================================== */

:root {
  --gold: #ceac5b;
  --gold-light: #e0c98a;
  --gold-dark: #ab8c3f;
  --black: #0c0c0e;
  --ink: #151517;
  --charcoal: #1d1d21;
  --slate: #2a2a2f;
  --grey: #6f6f76;
  --grey-light: #a5a5ab;
  --paper: #f7f5f0;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-gold: rgba(206, 172, 91, 0.35);
  --shadow-card: 0 24px 60px -12px rgba(12, 12, 14, 0.35);
  --shadow-soft: 0 10px 34px -8px rgba(12, 12, 14, 0.16);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1220px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: #b2b2ba;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.2em; }
a { color: var(--gold); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-light); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* --------------------------------------------------------------------------
   Eyebrow labels, gold rules, section rhythm
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--dark { background: var(--black); }
.section--dark p { color: var(--grey-light); }
/* "paper" sections are the alternating charcoal band in the dark theme */
.section--paper { background: #131316; border-top: 1px solid rgba(255, 255, 255, 0.05); border-bottom: 1px solid rgba(255, 255, 255, 0.05); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.06rem; color: var(--grey-light); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(206, 172, 91, 0.55); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--outline-dark { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.btn--outline-dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 19px 44px; font-size: 0.88rem; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  background: linear-gradient(to bottom, rgba(12, 12, 14, 0.82), rgba(12, 12, 14, 0));
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(12, 12, 14, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.5);
}
.header-top {
  border-bottom: 1px solid var(--line-dark);
}
.header-top-inner {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 7px 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--grey-light);
}
.header-top-inner a { color: var(--grey-light); display: inline-flex; align-items: center; gap: 7px; }
.header-top-inner a:hover { color: var(--gold); }
.header-top-inner svg { width: 13px; height: 13px; fill: var(--gold); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}
.logo img { width: 225px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; list-style: none; }
.nav a {
  display: block;
  padding: 10px 15px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav > li > a:hover, .nav > li.is-open > a { color: var(--gold); }
.nav ul {
  position: absolute;
  top: 100%; left: 0;
  min-width: 280px;
  margin: 0; padding: 10px 0;
  list-style: none;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.28s var(--ease);
}
.nav li:hover > ul, .nav li.is-open > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.nav ul a { padding: 9px 22px; font-size: 0.8rem; text-transform: none; letter-spacing: 0.03em; color: var(--grey-light); }
.nav ul a:hover { color: var(--gold); background: rgba(206, 172, 91, 0.07); }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
}
.header-phone span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-light); }
.header-phone a { color: var(--white); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.02em; }
.header-phone a:hover { color: var(--gold); }
.header-cta .btn { padding: 13px 26px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 400;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -8px; left: 0; }
.nav-toggle span::after { top: 8px; left: 0; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); background: var(--gold); }
body.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); background: var(--gold); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 190px 0 110px;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(12, 12, 14, 0.93) 0%, rgba(12, 12, 14, 0.72) 48%, rgba(12, 12, 14, 0.42) 100%);
}
.hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.85), transparent);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead { font-size: 1.14rem; color: rgba(255, 255, 255, 0.82); max-width: 540px; margin-bottom: 34px; }
.hero .eyebrow { color: var(--gold); }

.hero-ticks { display: flex; flex-wrap: wrap; gap: 12px 28px; margin: 0 0 38px; padding: 0; list-style: none; }
.hero-ticks li {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-ticks svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero--compact { min-height: 62vh; padding: 180px 0 90px; }
.hero--center { text-align: center; }
.hero--center .hero-inner { grid-template-columns: 1fr; justify-items: center; }
.hero--center .hero-lead { margin-left: auto; margin-right: auto; }
.hero--center .eyebrow { justify-content: center; }

/* --------------------------------------------------------------------------
   Quote form card
   -------------------------------------------------------------------------- */
.quote-card {
  background: var(--white);
  border-radius: 10px;
  padding: 38px 36px 34px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--gold);
}
.quote-card--dark {
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  border-top: 3px solid var(--gold);
}
.quote-card h3 {
  font-size: 1.45rem;
  margin-bottom: 4px;
  color: var(--ink);
}
.quote-card a { color: var(--gold-dark); }
.quote-card a:hover { color: var(--gold); }
.quote-card--dark h3 { color: var(--white); }
.quote-card .quote-sub {
  font-size: 0.86rem;
  color: var(--grey);
  margin-bottom: 24px;
}
.quote-card--dark .quote-sub { color: var(--grey-light); }

.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form .field--full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.quote-card--dark .field label { color: var(--grey-light); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #e2ddd2;
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.quote-card--dark .field input, .quote-card--dark .field select, .quote-card--dark .field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
  color: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(206, 172, 91, 0.18);
}
.field textarea { resize: vertical; min-height: 84px; }
.lead-form .btn { margin-top: 6px; }
.form-note {
  grid-column: 1 / -1;
  font-size: 0.76rem;
  color: var(--grey);
  text-align: center;
  margin: 4px 0 0;
}
.form-msg { grid-column: 1 / -1; display: none; padding: 13px 16px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; }
.form-msg.is-error { display: block; background: #fdeceb; color: #b3261e; border: 1px solid #f3c2be; }
.form-msg.is-success { display: block; background: #edf7ee; color: #1e7b34; border: 1px solid #bfe3c5; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   Trust bar
   -------------------------------------------------------------------------- */
.trust-bar { background: var(--ink); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 34px 0;
}
.trust-item { display: flex; align-items: center; gap: 16px; }
.trust-item svg { width: 34px; height: 34px; fill: none; stroke: var(--gold); stroke-width: 1.4; flex-shrink: 0; }
.trust-item strong { display: block; color: var(--white); font-size: 0.92rem; font-weight: 600; letter-spacing: 0.04em; }
.trust-item small { color: var(--grey-light); font-size: 0.78rem; letter-spacing: 0.02em; }

/* --------------------------------------------------------------------------
   Cards — fleet, service, region, country
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.fleet-card {
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.fleet-card:hover { transform: translateY(-8px); border-color: var(--line-gold); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6); }
.fleet-card-img { height: 150px; display: flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.fleet-card-img img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.45)); }
.fleet-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 2px; }
.fleet-card .fleet-model { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px; }
.fleet-card p { color: var(--grey-light); font-size: 0.92rem; flex: 1; }
.fleet-specs { display: flex; gap: 22px; margin: 4px 0 22px; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.fleet-specs span { display: flex; align-items: center; gap: 8px; color: var(--grey-light); font-size: 0.84rem; }
.fleet-specs svg { width: 17px; height: 17px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.fleet-card .btn { align-self: flex-start; padding: 12px 24px; font-size: 0.75rem; }

.service-card {
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 40px 34px 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6); border-color: var(--line-gold); }
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.service-card:hover::before { width: 100%; }
.service-card svg { width: 40px; height: 40px; fill: none; stroke: var(--gold); stroke-width: 1.3; margin-bottom: 22px; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--grey-light); margin-bottom: 18px; }
.service-card .card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .card-link::after { content: "→"; transition: transform 0.3s var(--ease); }
.service-card:hover .card-link::after { transform: translateX(5px); }

/* image overlay cards (regions + countries) */
.geo-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  background: var(--charcoal);
}
.geo-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.geo-card:hover img { transform: scale(1.07); }
.geo-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 14, 0.88) 8%, rgba(12, 12, 14, 0.25) 55%, rgba(12, 12, 14, 0.12) 100%);
  transition: background 0.4s var(--ease);
}
.geo-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 26px 24px;
}
.geo-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin: 0 0 4px;
}
.geo-card small {
  display: block;
  color: var(--grey-light);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.geo-card .geo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.geo-card .geo-cta::after { content: "→"; transition: transform 0.3s var(--ease); }
.geo-card:hover .geo-cta::after { transform: translateX(5px); }
.geo-card:hover small { max-height: 60px; opacity: 1; margin-bottom: 2px; }
.geo-card--soon { cursor: default; }
.geo-card--soon .geo-cta { color: var(--grey-light); }
.geo-card--soon .geo-cta::after { content: ""; }
.geo-card--flat img { filter: saturate(0.92); }

/* --------------------------------------------------------------------------
   Why choose us / icon rows
   -------------------------------------------------------------------------- */
.why-item { text-align: center; padding: 0 12px; }
.why-item .why-icon {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}
.why-item:hover .why-icon { background: rgba(206, 172, 91, 0.08); transform: translateY(-4px); }
.why-item svg { width: 36px; height: 36px; fill: none; stroke: var(--gold); stroke-width: 1.3; }
.why-item h3 { font-size: 1.08rem; letter-spacing: 0.02em; margin-bottom: 10px; }
.why-item p { font-size: 0.9rem; color: var(--grey-light); margin: 0; }

/* --------------------------------------------------------------------------
   Split sections (image + copy)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-img { position: relative; }
.split-img img { border-radius: 10px; box-shadow: var(--shadow-card); width: 100%; object-fit: cover; }
.split-img::before {
  content: "";
  position: absolute;
  top: -22px; left: -22px;
  width: 45%; height: 55%;
  border: 1px solid var(--line-gold);
  border-radius: 10px;
  z-index: -1;
}
.split-body h2 { margin-bottom: 20px; }
.split-body .checklist { margin: 22px 0 30px; }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.98rem; color: #c6c6cd; }
.checklist svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: 4px; }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--gold);
  line-height: 1.1;
}
.stat span { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-light); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial {
  background: var(--charcoal);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 36px 34px;
  box-shadow: none;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.testimonial:hover { border-color: var(--line-gold); transform: translateY(-4px); }
.testimonial .stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 4px; margin-bottom: 16px; }
.testimonial blockquote { margin: 0 0 22px; font-size: 0.99rem; color: #c6c6cd; font-style: italic; line-height: 1.8; }
.testimonial figcaption strong { display: block; font-size: 0.92rem; color: var(--white); font-weight: 600; }
.testimonial figcaption span { font-size: 0.8rem; color: var(--grey-light); letter-spacing: 0.04em; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
  padding: 110px 0;
  text-align: center;
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: rgba(12, 12, 14, 0.87); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); max-width: 780px; margin: 0 auto 18px; }
.cta-band p { color: var(--grey-light); font-size: 1.08rem; max-width: 600px; margin: 0 auto 38px; }
.cta-band .eyebrow { color: var(--gold); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.cta-phone svg { width: 22px; height: 22px; fill: var(--gold); }
.cta-phone:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Page content blocks (country/service copy)
   -------------------------------------------------------------------------- */
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }

.city-chips { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.city-chips li {
  padding: 10px 22px;
  border: 1px solid var(--line-gold);
  border-radius: 100px;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(206, 172, 91, 0.06);
}

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-info { display: grid; gap: 8px; }
.contact-line { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.contact-line svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 1.5; flex-shrink: 0; margin-top: 4px; }
.contact-line strong { display: block; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-light); margin-bottom: 4px; }
.contact-line a, .contact-line p { font-size: 1.08rem; color: var(--white); font-weight: 500; margin: 0; }
.contact-line a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line-dark); color: var(--grey-light); }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding: 80px 0 56px;
}
.footer-brand img { width: 210px; margin-bottom: 22px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); background: rgba(206, 172, 91, 0.08); }
.footer-social svg { width: 16px; height: 16px; fill: var(--grey-light); transition: fill 0.3s var(--ease); }
.footer-social a:hover svg { fill: var(--gold); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { color: var(--grey-light); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; }
.footer-contact svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 5px; }
.footer-contact a { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--grey-light); }
.footer-bottom a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   Thank you page
   -------------------------------------------------------------------------- */
.thanks-hero { min-height: 100vh; display: flex; align-items: center; text-align: center; }
.thanks-mark {
  width: 92px; height: 92px;
  margin: 0 auto 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.thanks-mark svg { width: 40px; height: 40px; fill: none; stroke: var(--gold); stroke-width: 1.6; }

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 150px; }
  .quote-card { max-width: 640px; }
  .header-phone { display: none; }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split-img::before { display: none; }
  .nav-toggle { display: block; }
  .header-top { display: none; }
  .logo img { width: 178px; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 110px 32px 40px;
    margin: 0;
    background: rgba(12, 12, 14, 0.98);
    backdrop-filter: blur(14px);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    z-index: 350;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav > li { width: 100%; border-bottom: 1px solid var(--line-dark); }
  .nav a { padding: 16px 0; font-size: 1rem; }
  .nav ul {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 0 0 12px 16px;
    display: none;
  }
  .nav li.is-open > ul { display: block; }
  .nav ul a { padding: 9px 0; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 24px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .lead-form { grid-template-columns: 1fr; }
  .quote-card { padding: 30px 24px 26px; }
  .hero { padding: 130px 0 70px; min-height: 0; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
}
