:root {
  --font-heading: Arial, sans-serif;
  --font-body: "PT Sans", Arial, sans-serif;
  --text: #17140f;
  --muted: #655f55;
  --bg: #fffaf2;
  --paper: #ffffff;
  --accent: #ff8562;
  --accent-dark: #d9603f;
  --forest: #244331;
  --moss: #7d9658;
  --sand: #eadcc5;
  --line: rgba(23, 20, 15, 0.12);
  --shadow: 0 18px 45px rgba(28, 24, 18, 0.12);
  --radius: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #2015ff;
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 16px clamp(20px, 4vw, 54px);
  color: #ffffff;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--text);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
}

.main-nav a {
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #ffffff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 40px, var(--container));
  min-height: 100vh;
  margin: 0 auto;
  padding: 130px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts {
  margin: 54px 0 0;
}

.hero-facts div {
  min-width: 154px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  font-size: 30px;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 92px 0;
}

.intro-grid,
.split,
.desire-grid,
.booking-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
}

.section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.intro-copy {
  font-size: 20px;
  color: var(--muted);
}

.interest {
  background: #ffffff;
}

.photo-stack {
  position: relative;
  min-height: 640px;
}

.photo-main {
  width: 76%;
  height: 620px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-small {
  position: absolute;
  right: 0;
  width: 42%;
  border: 8px solid #ffffff;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-small.top {
  top: 44px;
  height: 260px;
}

.photo-small.bottom {
  bottom: 34px;
  height: 270px;
}

.content-panel {
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  background: #fffaf2;
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.benefit-list span {
  color: var(--moss);
  font-weight: 900;
}

.benefit-list h3,
.card h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 24px;
}

.benefit-list h3,
.benefit-list p {
  grid-column: 2;
}

.benefit-list p,
.card p,
.desire-points p,
.booking-copy p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

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

.card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 56px rgba(28, 24, 18, 0.16);
}

.card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.card div {
  padding: 24px;
}

.card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 900;
}

.desire {
  color: #ffffff;
  background:
    linear-gradient(rgba(24, 42, 30, 0.88), rgba(24, 42, 30, 0.88)),
    url("assets/ig-10.jpg") center / cover;
}

.desire .section-kicker,
.desire-points p,
.desire-points li {
  color: rgba(255, 255, 255, 0.84);
}

.desire-points {
  font-size: 20px;
}

.desire-points ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gallery img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.booking {
  background: #ffffff;
}

.booking-copy {
  align-self: start;
}

.booking-copy h2 {
  margin-bottom: 18px;
}

.instagram-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-dark);
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: var(--radius);
  background: #fffaf2;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--text);
  background: #ffffff;
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 400;
  color: var(--muted);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 48px 0;
  color: #ffffff;
  background: #1a1a1a;
}

.footer-grid {
  align-items: start;
}

.footer-logo {
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
}

.footer nav {
  display: grid;
  gap: 10px;
}

.footer a {
  color: #e6dccf;
}

.footer a:hover {
  color: var(--accent);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 18px;
    color: var(--text);
    background: rgba(255, 250, 242, 0.98);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px 10px;
  }

  .intro-grid,
  .split,
  .desire-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .gallery img {
    height: 320px;
  }
}

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

  .site-header {
    min-height: 72px;
    padding: 12px 16px;
  }

  .brand span {
    max-width: 150px;
    font-size: 13px;
  }

  .hero-content {
    padding-top: 104px;
  }

  .hero h1 {
    font-size: 29px;
    line-height: 1.08;
    max-width: 320px;
  }

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

  .hero-facts {
    margin-top: 32px;
  }

  .hero-facts div {
    flex: 1 1 100%;
  }

  .section {
    padding: 58px 0;
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-main,
  .photo-small {
    position: static;
    width: 100%;
    height: auto;
    max-height: 420px;
    border: 0;
    margin-bottom: 14px;
    object-fit: cover;
  }

  .benefit-list article {
    grid-template-columns: 1fr;
  }

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

  .gallery img {
    height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
