/* =========================================================
   McKinney Black Car — Theme v2
   Black hero/footer, cream body sections, gold accents
   ========================================================= */

:root {
  /* Dark mode (hero, footer, CTA) */
  --bg-dark:        #0a0a0a;
  --bg-dark-elev:   #141414;
  --bg-dark-elev-2: #1c1c1c;
  --border-dark:    #2a2a2a;
  --border-dark-soft: #1f1f1f;
  --text-dark:      #f3f1ec;
  --text-dark-muted:#b6b1a4;
  --text-dark-faint:#7a7569;

  /* Light mode (body content) */
  --bg-light:       #faf7ef;
  --bg-light-elev:  #ffffff;
  --border-light:   #e7e0cf;
  --border-light-soft: #efe9da;
  --text-light:     #1a1612;
  --text-light-muted:#5a544c;
  --text-light-faint:#8a857c;

  /* Brand */
  --gold:        #c9a961;
  --gold-light:  #e0c682;
  --gold-dark:   #8a7330;
  --gold-deep:   #6b5820;
  --cream:       #f5e6c4;

  /* Defaults (resolve to dark mode initially; .section.light overrides below) */
  --bg:          var(--bg-dark);
  --bg-elev:     var(--bg-dark-elev);
  --border:      var(--border-dark);
  --text:        var(--text-dark);
  --text-muted:  var(--text-dark-muted);
  --text-faint:  var(--text-dark-faint);

  /* Geometry */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-soft: 0 6px 24px rgba(0,0,0,.4);
  --shadow-light: 0 2px 12px rgba(20,16,8,.06);
  --shadow-gold: 0 6px 28px rgba(201,169,97,.18);

  --font-serif: "Bodoni Moda", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1240px;
  --container-narrow: 880px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-dark);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--gold-light); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cream); }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.005em;
  margin: 0 0 .6em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-sans); letter-spacing: 0; }

p { margin: 0 0 1em; color: var(--text-muted); }
p.lead { font-size: 1.18rem; color: var(--text); max-width: 65ch; line-height: 1.55; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: .35em; color: var(--text-muted); }

::selection { background: var(--gold); color: #000; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-tight { padding: 2rem 0; }
@media (min-width: 768px) { .section { padding: 6.5rem 0; } }

/* Light section override */
.section.light {
  background: var(--bg-light);
  color: var(--text-light);
  --bg: var(--bg-light);
  --bg-elev: var(--bg-light-elev);
  --border: var(--border-light);
  --text: var(--text-light);
  --text-muted: var(--text-light-muted);
  --text-faint: var(--text-light-faint);
}
.section.light h1, .section.light h2, .section.light h3, .section.light h4 { color: var(--text-light); }
.section.light p { color: var(--text-light-muted); }
.section.light p.lead { color: var(--text-light); }
.section.light a { color: var(--gold-deep); }
.section.light a:hover { color: var(--gold-dark); }
.section.light li { color: var(--text-light-muted); }

.section.dark {
  background: var(--bg-dark);
  color: var(--text-dark);
  --bg: var(--bg-dark);
  --bg-elev: var(--bg-dark-elev);
  --border: var(--border-dark);
}

/* Eyebrow (bumped up per feedback) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.section.light .eyebrow { color: var(--gold-deep); }

.gold-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
  gap: 1.5rem;
}
.brand-logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.brand-logo svg { height: 100%; width: auto; }

.nav-links {
  display: none;
  gap: 1.6rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text-dark);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  padding: .25rem 0;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: " ▾"; font-size: .7rem; color: var(--text-dark-faint); }
.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -1rem;
  min-width: 220px;
  background: var(--bg-dark-elev);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: .5rem;
  box-shadow: var(--shadow-soft);
  display: none;
  flex-direction: column;
}
.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu { display: flex; }
.nav-links .dropdown-menu a {
  padding: .55rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
}
.nav-links .dropdown-menu a:hover { background: var(--bg-dark-elev-2); color: var(--gold-light); }

.nav-cta { display: flex; gap: .6rem; align-items: center; }
.nav-phone {
  display: none;
  color: var(--gold);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  align-items: center;
  gap: .35rem;
}
.nav-phone:hover { color: var(--cream); }

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-dark);
  margin: 0 auto;
}

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-phone { display: inline-flex; }
  .menu-toggle { display: none; }
}

.mobile-drawer { display: none; border-top: 1px solid var(--border-dark); background: var(--bg-dark-elev); padding: 1rem 1.5rem 1.5rem; }
.mobile-drawer.open { display: block; }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer li { margin-bottom: 0; }
.mobile-drawer a {
  display: block;
  padding: .8rem .25rem;
  border-bottom: 1px solid var(--border-dark-soft);
  color: var(--text-dark);
  font-size: 1rem;
}
.mobile-drawer a:last-child { border-bottom: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { color: #000; filter: brightness(1.05); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover { background: rgba(201,169,97,.1); color: var(--cream); }
.section.light .btn-outline { color: var(--gold-deep); border-color: var(--gold-dark); }
.section.light .btn-outline:hover { background: rgba(138,115,48,.08); color: var(--gold-dark); }
.btn-ghost { background: transparent; color: var(--text-dark); border-color: var(--border-dark); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-lg { padding: 1.05rem 1.8rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* Hero (always dark) */
.hero {
  position: relative;
  background: var(--bg-dark);
  isolation: isolate;
  overflow: hidden;
  padding: 4rem 0 5rem;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 70% 30%, rgba(201,169,97,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.78) 100%),
    url('images/hero-bg.png') center/cover no-repeat;
  z-index: -1;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
  .hero { padding: 5rem 0 6rem; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.2rem);
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}
.hero h1 .gold-text { color: var(--gold); font-style: italic; }
.hero p.lead { font-size: 1.18rem; color: var(--text-dark); margin-bottom: 2rem; }
.hero .hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
}
.hero-trust .trust-item { display: flex; flex-direction: column; gap: .15rem; }
.hero-trust strong { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); }
.hero-trust span { font-size: .78rem; color: var(--text-dark-muted); letter-spacing: .1em; text-transform: uppercase; }

