/* Holo Auto Rentals — brand styles */
:root {
  --orange: #F7A21A;
  --orange-600: #E8911A;
  --orange-50: #FFF3E0;
  --ink: #0F1115;
  --ink-700: #1A1D24;
  --ink-500: #3A3F4B;
  --ink-300: #6E7685;
  --line: #E6E8EC;
  --bg: #FBFAF7;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 17, 21, 0.06), 0 2px 8px rgba(15, 17, 21, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 17, 21, 0.10), 0 2px 6px rgba(15, 17, 21, 0.05);
  --shadow-lg: 0 30px 60px rgba(15, 17, 21, 0.18);
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Pacifico", "Manrope", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(247, 162, 26, 0.35);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
}
.brand-mark { width: 36px; height: 36px; border-radius: 8px; align-self: center; }
.brand-word {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--orange);
  line-height: 1;
  letter-spacing: 0.5px;
}
.brand-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.primary-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-700);
}
.primary-nav a { position: relative; padding: 6px 0; }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,17,21,0.20) 0%, rgba(15,17,21,0.45) 60%, rgba(15,17,21,0.75) 100%),
    linear-gradient(90deg, rgba(15,17,21,0.55), rgba(15,17,21,0));
}
.hero-content {
  position: relative;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 900px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
  padding: 6px 12px;
  background: rgba(247, 162, 26, 0.15);
  border: 1px solid rgba(247, 162, 26, 0.45);
  border-radius: 999px;
}
.hero h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 620px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--white); border-color: rgba(255,255,255,0.65); }
.hero .btn-ghost:hover { background: var(--white); color: var(--ink); }
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 28px;
  max-width: 720px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-stats span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--ink);
  color: var(--white);
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(247, 162, 26, 0.18);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.trust-item strong { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.005em; }
.trust-item span { display: block; font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.02em; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-cream { background: #FAF5EC; }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark .eyebrow {
  color: var(--orange);
  background: rgba(247, 162, 26, 0.12);
  border-color: rgba(247, 162, 26, 0.35);
}
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 800;
}
.section-sub {
  font-size: 17px;
  color: var(--ink-500);
  margin: 0;
}
.section-dark .section-sub { color: rgba(255,255,255,0.7); }

