:root {
  --ink: #17211f;
  --muted: #5c6762;
  --paper: #fbfaf5;
  --line: #ddd8c7;
  --green: #0f6b55;
  --green-deep: #074536;
  --gold: #f2b84b;
  --coral: #dc6b4d;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 33, 31, 0.18);
}

* {
  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(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(rgba(7, 69, 54, 0.78), rgba(7, 69, 54, 0.26));
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.main-nav a,
.header-action {
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.header-action {
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  color: var(--white);
  font-weight: 700;
}

.header-action:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 160px clamp(18px, 5vw, 72px) 48px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 30, 25, 0.88), rgba(7, 30, 25, 0.48) 52%, rgba(7, 30, 25, 0.2)),
    linear-gradient(0deg, rgba(7, 30, 25, 0.8), rgba(7, 30, 25, 0.05) 48%);
}

.hero-content,
.trust-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 850px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.2vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 0 16px 34px rgba(242, 184, 75, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.trust-panel {
  align-self: center;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(-22px);
}

.trust-panel > div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
}

.metric {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 1;
}

.trust-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
}

.section,
.route-band,
.booking {
  padding: clamp(72px, 9vw, 130px) clamp(18px, 5vw, 72px);
}

.intro {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.service-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 1.4rem;
  font-weight: 900;
}

.service-card p,
.reward-copy p,
.route-copy p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.area-section {
  color: var(--white);
  background: var(--green-deep);
}

.area-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 540px;
}

.area-info {
  padding: clamp(72px, 9vw, 130px) clamp(18px, 5vw, 64px);
}

.area-info h2 {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 48px);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.area-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
}

.area-block h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-block p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.area-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.area-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.area-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.area-map-panel {
  min-height: 480px;
}

.area-map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

.route-map {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 107, 85, 0.25), rgba(15, 107, 85, 0.25)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1400&q=85")
      center/cover;
  box-shadow: var(--shadow);
}

.road-line {
  position: absolute;
  top: 48%;
  left: 18%;
  width: 64%;
  height: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 46px,
    transparent 46px 62px
  );
  transform: rotate(-9deg);
}

.pin {
  position: absolute;
  z-index: 2;
  width: min(250px, calc(100% - 32px));
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

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

.pin span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pin.start {
  top: 42px;
  left: 34px;
}

.pin.finish {
  right: 34px;
  bottom: 42px;
}

.rewards {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: #f4efe4;
}

.reward-visual {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.reward-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.reward-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 750;
}

.check-list li::before {
  content: "OK";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 0.64rem;
}

.pricing {
  padding-top: clamp(36px, 5vw, 56px);
  background: var(--paper);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.pricing-single {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.pricing-card--featured {
  width: 100%;
  max-width: 440px;
  border-color: var(--green);
  border-width: 2px;
}

.pricing-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pricing-type {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-rate {
  margin-bottom: 6px;
  color: var(--green);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 950;
  line-height: 1;
}

.pricing-note {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.84rem;
}

.pricing-breakdown {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #f4efe4;
}

.pricing-breakdown div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.pricing-breakdown span {
  color: var(--muted);
}

.pricing-breakdown strong {
  color: var(--ink);
  font-weight: 900;
}

.pricing-cta {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.pricing-cta a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
}

.guarantee {
  padding: clamp(70px, 10vw, 150px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--coral);
  text-align: center;
}

.guarantee p {
  margin-bottom: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.guarantee h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(3rem, 8vw, 7.2rem);
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
  background: var(--paper);
}

.booking-copy {
  position: sticky;
  top: 110px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 33, 31, 0.08);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d5d0bf;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(242, 184, 75, 0.36);
  border-color: var(--gold);
}

.wide {
  grid-column: 1 / -1;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.sk-inline {
  background: #f4efe4;
  padding: clamp(56px, 8vw, 100px) clamp(18px, 5vw, 72px);
}

.sk-inline-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.sk-inline h2 {
  max-width: 620px;
  margin-bottom: clamp(36px, 5vw, 56px);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.sk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

.sk-item {
  padding: 22px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.sk-item h3 {
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sk-item p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.sk-full-link {
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.sk-full-link a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer strong {
  color: var(--white);
}

@media (max-width: 880px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .hero,
  .section-heading,
  .rewards,
  .booking {
    grid-template-columns: 1fr;
  }

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

  .area-map-panel {
    position: relative;
    padding-bottom: 60%;
  }

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

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  .trust-panel {
    align-self: stretch;
    transform: none;
  }

  .service-grid,
  .pricing-grid,
  .sk-grid {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 580px) {
  .site-header {
    padding: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-action {
    display: none;
  }

  .nav-toggle {
    border-color: rgba(255, 255, 255, 0.45);
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .route-map {
    min-height: 420px;
  }

  .pin.start,
  .pin.finish {
    left: 16px;
    right: auto;
  }

  .pin.finish {
    bottom: 18px;
  }

  .road-line {
    top: 50%;
    left: 12%;
    width: 80%;
    transform: rotate(60deg);
  }

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