:root {
  --ink: #261a10;
  --muted: #7a6a58;
  --line: #ead9bd;
  --paper: #fffdf8;
  --soft: #fff3d8;
  --green: #c78a23;
  --green-dark: #8d5d13;
  --navy: #24180e;
  --gold: #e4b95f;
  --shadow: 0 18px 50px rgba(102, 68, 18, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 220, 146, 0.36), transparent 28%),
    linear-gradient(180deg, #fff7e6 0%, #fffaf0 42%, #fffdf8 100%);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 86px;
  height: auto;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  gap: 6px;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a:hover {
  color: var(--ink);
  background: var(--soft);
}

.main-nav a[aria-current="page"] {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(199, 138, 35, 0.22);
}

.main-nav a[aria-current="page"]:hover {
  color: #fff;
  background: var(--green-dark);
}

.header-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 10px 18px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(199, 138, 35, 0.22);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--green-dark);
}

.button-small {
  min-height: 38px;
  padding: 8px 14px;
}

.button-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-light:hover {
  background: var(--soft);
}

.hero,
.section,
.search-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 30px 0 0;
}

.hero-inner {
  position: relative;
  min-height: 510px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(38, 26, 16, 0.9) 0%, rgba(64, 39, 15, 0.66) 45%, rgba(122, 76, 24, 0.16) 100%),
    linear-gradient(180deg, rgba(55, 34, 12, 0.08), rgba(55, 34, 12, 0.42)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=82") center / cover;
  box-shadow: var(--shadow);
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(38, 26, 16, 0.46));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 68px 58px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #ffe4a4; }

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-copy p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.search-shell {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.search-card {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 1fr 1fr auto;
  gap: 10px;
  align-items: end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.82rem;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.search-button {
  min-width: 128px;
}

.form-status {
  min-height: 24px;
  margin: 10px 4px 0;
  color: var(--green-dark);
  font-weight: 800;
}

.section {
  padding: 38px 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlights article,
.vehicle-card,
.route-grid article,
.guide,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(21, 32, 43, 0.06);
}

.highlights article {
  padding: 20px;
}

.highlights strong,
.highlights span {
  display: block;
}

.highlights span,
.service-card p,
.vehicle-body p,
.route-grid small,
.guide span,
.contact-panel p {
  color: var(--muted);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.text-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(21, 32, 43, 0.06);
}

.service-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: var(--soft);
}

.service-card__top {
  display: grid;
  gap: 8px;
}

.service-card__top span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff0c7;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card__top strong {
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-card p {
  margin-bottom: 0;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.vehicle-card {
  overflow: hidden;
}

.vehicle-visual {
  position: relative;
  height: 250px;
  background: linear-gradient(180deg, #fff7e6, #f8e8c4);
}

.vehicle-card.featured .vehicle-visual {
  background: linear-gradient(180deg, #fff3d3, #f3dfb6);
}

.car-roof {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 78px;
  height: 64px;
  border: 14px solid var(--navy);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
}

.car-body {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 54px;
  height: 74px;
  border-radius: 34px 58px 22px 22px;
  background: linear-gradient(180deg, #263746, #15202b);
}

.suv .car-body {
  height: 88px;
  background: linear-gradient(180deg, var(--green-dark), #4f330b);
}

.wheel {
  position: absolute;
  bottom: 32px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 10px solid #111a24;
  background: #d7dde4;
}

.wheel.left { left: 24%; }
.wheel.right { right: 24%; }

.vehicle-body {
  padding: 22px;
}

.vehicle-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vehicle-title span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff0c7;
  font-size: 0.82rem;
  font-weight: 900;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--soft);
  font-weight: 800;
  font-size: 0.84rem;
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.vehicle-footer strong {
  color: var(--green-dark);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.route-grid article {
  padding: 20px;
}

.route-grid span,
.route-grid strong,
.route-grid small {
  display: block;
}

.route-grid strong {
  margin: 10px 0 4px;
  color: var(--green-dark);
}

.pricing-section .section-head p {
  color: var(--muted);
  max-width: 720px;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(21, 32, 43, 0.06);
}

.pricing-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  color: var(--muted);
  background: #fff6df;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-table td:nth-child(3),
.pricing-table td:nth-child(4) {
  color: var(--green-dark);
  font-weight: 900;
  white-space: nowrap;
}

.pricing-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: end;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 26px;
}

.price-hero h1 {
  max-width: 820px;
}

.price-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.price-call-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.price-call-card span {
  color: var(--muted);
}

.price-filter {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr auto;
  gap: 12px;
  align-items: end;
  padding-top: 10px;
}

.price-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-notes article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(21, 32, 43, 0.06);
}

.price-notes ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.guide {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 26px;
}

.guide ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide li {
  padding: 18px;
  border-radius: 18px;
  background: var(--soft);
}

.guide strong,
.guide span {
  display: block;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding: 26px;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta a:last-child {
  color: var(--ink);
  background: var(--soft);
}

@media (max-width: 1020px) {
  .main-nav,
  .header-actions { display: none; }

  .search-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-button {
    grid-column: 1 / -1;
  }

  .highlights,
  .services-grid,
  .route-grid,
  .price-hero,
  .price-filter,
  .price-notes,
  .guide,
  .guide ol {
    grid-template-columns: 1fr;
  }

  .mobile-cta { display: grid; }

  body { padding-bottom: 78px; }
}

@media (max-width: 720px) {
  .hero,
  .section,
  .search-shell {
    width: min(100% - 22px, 1180px);
  }

  .hero { padding-top: 18px; }

  .hero-inner { min-height: 430px; }

  .hero-copy { padding: 30px; }

  h1 { font-size: 3rem; }

  .search-card,
  .car-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .vehicle-footer,
  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}