/* ---------- Fleet grid ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fleet-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #EDEDEA;
}
.fleet-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease;
}
.fleet-card:hover .fleet-card-media img { transform: scale(1.05); }
.fleet-card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.fleet-card-tag.accent { background: var(--orange); color: var(--ink); }
.fleet-card-rating {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(15, 17, 21, 0.85);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fleet-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.fleet-card-title { display: flex; flex-direction: column; gap: 2px; }
.fleet-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}
.fleet-card-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-300);
  margin: 0;
  letter-spacing: 0.02em;
}
.fleet-card .specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 13px;
  color: var(--ink-500);
  list-style: none;
  padding: 0;
  margin: 0;
}
.fleet-card .specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fleet-card .specs li::before {
  content: "";
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.fleet-card-footer {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.price { display: flex; align-items: baseline; gap: 4px; }
.price strong { font-size: 24px; font-weight: 800; letter-spacing: -0.01em; }
.price span { font-size: 13px; color: var(--ink-500); }
.trips { display: flex; align-items: baseline; gap: 6px; }
.trips strong { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.trips span { font-size: 12px; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.08em; }
.book-link {
  font-weight: 700;
  color: var(--orange-600);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247, 162, 26, 0.1);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}
.book-link::after { content: "→"; transition: transform 180ms ease; }
.book-link:hover {
  background: var(--orange);
  color: var(--white);
}
.book-link:hover::after { transform: translateX(3px); }
.fleet-card:hover .book-link::after { transform: translateX(3px); }

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(247, 162, 26, 0.18);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.feature p { margin: 0; color: rgba(255,255,255,0.72); font-size: 15px; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 36px 28px 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute;
  top: -18px; left: 24px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.steps h3 { margin: 0 0 6px; font-size: 20px; font-weight: 700; }
.steps p { margin: 0; color: var(--ink-500); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,17,21,0.05);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; }
.testimonial blockquote {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-700);
  font-weight: 500;
  quotes: none;
}
.testimonial figcaption {
  border-top: 1px dashed var(--line);
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial figcaption strong { font-size: 14px; font-weight: 700; }
.testimonial figcaption span { font-size: 12px; color: var(--ink-300); letter-spacing: 0.04em; }
.reviews-cta { text-align: center; margin-top: 40px; }

/* ---------- Host section ---------- */
.host-section { background: linear-gradient(180deg, #FFFDF7 0%, var(--bg) 100%); }
.host-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
}
.host-copy h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 800;
}
.host-copy .lede {
  color: var(--ink-500);
  max-width: 520px;
  margin: 0 0 28px;
  font-size: 17px;
}
.host-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.host-benefits li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.host-benefits li > span {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange);
  background: var(--orange-50);
  padding: 8px 0;
  border-radius: 999px;
  text-align: center;
}
.host-benefits li > div { font-size: 15.5px; color: var(--ink-500); }
.host-benefits li > div strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 16px;
}
.host-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.host-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.host-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(closest-side, rgba(247, 162, 26, 0.35), transparent 70%);
}
.host-card-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
  font-weight: 700;
}
.host-earning {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0 0 4px;
}
.host-earning strong {
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.host-earning span { font-size: 20px; color: rgba(255,255,255,0.7); font-weight: 600; }
.host-earning span:first-child { font-size: 32px; color: var(--white); align-self: flex-start; margin-top: 6px; }
.host-card-sub { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0 0 24px; }
.host-card-list {
  list-style: none;
  padding: 18px 0;
  margin: 0 0 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 10px;
}
.host-card-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.host-card-list li strong { color: var(--white); font-weight: 700; }
.host-card-fine { font-size: 11.5px; color: rgba(255,255,255,0.45); margin: 0; line-height: 1.5; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange);
  color: var(--ink);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cta-inner p { margin: 0; font-size: 17px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(15,17,21,0.25);
}
.cta-band .btn-primary:hover { background: #000; }
.cta-band .btn-ghost { border-color: var(--ink); color: var(--ink); }
.cta-band .btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { width: 48px; height: 48px; border-radius: 10px; margin-bottom: 14px; }
.footer-brand p { max-width: 360px; font-size: 15px; color: rgba(255,255,255,0.65); }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 28px;
}
.footer-cols h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-cols a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
}
.footer-cols a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Modal ---------- */
.vehicle-modal {
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  max-width: 960px;
  width: calc(100% - 32px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.vehicle-modal::backdrop {
  background: rgba(15, 17, 21, 0.65);
  backdrop-filter: blur(4px);
}
.vm-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.9);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.vm-close:hover { background: var(--white); }
.vm-body { display: grid; grid-template-columns: 1.1fr 1fr; }
.vm-media {
  aspect-ratio: 4 / 3;
  background: #EDEDEA;
  overflow: hidden;
}
.vm-media img { width: 100%; height: 100%; object-fit: cover; }
.vm-info { padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.vm-info .eyebrow { margin: 0; }
.vm-info h2 { font-size: 28px; margin: 0; letter-spacing: -0.01em; }
.vm-info .vm-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  margin: 0;
}
.vm-info .vm-specs li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vm-info .vm-specs span {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-300);
  font-weight: 700;
}
.vm-info .vm-specs strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.vm-info .vm-desc { color: var(--ink-500); }
.vm-info .vm-actions { display: flex; gap: 10px; margin-top: auto; }
.vm-info .vm-price { display: flex; align-items: baseline; gap: 6px; }
.vm-info .vm-price strong { font-size: 30px; font-weight: 800; letter-spacing: -0.01em; }
.vm-info .vm-price span { font-size: 14px; color: var(--ink-500); }
.vm-subtitle { margin: -6px 0 0; color: var(--ink-300); font-weight: 500; font-size: 14px; letter-spacing: 0.01em; }
.vm-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 0 2px;
}
.vm-rating .stars { color: var(--orange); font-size: 14px; letter-spacing: 2px; }
.vm-rating strong { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.vm-rating span { font-size: 13px; color: var(--ink-500); }
.vm-note {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-300);
  line-height: 1.5;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .site-header.nav-open .primary-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 18px 24px;
    gap: 14px;
    border-bottom: 1px solid var(--line);
  }
  .section { padding: 72px 0; }
  .hero { min-height: 78vh; }
  .hero-content { padding-top: 80px; padding-bottom: 60px; }
  .hero-stats { gap: 24px; margin-top: 36px; padding-top: 22px; }
  .hero-stats strong { font-size: 22px; }
  .footer-inner { grid-template-columns: 1fr; }
  .vm-body { grid-template-columns: 1fr; }
  .vm-info { padding: 24px; }
  .host-inner { grid-template-columns: 1fr; gap: 40px; }
  .trust-inner { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 40px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Inner pages: host.html, about.html, contact.html
   ========================================================================== */

.container-narrow { max-width: 860px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 96px 0 56px;
  background: linear-gradient(180deg, #fff7e8 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { color: var(--orange-600); }
.page-hero h1 {
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 10px 0 18px;
  font-weight: 800;
}
.page-hero .lede {
  font-size: 20px;
  color: var(--ink-500);
  max-width: 680px;
  margin: 0 0 28px;
}
.page-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero-host { background: linear-gradient(180deg, #fff0d8 0%, var(--bg) 100%); }
.page-hero-about { background: linear-gradient(180deg, #fbecd6 0%, var(--bg) 100%); }
.page-hero-contact { background: linear-gradient(180deg, #fff3e0 0%, var(--bg) 100%); }

.page-inner .site-header { background: var(--white); border-bottom: 1px solid var(--line); }

/* ---------- Section head variants ---------- */
.section-head-left { text-align: left; margin-left: 0; }
.section-cta { display: flex; justify-content: center; margin-top: 36px; }
.features-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .features-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features-3 { grid-template-columns: 1fr; } }

/* ---------- Prose (long-form copy) ---------- */
.prose p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0 0 18px;
}
.prose p strong { color: var(--ink); }

/* ---------- Owner block (about.html) ---------- */
.owner-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) { .owner-block { grid-template-columns: 1fr; } }
.owner-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--orange-50);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.owner-photo picture { display: block; width: 100%; height: 100%; }
.owner-photo img { width: 100%; height: 100%; object-fit: cover; }
.owner-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-600);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 13px;
}
.owner-copy h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 6px 0 8px;
}
.owner-role {
  color: var(--ink-500);
  font-weight: 600;
  margin: 0 0 20px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.owner-copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0 0 14px;
}
.owner-contact { margin-top: 22px; }

/* ---------- Philosophy grid (about.html) ---------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
@media (max-width: 860px) { .philosophy-grid { grid-template-columns: 1fr; } }
.philosophy-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
}
.philosophy-card h3 {
  color: var(--white);
  font-size: 22px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.philosophy-card p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- By the numbers (about.html) ---------- */
.by-the-numbers { display: grid; gap: 24px; }
.numbers-grid {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .numbers-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.numbers-grid li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 2px solid var(--ink);
}
.numbers-grid strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.numbers-grid span {
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Earnings calculator (host.html) ---------- */
.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 860px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.calc-field {
  display: grid;
  gap: 8px;
}
.calc-field > span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-500);
}
.calc-field select,
.calc-field input {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 20px) 55%, calc(100% - 14px) 55%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.calc-field input {
  background-image: none;
  padding-right: 14px;
}
.calc-field select:focus,
.calc-field input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.calc-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.calc-card-eyebrow {
  color: var(--orange);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin: 0;
}
.calc-earning {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--white);
}
.calc-earning span { font-size: 22px; color: rgba(255,255,255,0.6); }
.calc-earning strong {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.calc-card-sub {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  font-size: 14px;
}
.calc-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 10px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 10px;
}
.calc-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.calc-list strong { color: var(--white); font-weight: 700; }
.calc-fine {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ---------- Pill grid (host ideal cars) ---------- */
.pill-grid {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill-grid li {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Steps 4-col ---------- */
.steps-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .steps-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps-4 { grid-template-columns: 1fr; } }

/* ---------- Compact host benefits (home teaser) ---------- */
.host-benefits-compact li { padding: 14px 0; }
.host-benefits-compact li strong { display: block; margin-bottom: 2px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; margin-top: 24px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 200ms ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  position: relative;
  padding-right: 36px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--orange-600);
  font-weight: 700;
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- Section band (home contact + host apply) ---------- */
.section-band {
  background: linear-gradient(180deg, var(--ink) 0%, #1A1D24 100%);
  color: var(--white);
}
.section-band .eyebrow { color: var(--orange); }
.section-band h2 { color: var(--white); }
.section-band .section-sub,
.section-band .lede,
.section-band .section-head p { color: rgba(255, 255, 255, 0.72); }

/* ---------- Contact form ---------- */
.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}
.contact-form label {
  display: grid;
  gap: 6px;
}
.contact-form label > span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  width: 100%;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-full { width: 100%; }
.form-fine {
  font-size: 13px;
  color: var(--ink-500);
  margin: 0;
}
.contact-form button[type="submit"] { justify-self: start; margin-top: 8px; }

/* ---------- Contact layout (index + contact.html) ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; gap: 32px; } }

.contact-intro h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0 14px;
  color: var(--white);
}
.contact-intro .lede { color: rgba(255, 255, 255, 0.72); margin-bottom: 28px; }
.contact-quicklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.contact-quicklist li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 15px;
}
.contact-quicklist span {
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  font-weight: 700;
  align-self: center;
}
.contact-quicklist a {
  color: var(--white);
  font-weight: 600;
  transition: color 150ms ease;
}
.contact-quicklist a:hover { color: var(--orange); }

/* ---------- Contact page layout ---------- */
.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.contact-card-eyebrow {
  color: var(--orange-600);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin: 0 0 6px;
}
.contact-card-value {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  word-break: break-word;
}
a.contact-card-value:hover { color: var(--orange-600); }
.contact-card-note {
  font-size: 14px;
  color: var(--ink-500);
  margin: 6px 0 0;
  line-height: 1.5;
}

.contact-form-wrap .contact-form-head {
  color: var(--ink);
  margin-bottom: 20px;
}
.contact-form-wrap .contact-form-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 8px 0 12px;
}
.contact-form-wrap .contact-form-head p {
  color: var(--ink-500);
  margin: 0;
}

/* ---------- Footer Instagram link ---------- */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  font-weight: 600;
}
.footer-social svg { width: 20px; height: 20px; }
.footer-social:hover { color: var(--orange); }

/* ---------- Owners (about.html) ---------- */
.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 28px;
}
@media (max-width: 760px) { .owners-grid { grid-template-columns: 1fr; } }
.owner-card { display: grid; gap: 22px; }
.owner-card .owner-photo { width: 100%; max-width: 320px; }
.owner-card .owner-copy h3 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.owner-card .owner-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0;
}
.owner-contact-center { display: flex; justify-content: center; margin-top: 40px; }

/* ---------- Calculator qualifying requirements (host.html) ---------- */
.calc-reqs {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.calc-reqs-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-500);
  margin: 0 0 12px;
}
.calc-reqs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.calc-reqs li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.calc-reqs li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-600);
  font-weight: 800;
}

