:root {
  --ink: #101820;
  --muted: #65717a;
  --paper: #fffaf0;
  --card: #ffffff;
  --green: #0f3d34;
  --green-2: #17594b;
  --copper: #c77b36;
  --sand: #ead9bd;
  --line: rgba(16, 24, 32, 0.12);
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  background: var(--green);
  color: #fff;
  font-size: 14px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  flex-wrap: wrap;
}
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family:
    Playfair Display,
    Georgia,
    serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--green);
}
.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--copper));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 12px 26px rgba(15, 61, 52, 0.26);
}
nav {
  display: flex;
  gap: 26px;
  color: #354047;
  font-weight: 700;
}
nav a:hover {
  color: var(--copper);
}
.head-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 19px;
  font-weight: 800;
  transition: 0.2s;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 10px 24px rgba(199, 123, 54, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(199, 123, 54, 0.34);
}
.btn-ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--green);
}
.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 25px;
}
.mobile {
  display: none;
  padding: 0 0 18px;
}
.mobile a {
  display: block;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(199, 123, 54, 0.28),
      transparent 29%
    ),
    linear-gradient(125deg, var(--green) 0%, #102b32 52%, #0a151a 100%);
  color: #fff;
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -60px -100px auto;
  width: 520px;
  height: 520px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.07) 0 12px,
    transparent 12px 25px
  );
  border-radius: 50%;
  opacity: 0.45;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 38px;
  align-items: center;
  padding: 84px 0 74px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
  color: #ffe4c7;
  font-size: 14px;
}
.hero h1 {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  margin: 18px 0;
  color: #fff;
}
.hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.83);
  max-width: 650px;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.hero-point {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  padding: 15px;
}
.hero-point i {
  color: #ffd09f;
}
.hero-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 560px;
  background: #111;
}
.hero-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: saturate(0.95);
}
.flag-ribbon {
  position: absolute;
  right: 22px;
  top: 22px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--green);
  border-radius: 24px;
  padding: 12px 15px;
  font-weight: 900;
  display: flex;
  gap: 9px;
  align-items: center;
}
.float-panel {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: rgba(255, 250, 240, 0.95);
  color: var(--ink);
  border-radius: 26px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.float-panel strong {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  font-size: 26px;
  color: var(--green);
}
.section {
  padding: 86px 0;
}
.section.white {
  background: #fff;
}
.section.green {
  background: var(--green);
  color: #fff;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head h2 {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0;
  color: var(--green);
}
.green .section-head h2,
.green h2 {
  color: #fff;
}
.section-head p {
  max-width: 560px;
  color: var(--muted);
  margin: 0;
}
.green .section-head p {
  color: rgba(255, 255, 255, 0.75);
}
.fleet {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.car {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(16, 24, 32, 0.08);
  border: 1px solid var(--line);
}
.car img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}
.car-body {
  padding: 24px;
}
.car h3 {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  font-size: 27px;
  margin: 0 0 8px;
  color: var(--green);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--copper);
  font-weight: 900;
  font-size: 28px;
}
.price small {
  font-size: 14px;
  color: var(--muted);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: #4d5a61;
  font-size: 13px;
  background: #fffaf0;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}
.image-stack {
  position: relative;
}
.image-stack img {
  border-radius: 34px;
  box-shadow: var(--shadow);
  height: 520px;
  width: 100%;
  object-fit: cover;
}
.stamp {
  position: absolute;
  right: -10px;
  bottom: 28px;
  background: var(--copper);
  color: #fff;
  border-radius: 50%;
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 22px 44px rgba(199, 123, 54, 0.32);
  transform: rotate(-8deg);
}
.list {
  display: grid;
  gap: 14px;
}
.list-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
}
.list-item i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #f3e4cc;
  color: var(--copper);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  padding: 24px;
}
.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--copper);
  font-weight: 900;
  margin-bottom: 18px;
}
.step h3 {
  margin: 0 0 8px;
  color: #fff;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(16, 24, 32, 0.07);
}
.person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.map-card {
  background: linear-gradient(135deg, #fff, #f5ead8);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-slot {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #efe1cc, #fff8e9);
}
.map-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-fallback {
  padding: 28px;
  text-align: center;
  color: var(--green);
}
.map-fallback i {
  font-size: 58px;
  color: var(--copper);
  margin-bottom: 12px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}
.contact-box,
.form-box {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(16, 24, 32, 0.07);
}
.contact-row {
  display: flex;
  gap: 14px;
  margin: 18px 0;
}
.contact-row i {
  color: var(--copper);
  font-size: 22px;
  width: 30px;
}
.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  margin: 7px 0 14px;
  background: #fffaf0;
  color: var(--ink);
  font: inherit;
}
.form-box label {
  font-weight: 800;
}
.footer {
  background: #0b1518;
  color: #d6ddde;
  padding: 54px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.footer h4 {
  color: #fff;
  margin: 0 0 14px;
}
.footer a {
  display: block;
  color: #bfc9ca;
  margin: 7px 0;
}
.footer a:hover {
  color: #ffd09f;
}
.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 18px;
  color: #9facad;
  font-size: 14px;
}
.cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 7px solid var(--copper);
  box-shadow: var(--shadow);
  border-radius: 24px;
  padding: 18px;
  display: none;
}
.cookie.show {
  display: block;
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie p {
  margin: 0;
  color: var(--muted);
}
.policy {
  max-width: 920px;
  background: #fff;
  border-radius: 30px;
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(16, 24, 32, 0.07);
}
.policy h1,
.page-hero h1 {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  color: var(--green);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  margin: 0 0 18px;
}
.policy h2 {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  color: var(--green);
  font-size: 30px;
  margin-top: 28px;
}
.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #fff6e8, #e8d2b1);
}
.cards2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
}
.mini-card i {
  font-size: 30px;
  color: var(--copper);
  margin-bottom: 12px;
}
.mini-card h3 {
  font-family:
    Playfair Display,
    Georgia,
    serif;
  color: var(--green);
  font-size: 28px;
  margin: 0 0 8px;
}
.faq {
  display: grid;
  gap: 14px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
}
.faq summary {
  font-weight: 900;
  color: var(--green);
  cursor: pointer;
}
.hidden {
  display: none !important;
}
@media (max-width: 920px) {
  nav,
  .desktop-phone {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .mobile.open {
    display: block;
  }
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .fleet,
  .reviews,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-card {
    min-height: auto;
  }
  .hero-card img {
    height: 430px;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 12px;
  }
}
@media (max-width: 620px) {
  .topbar .container,
  .head-actions {
    display: none;
  }
  .navwrap {
    padding: 13px 0;
  }
  .brand {
    font-size: 23px;
  }
  .hero-grid {
    padding: 54px 0;
  }
  .hero-points,
  .fleet,
  .reviews,
  .steps,
  .footer-grid,
  .cards2 {
    grid-template-columns: 1fr;
  }
  .hero-card img {
    height: 360px;
  }
  .float-panel {
    grid-template-columns: 1fr;
  }
  .cookie-inner {
    display: block;
  }
  .cookie .btn {
    margin-top: 12px;
    width: 100%;
  }
  .section {
    padding: 58px 0;
  }
}
