:root {
  --ink: #241b14;
  --muted: #75685d;
  --ivory: #fffaf2;
  --warm: #f1e6d7;
  --soft: #fbf1e3;
  --mist: #efe1cf;
  --line: rgba(65, 43, 29, .12);
  --gold: #aa7b42;
  --green: #123d34;
  --brown: #6f4c32;
  --espresso: #2b1c14;
  --shadow: 0 24px 70px rgba(82, 55, 35, .10);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.serif { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: uppercase;
}
.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 26px 54px;
  color: var(--ink);
  background: rgba(255,250,242,.86);
  border-bottom: 1px solid rgba(65,43,29,.09);
  backdrop-filter: blur(22px);
}
.topbar.light {
  position: sticky;
  color: var(--ink);
  background: rgba(255,250,242,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.identity { display: flex; align-items: center; gap: 14px; }
.mark {
  display: grid;
  place-items: center;
  width: 60px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 12px;
  font-weight: 850;
}
.identity b { display: block; }
.identity small { display: block; margin-top: 4px; opacity: .68; font-size: 12px; }
.nav { display: flex; justify-content: center; gap: 30px; font-size: 13px; }
.nav a,
.nav-trigger {
  position: relative;
  opacity: .88;
  padding: 10px 0;
}
.nav a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.nav a:hover::after,
.nav a.active::after,
.nav-item:hover .nav-trigger::after,
.nav-trigger.active::after { transform: scaleX(1); }
.nav a.active,
.nav-trigger.active { opacity: 1; font-weight: 700; }
.nav-item { position: relative; }
.mega {
  position: absolute;
  top: 42px;
  left: 50%;
  width: min(760px, calc(100vw - 80px));
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  color: var(--ink);
  background: rgba(255,250,242,.98);
  border: 1px solid var(--line);
  box-shadow: 0 28px 80px rgba(65,43,29,.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity .22s ease, transform .22s ease;
}
.nav-item:hover .mega { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.mega a {
  padding: 14px 14px 13px;
  border: 1px solid rgba(65,43,29,.1);
  background: linear-gradient(180deg, #fffdf8, #f7ead8);
}
.mega a::after { display: none; }
.mega b { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 19px; font-weight: 400; }
.mega small { display: block; margin-top: 7px; color: var(--muted); line-height: 1.45; }
.tools { justify-self: end; display: flex; gap: 12px; align-items: center; }
.pill, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
}
.pill {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255,250,242,.72);
  font-size: 12px;
}
.topbar.light .pill { border-color: var(--line); background: #fffaf2; }
.pill.solid, .button.light {
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8, #f0dfc8);
  border: 1px solid rgba(255,250,241,.94);
  box-shadow: 0 15px 38px rgba(82,55,35,.15);
}
.button {
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid currentColor;
  font-size: 13px;
  transition: transform .24s ease, box-shadow .24s ease;
}
.button:hover { transform: translateY(-2px); }
.button.dark {
  color: #fff;
  background: linear-gradient(180deg, #8b6546, #3a261a);
  border-color: #68442a;
  box-shadow: 0 16px 36px rgba(82,55,35,.16);
}
.button.ghost {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.hero {
  min-height: 870px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: var(--soft);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroFade 30s infinite;
}
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }
.hero-slide:nth-child(5) { animation-delay: 24s; }
.hero-slide img {
  object-position: 68% 50%;
  filter: sepia(.04) saturate(.94) contrast(1.02) brightness(1.04);
  transform: scale(1.04);
  animation: heroDrift 30s infinite;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,247,235,.95), rgba(255,247,235,.82) 38%, rgba(255,247,235,.28) 66%, rgba(255,247,235,.04)),
    linear-gradient(180deg, rgba(255,247,235,.34), transparent 48%, rgba(244,229,207,.84));
}
@keyframes heroFade {
  0% { opacity: 0; }
  5% { opacity: 1; }
  20% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes heroDrift {
  0% { transform: scale(1.04) translateX(0); }
  50% { transform: scale(1.08) translateX(-1.4%); }
  100% { transform: scale(1.04) translateX(0); }
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 112px));
  padding: 235px 0 0 56px;
}
.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(50px, 5.7vw, 92px);
  line-height: 1.02;
  text-wrap: balance;
}
.hero p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 0;
  color: #5d5c55;
  font-size: 17px;
  line-height: 1.72;
}
.hero .button.ghost {
  color: var(--ink);
  border-color: rgba(65,43,29,.24);
  background: rgba(255,250,242,.64);
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.entry-band {
  position: relative;
  z-index: 2;
  margin: 95px 56px 0;
  display: grid;
  grid-template-columns: 1.15fr repeat(5, 1fr);
  border: 1px solid rgba(65,43,29,.11);
  background: rgba(255,250,242,.92);
  box-shadow: 0 24px 80px rgba(82,55,35,.12);
  backdrop-filter: blur(20px);
}
.entry-band > * {
  min-height: 132px;
  padding: 22px 18px;
  border-right: 1px solid rgba(65,43,29,.1);
}
.entry-intro { color: var(--muted); line-height: 1.65; font-size: 13px; }
.entry-card { transition: .28s ease; }
.entry-card:hover { background: #fffdf8; transform: translateY(-7px); box-shadow: inset 0 -2px 0 var(--gold); }
.entry-card b { display: block; font-family: Georgia, serif; font-weight: 400; font-size: 21px; line-height: 1.15; }
.entry-card small { display: block; margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.section { padding: 82px 56px; }
.page-hero {
  padding: 128px 56px 58px;
  background:
    linear-gradient(135deg, rgba(255,250,242,.98), rgba(239,225,207,.82)),
    radial-gradient(circle at 78% 12%, rgba(170,123,66,.14), transparent 28%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 50px;
  align-items: end;
}
.page-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .98;
}
.page-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.page-panel {
  padding: 24px;
  background: rgba(255,253,248,.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.page-panel b { display: block; margin-bottom: 10px; }
.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.mini-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fffaf2;
  border: 1px solid var(--line);
  color: #5e5b54;
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 10px 28px rgba(72,64,46,.07);
}
.mini-nav a.active {
  color: #fff;
  border-color: var(--brown);
  background: linear-gradient(180deg, #8b6546, #3a261a);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 44px;
  margin-bottom: 42px;
}
.section-head h1,
.section-head h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1;
}
.section-head p { max-width: 460px; margin: 0 0 8px; color: var(--muted); line-height: 1.72; }
.light-section { background: var(--ivory); }
.soft-section { background: var(--soft); }
.quiet-section { background: linear-gradient(180deg, var(--ivory), var(--mist)); }
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
.copy-block { display: flex; min-height: 500px; flex-direction: column; justify-content: end; }
.copy-block h1, .copy-block h2 { margin: 0; font-size: clamp(46px, 5.7vw, 86px); line-height: .98; }
.copy-block p { color: var(--muted); line-height: 1.75; }
.image-block { min-height: 500px; overflow: hidden; background: #ddd; }
.image-block img,
.photo img,
.main-photo img,
.thumb img { transition: transform .7s ease; }
.image-block:hover img,
.vehicle:hover .photo img,
.use-card:hover .photo img,
.guide-card:hover .photo img { transform: scale(1.045); }
.proof-row, .card-grid, .vehicle-grid, .guide-grid, .promise-grid {
  display: grid;
  gap: 16px;
}
.step-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proof-row { grid-template-columns: repeat(3, 1fr); margin-top: 30px; }
.proof, .use-card, .vehicle, .guide-card, .promise-card, .notice {
  background: linear-gradient(180deg, #fffdf8, #f7ead8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step-card, .feature-card {
  min-height: 190px;
  padding: 24px;
  background: linear-gradient(180deg, #fffdf8, #f7ead8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.step-card:hover,
.feature-card:hover,
.use-card:hover,
.guide-card:hover,
.promise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182,154,97,.36);
  box-shadow: 0 30px 84px rgba(72,64,46,.14);
}
.step-card span, .feature-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.step-card h3, .feature-card h3 { margin: 0 0 12px; font-size: 22px; }
.step-card p, .feature-card p { margin: 0; color: var(--muted); line-height: 1.62; }
.proof, .promise-card { min-height: 122px; padding: 20px; }
.proof span, .promise-card span { display: block; margin-bottom: 12px; color: var(--gold); font-size: 11px; letter-spacing: 0; text-transform: uppercase; }
.card-grid { grid-template-columns: repeat(3, 1fr); }
.use-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.use-card .photo, .guide-card .photo { height: 220px; overflow: hidden; background: #ddd; }
.use-card .body, .guide-card .body, .vehicle .body { padding: 24px; }
.use-card h3, .guide-card h3 { margin: 0; font-size: 35px; line-height: 1.05; }
.use-card p, .guide-card p, .vehicle p { color: var(--muted); line-height: 1.62; }
.use-card span { display: block; margin-top: 18px; color: var(--green); font-size: 13px; font-weight: 600; }
.tabs { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.tabs button, .filter {
  min-height: 60px;
  border: 1px solid rgba(17,18,15,.1);
  border-radius: 999px;
  background: linear-gradient(180deg, #fffdf8, #f1dfc5);
  color: #604c3c;
  font: inherit;
  font-weight: 600;
  box-shadow: 0 14px 34px rgba(17,18,15,.07);
}
.tabs button { cursor: pointer; }
.tabs button.active { color: #fff; border-color: var(--brown); background: linear-gradient(180deg, #8b6546, #3a261a); }
.filters { display: grid; grid-template-columns: repeat(6, 1fr) auto; gap: 10px; margin-top: 18px; }
.filter { display: flex; align-items: center; justify-content: space-between; padding: 0 17px; font-size: 13px; }
.vehicle-grid { grid-template-columns: repeat(3, 1fr); margin-top: 34px; }
.vehicle { transition: .28s ease; }
.vehicle:hover { transform: translateY(-7px); box-shadow: 0 30px 80px rgba(17,18,15,.12); }
.vehicle .photo { height: 260px; overflow: hidden; background: #ddd; }
.vehicle.featured .photo { height: 340px; }
.vehicle.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  background:
    linear-gradient(135deg, #fffdf8, #f7ead8 62%, rgba(239,225,207,.82));
}
.vehicle.featured .photo { height: auto; min-height: 100%; }
.vehicle h3 { margin: 0; font-size: 22px; }
.vehicle.featured h3 { font-size: 31px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags span { padding: 7px 9px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; background: rgba(255,250,242,.78); }
.card-actions { display: flex; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.card-actions a { color: var(--green); font-weight: 700; }
.notice {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px;
}
.notice p { margin: 0; color: var(--muted); line-height: 1.65; }
.advisor-band {
  margin-top: 26px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(43,28,20,.97), rgba(111,76,50,.96)),
    radial-gradient(circle at 90% 0, rgba(255,248,237,.18), transparent 26%);
  box-shadow: 0 24px 60px rgba(82,55,35,.2);
}
.advisor-band p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.65; }
.advisor-band b { display: block; margin-bottom: 6px; color: #fff; }
.gallery { display: grid; grid-template-columns: 1fr 118px; gap: 12px; }
.main-photo { min-height: 570px; overflow: hidden; background: #222; }
.thumbs { display: grid; gap: 12px; }
.thumb { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.verify-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 28px 0; }
.verify { padding: 18px; border: 1px solid var(--line); background: rgba(255,250,242,.8); box-shadow: 0 14px 34px rgba(82,55,35,.08); }
.verify span { display: block; margin-bottom: 10px; color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: 0; }
.costs { margin-top: 28px; border-top: 1px solid var(--line); }
.cost { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(17,18,15,.09); color: #4e504a; }
.guide-grid { grid-template-columns: repeat(4, minmax(220px, 1fr)); }
.guide-card { min-height: 424px; }
.guide-card h3 { font-size: 28px; }
.promise-grid { grid-template-columns: repeat(4, 1fr); }
.breadcrumb { margin-bottom: 24px; color: var(--muted); font-size: 13px; }
.breadcrumb a { color: var(--green); font-weight: 600; }
.mt-32 { margin-top: 32px; }
@media (max-width: 980px) {
  .topbar { position: sticky; grid-template-columns: 1fr auto; padding: 20px 24px; }
  .nav { display: none; }
  .mega { display: none; }
  .tools .pill:first-child { display: none; }
  .hero { min-height: auto; padding-bottom: 24px; }
  .hero-copy { width: auto; padding: 120px 24px 0; }
  .hero h1 { font-size: clamp(44px, 12vw, 68px); line-height: 1.04; }
  .entry-band { margin: 64px 24px 0; grid-template-columns: 1fr; }
  .entry-band > * { min-height: auto; }
  .section { padding: 64px 24px; }
  .page-hero { padding: 104px 24px 56px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .section-head, .split, .notice, .advisor-band { display: grid; grid-template-columns: 1fr; }
  .proof-row, .card-grid, .vehicle-grid, .verify-grid, .guide-grid, .promise-grid, .step-grid, .feature-grid { grid-template-columns: 1fr; }
  .vehicle.featured { grid-column: auto; grid-template-columns: 1fr; }
  .vehicle.featured .photo { height: 260px; min-height: auto; }
  .tabs { grid-template-columns: 1fr 1fr; }
  .filters { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
}
