:root {
  --bg: #f7f4ec;
  --bg-soft: #fbfaf6;
  --panel: #ffffff;
  --ink: #182019;
  --muted: #657065;
  --line: #ded8ca;
  --brand: #24442f;
  --brand-dark: #142119;
  --brand-soft: #e7efe8;
  --accent: #b8945c;
  --accent-soft: #efe4ce;
  --danger: #9f3f32;
  --success: #2e6b45;
  --shadow: 0 20px 55px rgba(20, 33, 25, 0.11);
  --shadow-soft: 0 12px 32px rgba(20, 33, 25, 0.07);
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -44px;
  left: 18px;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.topbar {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar i {
  color: var(--accent);
  margin-right: 7px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 244, 236, 0.92);
  border-bottom: 1px solid rgba(222, 216, 202, 0.85);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.035em;
  font-size: 21px;
}

.brand__mark {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 28px rgba(36, 68, 47, 0.24);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
}

.nav__links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--ink);
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  border-radius: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 21px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(36, 68, 47, 0.22);
}

.btn--primary:hover {
  background: var(--brand-dark);
}

.btn--secondary {
  background: var(--accent-soft);
  color: var(--brand-dark);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn--small {
  padding: 10px 15px;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 74px 0 48px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -210px;
  width: 620px;
  height: 620px;
  background: radial-gradient(
    circle,
    rgba(184, 148, 92, 0.32),
    rgba(184, 148, 92, 0) 63%
  );
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--brand);
  font-size: 14px;
  font-weight: 850;
  margin-bottom: 20px;
}

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

h1,
.h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(43px, 6vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.057em;
  margin-bottom: 22px;
}

.hero__lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 31px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 17px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.trust-pill i {
  color: var(--brand);
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(222, 216, 202, 0.9);
  animation: floatCard 7s ease-in-out infinite;
}

.image-slot {
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--accent-soft);
  display: block;
  position: relative;
}

.image-slot--small {
  min-height: 230px;
}

.image-slot--tall {
  min-height: 520px;
}

.image-slot__img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.image-slot--small .image-slot__img {
  height: 230px;
}

.image-slot--tall .image-slot__img {
  height: 520px;
}

.hero-card:hover .image-slot__img,
.car-card:hover .image-slot__img {
  transform: scale(1.035);
}

.image-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

.booking-card {
  position: absolute;
  left: -36px;
  bottom: 28px;
  width: min(362px, calc(100% - 34px));
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(20, 33, 25, 0.16);
  padding: 20px;
  backdrop-filter: blur(12px);
}

.booking-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.mini-form,
.form-grid {
  display: grid;
  gap: 12px;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(36, 68, 47, 0.58);
  box-shadow: 0 0 0 4px rgba(36, 68, 47, 0.09);
}

.help-text {
  color: var(--muted);
  font-size: 13px;
}

section,
.page-section {
  padding: 78px 0;
}

.page-hero {
  position: relative;
  padding: 66px 0 34px;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  right: -260px;
  top: -260px;
  background: radial-gradient(
    circle,
    rgba(184, 148, 92, 0.25),
    transparent 68%
  );
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--brand);
  font-weight: 760;
}

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

.section-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h2,
.h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.042em;
  margin-bottom: 0;
}

.section-text {
  color: var(--muted);
  max-width: 545px;
  margin-bottom: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(184, 148, 92, 0.48);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--accent-soft);
  margin-bottom: 18px;
  font-size: 20px;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 9px;
  letter-spacing: -0.022em;
}

.card p,
.card li {
  color: var(--muted);
}

.card p:last-child {
  margin-bottom: 0;
}

.band {
  background: #fffdf8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.car-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.car-card .image-slot {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.car-card__body {
  padding: 22px;
}

.car-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 14px;
}

.car-card__top h3 {
  margin-bottom: 3px;
}

.price {
  text-align: right;
  color: var(--brand);
  font-weight: 900;
  white-space: nowrap;
}