/* Hero quick form (compact, inline) */
.hero-form {
  background: rgba(20,20,20,.7);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-form h3 { color: var(--gold); margin-bottom: .35rem; font-size: 1.4rem; }
.hero-form p { color: var(--text-dark-muted); margin-bottom: 1.25rem; font-size: .92rem; }
.hero-form .form-grid { display: grid; gap: .85rem; grid-template-columns: 1fr 1fr; }
.hero-form .col-span-2 { grid-column: span 2; }
.hero-form .form-field label {
  font-size: .78rem;
  color: var(--text-dark-muted);
  font-weight: 500;
  letter-spacing: .04em;
  display: block;
  margin-bottom: .3rem;
}
.hero-form input,
.hero-form select {
  font-family: var(--font-sans);
  font-size: .95rem;
  padding: .68rem .85rem;
  background: var(--bg-dark);
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.hero-form input:focus, .hero-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,.18);
}
.hero-form .form-note {
  font-size: .78rem;
  color: var(--text-dark-faint);
  margin-top: .85rem;
  text-align: center;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 5rem 0 3.5rem;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark-soft);
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.78)),
    radial-gradient(ellipse at top right, rgba(201,169,97,.12), transparent 70%);
  z-index: -1;
}
.page-hero h1 { margin-bottom: .5rem; color: var(--text-dark); }
.page-hero p { font-size: 1.1rem; color: var(--text-dark-muted); max-width: 60ch; }
.breadcrumbs {
  font-size: .82rem;
  color: var(--text-dark-faint);
  margin-bottom: 1.25rem;
  letter-spacing: .04em;
}
.breadcrumbs a { color: var(--text-dark-muted); }
.breadcrumbs a:hover { color: var(--gold); }

