:root {
  --dark: #071f25;
  --dark-2: #0f3b3f;
  --green: #0b8c68;
  --green-soft: #dff4ec;
  --blue: #dceff5;
  --gold: #ffc44d;
  --orange: #f07d35;
  --paper: #fffdf7;
  --white: #ffffff;
  --text: #15272a;
  --muted: #617477;
  --line: #dbe7e5;
  --shadow: 0 22px 58px rgba(7, 31, 37, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(7, 31, 37, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 70px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

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

.brand-logo {
  background: #000;
  border: 1px solid rgba(255, 196, 77, 0.48);
  border-radius: 8px;
  height: 52px;
  object-fit: cover;
  width: 64px;
}

.brand strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 12px;
  margin-top: 3px;
}

.nav-menu {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.nav-menu a {
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 11px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  padding: 9px;
  width: 42px;
}

.menu-toggle span {
  background: var(--white);
  border-radius: 99px;
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 24px;
}

.hero {
  background:
    linear-gradient(90deg, rgba(7, 31, 37, 0.92), rgba(7, 31, 37, 0.48)),
    url("../images/hero-pool.jpg") center / cover;
  color: var(--white);
  display: grid;
  gap: 38px;
  min-height: 95vh;
  padding: 152px clamp(20px, 5vw, 70px) 54px;
}

.hero-copy {
  max-width: 880px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  margin: 0;
  max-width: 920px;
}

.tagline {
  color: #f6e09b;
  font-size: clamp(20px, 3vw, 31px);
  font-weight: 900;
  line-height: 1.25;
  margin: 22px 0 0;
  max-width: 820px;
}

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

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.hero-info {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--text);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  overflow: hidden;
}

.hero-info article {
  border-right: 1px solid var(--line);
  padding: 22px;
}

.hero-info article:last-child {
  border-right: 0;
}

.hero-info strong {
  color: var(--green);
  display: block;
  font-size: 30px;
  font-weight: 900;
}

.hero-info span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 86px clamp(20px, 5vw, 70px);
}

.split {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.section-text,
.section-head {
  max-width: 900px;
}

.section-label {
  color: var(--green);
}

h2 {
  color: var(--dark);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0 0 20px;
}

h3 {
  color: var(--dark);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
}

.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.feature-card,
.inclusion-grid article,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card div {
  padding: 24px;
}

.dark-section {
  background: var(--dark);
  color: var(--white);
}

.dark-section h2,
.dark-section .section p {
  color: var(--white);
}

.dark-section .section-label {
  color: var(--gold);
}

.section-head {
  margin-bottom: 34px;
}

.section-head.compact {
  margin-bottom: 28px;
}

.attraction-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.attraction-grid article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  min-height: 86px;
  padding: 18px;
}

.inclusion-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inclusion-grid img {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.inclusion-grid h3,
.inclusion-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.inclusion-grid h3 {
  padding-top: 22px;
}

.inclusion-grid p {
  font-size: 15px;
  line-height: 1.65;
  padding-bottom: 22px;
}

.itinerary-section {
  background: var(--green-soft);
}

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

.timeline article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 31, 37, 0.08);
  min-height: 190px;
  padding: 22px;
}

.timeline span {
  color: var(--orange);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.timeline p {
  font-size: 15px;
  line-height: 1.65;
}

.gallery-section {
  background: var(--white);
}

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

.gallery-grid img {
  aspect-ratio: 1 / 0.86;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 31, 37, 0.12);
  object-fit: cover;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(7, 31, 37, 0.92), rgba(15, 59, 63, 0.68)),
    url("../images/lake-boating.jpg") center / cover;
}

.contact-card {
  max-width: 880px;
  padding: 36px;
}

.contact-buttons,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.address-box {
  background: var(--green-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--dark);
  font-style: normal;
  font-weight: 900;
  line-height: 1.55;
  margin-top: 20px;
  padding: 16px 18px;
}

.call-button,
.social-links a {
  border-radius: 8px;
  font-weight: 900;
  padding: 14px 18px;
}

.call-button {
  background: var(--dark);
  color: var(--white);
  font-size: 18px;
}

.social-links a {
  background: var(--gold);
  color: var(--dark);
}

.map-link {
  background: var(--dark);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  margin-top: 18px;
  padding: 15px 18px;
}

.site-footer {
  align-items: center;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 26px clamp(20px, 5vw, 70px);
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1120px) {
  .attraction-grid,
  .inclusion-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    max-width: 180px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    gap: 6px;
    left: 0;
    padding: 14px 18px 20px;
    position: absolute;
    right: 0;
    top: 68px;
  }

  .nav-menu.open {
    display: grid;
  }

  .nav-menu a {
    padding: 12px;
  }

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

  .hero-info,
  .split,
  .attraction-grid,
  .inclusion-grid,
  .timeline,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-info article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .section {
    padding: 62px 18px;
  }

  .contact-card {
    padding: 26px;
  }
}