.price small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-size: 15px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.features i {
  color: var(--success);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 50px;
  align-items: center;
}

.steps {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
}

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.step h3 {
  margin-bottom: 5px;
}

.step p {
  color: var(--muted);
  margin-bottom: 0;
}

.quote-band {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(20, 33, 25, 0.18);
}

.quote-band h2 {
  color: #fff;
}

.quote-band p {
  color: rgba(255, 255, 255, 0.76);
  margin: 12px 0 0;
  max-width: 680px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 24px;
}

.contact-list {
  display: grid;
  gap: 13px;
}

.contact-item {
  display: flex;
  gap: 13px;
  align-items: start;
  color: var(--muted);
}

.contact-item i {
  color: var(--brand);
  margin-top: 5px;
  width: 18px;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  margin: 4px 0 18px;
}

.checkbox input {
  margin-top: 4px;
}

.notice {
  border-radius: 18px;
  padding: 16px 18px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: 1px solid rgba(36, 68, 47, 0.16);
}

.notice--warning {
  background: #fbf1df;
  border-color: #ead2a5;
}

.notice p:last-child {
  margin-bottom: 0;
}

.legal-shell {
  max-width: 940px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(26px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  font-size: clamp(38px, 4vw, 56px);
  margin-bottom: 12px;
}

.legal-shell h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  letter-spacing: -0.025em;
  margin: 34px 0 12px;
}

.legal-shell h3 {
  margin: 24px 0 8px;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
}

.legal-shell ul,
.legal-shell ol {
  padding-left: 22px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

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

th {
  color: var(--brand-dark);
  background: var(--bg-soft);
}

tr:last-child td {
  border-bottom: 0;
}

.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.76);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 38px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: grid;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a,
.footer-button {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-button:hover {
  color: #fff;
}

.footer-button {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.cookie-banner.is-visible {
  display: flex;
}
@media (max-width: 700px) {
  .reveal.is-visible {
    display: flex;
    flex-direction: column;
  }
  .form-card>h2, .h2 {
    font-size: 20px;
  }
}

.cookie-box {
  width: min(940px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 22px 70px rgba(20, 33, 25, 0.22);
  padding: 20px;
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.cookie-box h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
  font-size: 18px;
}

.cookie-box p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-backdrop {
  position: fixed;
  z-index: 130;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 33, 25, 0.46);
  padding: 20px;
}

.modal-backdrop.is-visible {
  display: flex;
}

.cookie-modal {
  width: min(660px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  padding: 28px;
  animation: popIn 0.22s ease both;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px;
  margin: 12px 0;
}

.cookie-option p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 14px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #c9c2b7;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  transition: 0.2s;
}

input:checked + .slider {
  background: var(--brand);
}

input:checked + .slider::before {
  transform: translateX(20px);
}

input:disabled + .slider {
  opacity: 0.62;
  cursor: not-allowed;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1020px) {
  .hero__grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav__links {
    position: fixed;
    inset: 120px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    padding: 14px 14px;
    border-radius: 14px;
  }

  .nav__links a:hover {
    background: var(--bg-soft);
  }

  .nav__links a::after {
    display: none;
  }

  .nav__actions .btn {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .trust-row,
  .cards-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .quote-band,
  .cookie-box {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .quote-band {
    padding: 30px;
  }

  .cookie-actions {
    justify-content: start;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar__inner {
    padding: 9px 0;
  }

  .topbar__group:first-child {
    display: none;
  }

  .brand {
    font-size: 18px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .hero,
  section,
  .page-section {
    padding: 54px 0;
  }

  .page-hero {
    padding-top: 48px;
  }

  h1,
  .h1 {
    font-size: 42px;
  }

  .hero__lead {
    font-size: 17px;
  }

  .image-slot,
  .image-slot--tall {
    min-height: 310px;
  }

  .image-slot__img,
  .image-slot--tall .image-slot__img {
    height: 310px;
  }

  .image-slot--small .image-slot__img {
    height: 220px;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}