/* Cards / Grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-dark);
}
.section.light .card { box-shadow: var(--shadow-light); }
.section.light .card:hover { box-shadow: 0 8px 24px rgba(20,16,8,.10); }
.card h3 { margin-bottom: .5rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: .35rem;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
}
.section.light .card .card-link { color: var(--gold-deep); }

.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  transition: transform .25s ease, border-color .2s ease;
  text-decoration: none;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.service-card .image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card .image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55));
}
.service-card .body { padding: 1.5rem 1.5rem 1.75rem; }
.service-card h3 { color: var(--text); margin-bottom: .35rem; }
.service-card p { color: var(--text-muted); margin: 0; font-size: .95rem; }
.service-card .arrow {
  margin-top: 1rem;
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.section.light .service-card .arrow { color: var(--gold-deep); }
.section.light .service-card { box-shadow: var(--shadow-light); }

/* Fleet card */
.fleet-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.section.light .fleet-card { box-shadow: var(--shadow-light); }
.fleet-card .image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-dark-elev-2), var(--bg-dark)) center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.fleet-card .body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex; flex-direction: column; gap: .5rem;
  flex: 1;
}
.fleet-card h3 { margin-bottom: .25rem; }
.fleet-card .meta {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.fleet-card .meta strong { color: var(--gold); font-weight: 600; }
.fleet-card .features { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.fleet-card .features li {
  font-size: .78rem;
  padding: .25rem .55rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  margin: 0;
}

/* Feature list */
.feature-list { display: grid; gap: 1.25rem; list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0;
}
.section.light .feature-list li { box-shadow: var(--shadow-light); }
.feature-list .check {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(201,169,97,.12);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: .8rem;
  font-weight: 700;
}
.section.light .feature-list .check { background: rgba(201,169,97,.18); color: var(--gold-deep); }
.feature-list h4 { margin: 0 0 .25rem; color: var(--text); }
.feature-list p { margin: 0; font-size: .92rem; }

/* Quote form (full) */
.quote-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.section.light .quote-card { box-shadow: var(--shadow-light); }
.quote-card .form-header { margin-bottom: 1.5rem; }
.quote-card .form-header h3 { margin-bottom: .25rem; }
.quote-card .form-header p { color: var(--text-muted); margin: 0; font-size: .92rem; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .col-span-2 { grid-column: span 2; }
}
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .03em;
}
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: .75rem .9rem;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,.15);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .82rem; color: var(--text-faint); margin: 1rem 0 0; }
.section.light .form-field input,
.section.light .form-field select,
.section.light .form-field textarea {
  background: #fff;
}

/* Testimonial */
.testimonial {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.section.light .testimonial { box-shadow: var(--shadow-light); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -.5rem; left: 1.25rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  opacity: .55;
}
.testimonial .stars { color: var(--gold); margin-bottom: .75rem; letter-spacing: .15em; }
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 1rem;
  font-style: italic;
}
.testimonial cite { font-style: normal; color: var(--text-muted); font-size: .9rem; }
.testimonial cite strong { color: var(--gold); display: block; font-weight: 600; }

/* CTA band (always dark for contrast) */
.cta-band {
  background:
    linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.92)),
    linear-gradient(135deg, var(--gold-dark), var(--bg-dark)) center/cover;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-dark);
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--text-dark); }
.cta-band p { color: var(--text-dark-muted); max-width: 50ch; margin: 0 auto 2rem; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* FAQ */
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  margin-bottom: .75rem;
  overflow: hidden;
}
.section.light .faq details { box-shadow: var(--shadow-light); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { color: var(--gold); border-bottom: 1px solid var(--border); }
.faq .answer { padding: 1rem 1.25rem 1.25rem; color: var(--text-muted); }
.faq .answer p:last-child { margin-bottom: 0; }
.section.light .faq details[open] summary { color: var(--gold-deep); }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.stats-row .stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  line-height: 1.1;
}
.stats-row .stat span {
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (min-width: 720px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 1.5rem; list-style: none; padding: 0; }
.steps li {
  display: flex; gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0;
}
.section.light .steps li { box-shadow: var(--shadow-light); }
.steps li::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}
.steps h4 { margin: 0 0 .35rem; }
.steps p { margin: 0; color: var(--text-muted); }

/* Two-col content */
.two-col { display: grid; gap: 3rem; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .two-col.reverse > div:first-child { order: 2; }
}
.two-col img, .two-col .visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-dark-elev-2), var(--bg-dark));
  background-size: cover;
  background-position: center;
}

/* Footer */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 2rem;
  color: var(--text-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a { color: var(--text-dark-muted); font-size: .92rem; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .footer-logo { display: block; max-width: 280px; height: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-dark-muted); max-width: 38ch; font-size: .92rem; margin: 0 0 1rem; }
.footer-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--border-dark);
  padding-top: 1.5rem;
  font-size: .82rem;
  color: var(--text-dark-faint);
}
.footer-meta a { color: var(--text-dark-muted); }

.social-row { display: flex; gap: .6rem; margin-top: 1rem; flex-wrap: wrap; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--text-dark-muted);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

/* Floating call (mobile) */
.floating-call {
  position: fixed;
  bottom: 1rem; right: 1rem;
  z-index: 60;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1408;
  width: 56px; height: 56px;
  border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(201,169,97,.4);
  text-decoration: none;
}
@media (min-width: 980px) { .floating-call { display: none; } }

/* Utility */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.section-head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section-head p { color: var(--text-muted); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus {
  left: 1rem; top: 1rem;
  background: var(--gold); color: #000;
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  z-index: 100;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
