/* ===========================================================
   STEADFAST DETAILING — Design System
   =========================================================== */

:root {
  /* Palette */
  --ink: #0a0a0b;
  --ink-2: #131316;
  --ink-3: #1c1c20;
  --ink-4: #26262c;
  --line: #2a2a30;
  --line-2: #35353d;

  --paper: #f5f3ee;
  --paper-2: #ecead9;
  --bone: #e6e1d3;

  --gold: #d4a84a;
  --gold-2: #b88a2f;
  --gold-3: #e8c878;
  --gold-soft: rgba(212, 168, 74, 0.12);

  --text: #17171a;
  --text-muted: #55555c;
  --text-on-dark: #ececec;
  --text-on-dark-muted: #9a9aa3;

  --ok: #3f8f5a;
  --warn: #c47a1a;

  /* Type */
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --maxw: 1240px;
  --gap: clamp(1rem, 2vw, 1.5rem);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-2);
}
.on-dark .eyebrow { color: var(--gold-3); }
.on-dark .eyebrow::before { background: var(--gold-3); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 5.25rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0; font-family: var(--sans); }

.italic { font-style: italic; font-family: var(--serif); }
.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 14px 30px -14px rgba(212,168,74,0.65);
}
.btn-gold:hover { background: var(--gold-3); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 18px 36px -12px rgba(212,168,74,0.7); }
.btn-dark {
  background: var(--ink);
  color: var(--paper);
}
.btn-dark:hover { background: var(--ink-3); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold-3);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); }

