:root {
  --brown: #9f7970;
  --brown-dark: #6f554f;
  --text: #171616;
  --muted: #5d5250;
  --line: #eadfdb;
  --paper: #ffffff;
  --soft: #faf8f6;
  --shadow: 0 4px 14px rgba(54, 36, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 10px clamp(24px, 6vw, 80px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 58px;
  height: 46px;
  object-fit: contain;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 11px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--brown);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  justify-content: flex-end;
  gap: 14px;
}

.book-button,
.language-button,
.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.book-button {
  padding: 0 18px;
  color: #fff;
  background: var(--brown);
  border: 1px solid var(--brown);
  box-shadow: 0 8px 18px rgba(159, 121, 112, 0.25);
}

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

.language-button,
.login-button {
  gap: 9px;
  min-width: 86px;
  padding: 0 14px;
  color: var(--brown-dark);
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
}

.login-button {
  min-width: 88px;
  border-color: var(--brown-dark);
}

.language-menu {
  position: relative;
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 150px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.language-menu.open .language-options {
  display: grid;
}

.language-options button {
  padding: 10px 12px;
  color: var(--brown-dark);
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  text-align: left;
}

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

.globe,
.user-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
}

.globe::before,
.globe::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.globe::before {
  top: 50%;
  left: 2px;
  width: 10px;
  height: 1px;
}

.globe::after {
  top: 2px;
  bottom: 2px;
  left: 7px;
  width: 1px;
}

.user-icon {
  border: 0;
}

.user-icon::before,
.user-icon::after {
  position: absolute;
  left: 50%;
  border: 1.6px solid currentColor;
  content: "";
  transform: translateX(-50%);
}

.user-icon::before {
  top: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.user-icon::after {
  bottom: 1px;
  width: 12px;
  height: 7px;
  border-radius: 10px 10px 0 0;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--brown-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  overflow: hidden;
  place-items: center;
  text-align: center;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(1080px, calc(100% - 40px));
  margin-top: 10vh;
  color: #fff;
}

.hero h1,
.section-heading h2,
.destination-card strong,
.site-footer h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 7vw, 4.9rem);
  line-height: 1.05;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 720px;
  margin: 0 0 32px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.34);
}

.hero-button {
  min-height: 52px;
  padding-inline: 28px;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.destinations,
.about,
.adventures {
  padding: clamp(64px, 8vw, 96px) clamp(22px, 6vw, 92px);
}

.about {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-grid article {
  display: grid;
  gap: 12px;
  min-height: 160px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(54, 36, 30, 0.08);
}

.about-grid strong {
  color: var(--brown);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
}

.about-grid span {
  color: var(--muted);
  font-weight: 600;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 6vw, 66px);
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 22px;
  color: var(--brown);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.destination-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 32px;
  min-height: 920px;
}

.map-panel {
  position: relative;
  min-height: 760px;
}

.map-panel img {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(940px, 120%);
  max-width: none;
  opacity: 0.55;
  transform: translateX(-50%);
}

.pin {
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--brown);
  border-radius: 50% 50% 50% 0;
  opacity: 0.72;
  transform: rotate(-45deg);
}