.btn-lg { padding: 1.15rem 2rem; font-size: 1rem; }
.btn-arrow { transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--text-on-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text strong { font-weight: 600; letter-spacing: 0.01em; }
.nav-logo-text small {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold-3);
  margin-top: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gold-3);
}
.nav-phone:hover { color: var(--gold); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle {
    display: flex;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.14);
  }
  .nav-toggle svg { width: 20px; height: 20px; }
}
.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: #0a0a0b;
  background-image:
    radial-gradient(800px 500px at 80% 10%, rgba(212,168,74,0.08), transparent 60%),
    linear-gradient(180deg, #0a0a0b 0%, #050506 100%);
  padding: 6rem 1.5rem 4rem;
  z-index: 200;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  display: none;
}
.nav-open .nav-drawer {
  display: flex;
  animation: drawerIn 0.25s ease-out;
}
@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-drawer-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #f5f3ee;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.nav-drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: #f5f3ee;
}
.nav-drawer-brand img { height: 40px; width: auto; }
.nav-drawer a {
  padding: 1.1rem 0.25rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #f5f3ee;
  text-decoration: none;
}
.nav-drawer a.active { color: var(--gold); }
.nav-drawer-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.nav-drawer-cta .btn { width: 100%; }
@media (min-width: 901px) { .nav-drawer, .nav-drawer-close { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: clamp(4rem, 10vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212,168,74,0.22), transparent 60%),
    linear-gradient(180deg, rgba(10,10,11,0.2) 0%, rgba(10,10,11,0.65) 60%, rgba(10,10,11,1) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.hero-copy { max-width: 640px; }
.hero h1 {
  margin: 1.2rem 0 1.25rem;
  color: var(--paper);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-3);
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--text-on-dark-muted);
}
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust-item strong { color: var(--paper); }
.hero-trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero-side {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-card {
  background: rgba(20, 20, 22, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.5rem 1.65rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 0.4rem;
}
.hero-card-value { font-family: var(--serif); font-size: 1.35rem; color: var(--paper); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-side { order: -1; margin-bottom: 0.5rem; }
  .hero-card { padding: 1rem 1.15rem; }
  .hero-card-value { font-size: 1.1rem; }
}

/* ---------- Section base ---------- */
section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.section-head h2 { max-width: 18ch; }
.section-head p { max-width: 38ch; color: var(--text-muted); font-size: 1.05rem; }

.bg-dark { background: var(--ink); color: var(--text-on-dark); }
.bg-dark h2, .bg-dark h3 { color: var(--paper); }
.bg-dark .section-head p { color: var(--text-on-dark-muted); }
.bg-paper-2 { background: var(--paper-2); }

/* ---------- Services grid (home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  min-height: 440px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gold-2); }
.service-card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink);
}
.service-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
}
.service-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { margin-bottom: 0.5rem; }
.service-card-body p { color: var(--text-on-dark-muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.service-card-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-3);
}
.service-card-price small {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-right: 0.4rem;
  font-weight: 500;
}
.service-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-3);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--line-2);
  position: relative;
  counter-increment: step;
}
.step::before {
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5rem;
}
.step h4 { margin-bottom: 0.5rem; font-size: 1.2rem; font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.step p { color: var(--text-on-dark-muted); font-size: 0.95rem; }

/* ---------- Before/After ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 800px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink);
}
.ba-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: clip-path 0.3s var(--ease);
}
.ba-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--ink);
  color: var(--gold-3);
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: ew-resize;
  user-select: none;
  background: var(--ink);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}
.ba-handle::after {
  content: "⇄";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
  z-index: 1;
}
.ba-slider-label {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  backdrop-filter: blur(6px);
  z-index: 2;
  pointer-events: none;
}
.ba-slider-label.before { left: 1rem; background: rgba(10,10,11,0.7); color: var(--paper); }
.ba-slider-label.after { right: 1rem; background: rgba(212,168,74,0.92); color: var(--ink); }

/* ---------- About band ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,11,0.35) 100%);
}
.about-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  border-left: 2px solid var(--gold);
}
.about-badge strong { display: block; font-family: var(--serif); font-size: 1.05rem; margin-bottom: 2px; }
.about h2 { margin-bottom: 1.5rem; }
.about p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }
.about-sig {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-family: var(--serif);
  font-style: italic;
  color: var(--text);
}

/* ---------- Testimonials ---------- */
.testimonial-wrap { background: var(--ink-2); }
.testimonial-head { text-align: center; margin-bottom: 2.5rem; }
.testimonial-head h2 { margin-bottom: 0.75rem; }
.featurable-embed {
  background: transparent;
  border-radius: var(--radius-lg);
  min-height: 300px;
}

/* ---------- Pricing tables (landing pages) ---------- */
.pricing-table {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--text-on-dark);
}
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row.head {
  background: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-3);
  font-weight: 600;
  padding: 1rem 1.75rem;
}
.pricing-row h4 { font-size: 1.1rem; font-family: var(--serif); font-weight: 500; color: var(--paper); margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.pricing-row .row-desc { font-size: 0.86rem; color: var(--text-on-dark-muted); line-height: 1.5; }
.pricing-row .price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--paper);
}
.pricing-row.featured { background: linear-gradient(90deg, rgba(212,168,74,0.1), transparent 80%); }
.pricing-row .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

@media (max-width: 800px) {
  .pricing-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.25rem; }
  .pricing-row.head { display: none; }
  .pricing-row .price::before {
    content: attr(data-label) " ";
    font-family: var(--sans);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    margin-right: 0.5rem;
    font-weight: 600;
  }
}

/* ---------- Feature list (landing pages) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 2rem;
  background: var(--paper-2);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.feature-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--gold-3);
  border-radius: 50%;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature h4 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.feature p { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Inclusions list ---------- */
.inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 2rem;
}
@media (max-width: 700px) { .inclusions { grid-template-columns: 1fr; } }
.inclusion {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
}
.inclusion svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }

/* ---------- Landing hero ---------- */
.lp-hero {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: clamp(3.5rem, 8vh, 6rem) 0 clamp(3rem, 6vh, 4.5rem);
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: 0;
}
.lp-hero.hero-interior::before { background-image: url("../images/about.jpg"); }
.lp-hero.hero-exterior::before { background-image: url("../images/rav4-exterior.jpg"); }
.lp-hero.hero-full::before { background-image: url("../images/shiny_tire.jpg"); }
.lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.6) 0%, rgba(10,10,11,0.82) 70%, var(--ink) 100%);
  z-index: 1;
}
.lp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: end;
}
@media (max-width: 900px) { .lp-hero-inner { grid-template-columns: 1fr; } }
.lp-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  color: var(--paper);
  margin: 1.25rem 0 1.25rem;
}
.lp-hero h1 em { font-style: italic; font-weight: 300; color: var(--gold-3); }
.lp-hero-lede {
  font-size: 1.08rem;
  color: var(--text-on-dark-muted);
  max-width: 540px;
  margin-bottom: 1.75rem;
}
.lp-hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.lp-hero-bullets {
  display: grid;
  gap: 0.5rem;
  background: rgba(20, 20, 22, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}
.lp-hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: var(--text-on-dark);
}
.lp-hero-bullet:last-child { border-bottom: none; }
.lp-hero-bullet svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.bg-dark .faq-item { border-bottom-color: rgba(255,255,255,0.1); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.faq-q .icon {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.5;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); opacity: 1; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  color: var(--text-muted);
  font-size: 1rem;
}
.bg-dark .faq-a { color: var(--text-on-dark-muted); }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.5rem; }

/* ---------- Contact Form ---------- */
.contact {
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,74,0.15), transparent 70%);
  z-index: 0;
}
.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  /* On mobile, surface the form first so paid Reel traffic lands on the booking action.
     Tap-to-call / tap-to-text / service area still appear right below as fallbacks. */
  .contact-inner .contact-form { order: 1; }
  .contact-inner .contact-copy { order: 2; }
}
.contact-copy h2 { margin-bottom: 1rem; }
.contact-copy p { color: var(--text-on-dark-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }

.contact-methods { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.contact-method:hover { border-color: var(--gold-2); transform: translateY(-1px); }
.contact-method-icon {
  width: 42px; height: 42px;
  background: var(--gold-soft);
  color: var(--gold-3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-on-dark-muted); margin-bottom: 2px; }
.contact-method-value { font-family: var(--serif); font-size: 1.2rem; color: var(--paper); }

.contact-form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.contact-form-head { margin-bottom: 1.75rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.contact-form-head h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--paper);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.contact-form-head .form-tagline {
  font-size: 0.95rem;
  color: var(--gold-3);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.contact-form-head p {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .form-grid { grid-template-columns: 1fr; } }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  font-weight: 600;
}
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--ink);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius);
  font-size: 0.98rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--ink-3);
}
.form-field textarea { resize: vertical; min-height: 110px; font-family: var(--sans); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4a84a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-submit {
  margin-top: 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.form-foot {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: none;
}
.form-success.show { display: block; }
.form-success .icon-circle {
  width: 64px; height: 64px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
}
.form-success .icon-circle svg { width: 28px; height: 28px; }
.form-success h3 { color: var(--paper); margin-bottom: 0.5rem; font-family: var(--serif); font-size: 1.75rem; letter-spacing: -0.02em; }
.form-success p { color: var(--text-on-dark-muted); }

.contact-fields.hide { display: none; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink-2);
  color: var(--text-on-dark-muted);
  padding: 3.5rem 0 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { max-width: 340px; }
.footer-brand img { height: 56px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 0.92rem; line-height: 1.6; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a {
  color: var(--text-on-dark-muted);
  font-size: 0.93rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--paper); }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-on-dark-muted);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.footer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212,168,74,0.08);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}
.footer-bottom a:hover { color: var(--paper); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  display: none;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid var(--line-2);
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px rgba(0,0,0,0.35);
}
.mobile-cta-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
.mobile-cta .btn { padding: 0.85rem 0.5rem; font-size: 0.82rem; }
@media (max-width: 720px) { .mobile-cta { display: block; } body { padding-bottom: 72px; } }

/* ---------- Final CTA band ---------- */
.final-cta {
  background: var(--ink);
  color: var(--text-on-dark);
  text-align: center;
  padding: clamp(4rem, 9vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/shiny_tire.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,11,0.9) 80%);
}
.final-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta h2 { margin-bottom: 1rem; color: var(--paper); }
.final-cta p { color: var(--text-on-dark-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.final-cta .hero-cta { justify-content: center; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Print ---------- */
@media print {
  .nav, .mobile-cta, .contact { display: none; }
}