.pin::after {
  position: absolute;
  inset: 7px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.pin.active {
  opacity: 1;
  transform: rotate(-45deg) scale(1.2);
  box-shadow: 0 0 0 10px rgba(159, 121, 112, 0.18);
}

.pin-one {
  top: 315px;
  left: 58%;
}

.pin-two {
  top: 374px;
  left: 65%;
}

.pin-three {
  top: 405px;
  left: 60%;
}

.pin-four {
  top: 435px;
  left: 63%;
}

.pin-five {
  top: 398px;
  left: 70%;
}

.destination-list {
  display: grid;
  gap: 24px;
}

.destination-card {
  display: grid;
  gap: 14px;
  min-height: 128px;
  padding: 28px 34px;
  color: var(--brown);
  background: #fff;
  border: 0;
  border-radius: 0 0 0 24px;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.destination-card:hover,
.destination-card.active {
  transform: translateX(-8px);
  box-shadow: 0 8px 22px rgba(54, 36, 30, 0.22);
}

.destination-card strong {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.destination-card span {
  color: var(--brown-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.destination-detail {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.destination-detail h3 {
  margin: 0;
  color: var(--brown);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.35rem;
}

.destination-detail p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.destination-detail .book-button {
  justify-self: start;
}

.adventures {
  padding-top: 18px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--brown);
  font-size: 1.05rem;
}

.instagram-link::before {
  width: 17px;
  height: 17px;
  border: 1.7px solid currentColor;
  border-radius: 5px;
  content: "";
}

.carousel-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
}

.carousel-arrow {
  display: grid;
  width: 44px;
  height: 52px;
  place-items: center;
  color: var(--brown);
  background: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 2.2rem;
  line-height: 1;
}

.adventure-track {
  display: grid;
  grid-auto-columns: minmax(270px, 1fr);
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 4px 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.adventure-track::-webkit-scrollbar {
  display: none;
}

.adventure-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.adventure-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.03 / 1;
  object-fit: cover;
}

.adventure-card p {
  display: -webkit-box;
  min-height: 58px;
  margin: 0;
  padding: 14px 16px 10px;
  overflow: hidden;
  color: var(--text);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.adventure-card div {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 16px;
  color: var(--brown);
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1.05fr;
  gap: clamp(28px, 5vw, 72px);
  padding: 34px clamp(24px, 6vw, 80px) 32px;
  color: #fff;
  background: var(--brown);
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 18px;
  color: #fff;
}

.site-footer h2 {
  font-size: 1.55rem;
}

.site-footer h3 {
  font-size: 1.08rem;
}

.site-footer p,
.site-footer a {
  color: #fff;
  font-weight: 600;
}

.site-footer a {
  display: block;
  margin: 12px 0;
}

.footer-link {
  display: block;
  margin: 12px 0;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  text-align: left;
}

.footer-about p {
  max-width: 285px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  margin: 0;
  place-items: center;
  color: var(--brown);
  background: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 22, 22, 0.5);
  backdrop-filter: blur(5px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(90vh, 820px);
  overflow: auto;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.modal-panel.compact {
  width: min(460px, 100%);
}

.modal-panel h2 {
  margin: 0 42px 10px 0;
  color: var(--brown);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}

.modal-panel p {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--brown-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.booking-form,
.login-form,
.newsletter-form {
  display: grid;
  gap: 16px;
}

.booking-form label,
.login-form label,
.newsletter-form label {
  display: grid;
  gap: 7px;
  color: var(--brown-dark);
  font-weight: 700;
}

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

textarea {
  resize: vertical;
}

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

.form-submit {
  width: 100%;
  min-height: 48px;
}

.info-content ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  color: var(--muted);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 340px;
  padding: 14px 16px;
  color: #fff;
  background: var(--brown-dark);
  border-radius: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .site-header.open .site-nav,
  .site-header.open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .destination-layout,
  .about-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .destination-layout {
    min-height: auto;
  }

  .map-panel {
    min-height: 520px;
    overflow: hidden;
  }

  .map-panel img {
    width: min(760px, 130%);
  }

  .destination-card:hover,
  .destination-card.active {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding: 9px 18px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 48px;
    height: 38px;
  }

  .site-header.open .site-nav,
  .site-header.open .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    min-height: calc(100vh - 70px);
  }

  .hero-content {
    margin-top: 4vh;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .destinations,
  .adventures {
    padding-inline: 18px;
  }

  .section-heading h2 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .map-panel {
    min-height: 390px;
  }

  .pin-one {
    top: 198px;
  }

  .pin-two {
    top: 242px;
  }

  .pin-three {
    top: 262px;
  }

  .pin-four {
    top: 286px;
  }

  .pin-five {
    top: 256px;
  }

  .destination-card {
    min-height: 110px;
    padding: 22px 18px;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

  .adventure-track {
    grid-auto-columns: minmax(255px, 82vw);
  }

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