:root {
  --white: #fffdf9;
  --paper: #f8f4ec;
  --stone: #e9dfcf;
  --ink: #1e211f;
  --charcoal: #151916;
  --charcoal-soft: #20261f;
  --muted: #6d6a62;
  --line: rgba(30, 33, 31, 0.14);
  --olive: #526044;
  --teal: #2f7478;
  --coral: #d96f5f;
  --coral-dark: #b95043;
  --gold: #b49355;
  --shadow: 0 24px 70px rgba(28, 31, 27, 0.14);
  --radius: 8px;
  --display: "Water Brush", "Cormorant Garamond", Georgia, serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 136px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.is-locked {
  overflow: hidden;
}

body.is-locked .site-header,
body.is-locked main,
body.is-locked .site-footer {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(217, 111, 95, 0.22);
}

.password-gate {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(18, 22, 19, 0.7), rgba(18, 22, 19, 0.86)),
    url("assets/location-cap-de-vol.jpg") center / cover;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: clamp(20px, 5vw, 60px);
  position: fixed;
  z-index: 120;
}

.password-gate.is-hidden {
  display: none;
}

.password-gate__panel {
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(255, 253, 249, 0.42);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  display: grid;
  gap: 16px;
  max-width: 470px;
  padding: clamp(28px, 5vw, 44px);
  width: min(100%, 470px);
}

.password-gate__eyebrow {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.password-gate h2 {
  font-family: var(--display);
  font-size: clamp(58px, 11vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
}

.password-gate p:not(.password-gate__eyebrow):not(.password-gate__status) {
  color: var(--muted);
  margin: 0;
}

.password-gate label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}

.password-gate input {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 52px;
  padding: 0 14px;
  width: 100%;
}

.password-gate input:focus {
  border-color: rgba(47, 116, 120, 0.72);
  box-shadow: 0 0 0 4px rgba(47, 116, 120, 0.12);
  outline: none;
}

.password-gate__status {
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 700;
  min-height: 22px;
  margin: 0;
}

.site-header {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 28px clamp(20px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease, color 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 12px 34px rgba(29, 32, 29, 0.08);
  color: var(--ink);
  padding-block: 16px;
}

.brand {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  min-width: max-content;
}

.site-header.is-scrolled .brand,
.site-header.is-open .brand {
  color: var(--ink);
}

.brand__name {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.site-nav {
  align-items: center;
  color: rgba(255, 253, 249, 0.9);
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  justify-content: center;
}

.site-header.is-scrolled .site-nav,
.site-header.is-open .site-nav {
  color: var(--ink);
}

.site-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  text-transform: uppercase;
}

.site-nav a::after {
  background: currentColor;
  bottom: -9px;
  content: "";
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 100%;
}

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

.language-switch {
  align-items: center;
  background: rgba(255, 253, 249, 0.18);
  border: 1px solid rgba(255, 253, 249, 0.34);
  border-radius: 8px;
  display: inline-flex;
  gap: 2px;
  padding: 4px;
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  background: rgba(30, 33, 31, 0.04);
  border-color: var(--line);
}

.language-switch__button {
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  height: 31px;
  min-width: 38px;
  padding: 0 10px;
}

.site-header.is-scrolled .language-switch__button,
.site-header.is-open .language-switch__button {
  color: var(--ink);
}

.language-switch__button.is-active {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-scrolled .language-switch__button.is-active,
.site-header.is-open .language-switch__button.is-active {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 42px;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  color: var(--ink);
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 24px;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  align-items: center;
  color: var(--white);
  display: grid;
  min-height: min(92vh, 880px);
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 90px) 68px;
  position: relative;
  text-align: center;
}

.hero::after {
  background:
    radial-gradient(circle at center, rgba(9, 18, 18, 0.12), rgba(9, 18, 18, 0.48) 62%, rgba(9, 18, 18, 0.72)),
    linear-gradient(0deg, rgba(9, 18, 18, 0.58), rgba(9, 18, 18, 0.14) 46%, rgba(9, 18, 18, 0.5));
  content: "";
  inset: 0;
  position: absolute;
}

.hero__media,
.hero__video {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero__video {
  object-fit: cover;
}

.hero__content {
  justify-self: center;
  max-width: 1030px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: rgba(255, 253, 249, 0.84);
}

.section .eyebrow {
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 18px;
  text-transform: none;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.95;
}

h1 {
  font-size: clamp(88px, 14vw, 188px);
  margin-bottom: 12px;
  max-width: 1040px;
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  text-wrap: balance;
}

.hero-title .copy-code {
  margin-right: 12px;
  transform: translateY(-0.38em);
}

.hero-title__text {
  display: inline;
}

.hero-title__word {
  animation: heroWordReveal 720ms cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: calc(180ms + var(--word-index) * 220ms);
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.14em, 0);
  white-space: nowrap;
  will-change: opacity, transform;
}

.hero-title__space {
  display: inline-block;
  width: 0.18em;
}

@keyframes heroWordReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 0.14em, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

h2 {
  font-size: clamp(42px, 6vw, 82px);
  margin-bottom: 28px;
}

h3 {
  font-size: 31px;
  margin-bottom: 14px;
}

.hero__lead {
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.55;
  margin: 0 auto 34px;
  max-width: 720px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 34px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  background: var(--coral);
  color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--coral-dark);
}

.button--ghost {
  border-color: rgba(255, 253, 249, 0.62);
  color: var(--white);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.button--full {
  width: 100%;
}

.hero__facts {
  border-top: 1px solid rgba(255, 253, 249, 0.32);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  padding-top: 20px;
}

.hero__facts > span {
  color: rgba(255, 253, 249, 0.86);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 10vw, 148px) clamp(20px, 6vw, 90px);
}

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

.section--stone {
  background: var(--paper);
}

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

.section--host .eyebrow {
  color: #f0b5a9;
}

.section--host .copy-block p {
  color: rgba(255, 253, 249, 0.82);
}

.section--contact {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.section--dark {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.05), rgba(255, 253, 249, 0)),
    var(--charcoal-soft);
  color: var(--white);
}

.section--dark .eyebrow {
  color: #f0b5a9;
}

.section--dark .section-heading p:not(.eyebrow),
.section--dark .personal-tip p {
  color: rgba(255, 253, 249, 0.76);
}

.section__inner {
  margin: 0 auto;
  max-width: 1240px;
}

.two-column {
  align-items: center;
  display: grid;
  gap: clamp(42px, 7vw, 96px);
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
}

.two-column--location {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1fr);
}

.copy-block p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 680px;
}

.detail-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  padding-top: 24px;
}

.amenities {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 28px;
}

.amenities h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.amenities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.amenities li {
  background: var(--paper);
  border: 1px solid rgba(180, 147, 85, 0.25);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.detail-grid > div > span,
.location-points > div > span,
.contact-note > span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-grid strong,
.location-points strong {
  display: block;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 8px;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.image-frame {
  border: 1px solid rgba(30, 33, 31, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.image-frame img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-frame--portrait {
  aspect-ratio: 4 / 5;
}

.image-frame--wide {
  aspect-ratio: 16 / 11;
}

.location-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.location-points div {
  border-left: 2px solid var(--teal);
  padding-left: 18px;
}

.location-points > div > span {
  line-height: 1.55;
  margin-top: 7px;
  text-transform: none;
}

.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: 0.55fr 1fr;
  margin-top: clamp(42px, 6vw, 74px);
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
}

.map-panel h3 {
  font-size: clamp(31px, 3.8vw, 54px);
}

.map-panel p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 0;
}

.map-panel iframe {
  border: 0;
  border-radius: 6px;
  height: 420px;
  min-height: 100%;
  width: 100%;
}

.weather-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(28, 31, 27, 0.07);
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
}

.weather-panel__header {
  margin-bottom: 18px;
  max-width: 690px;
}

.weather-panel h3 {
  font-size: clamp(30px, 3.4vw, 50px);
  margin-bottom: 10px;
}

.weather-panel__header p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}

.weather-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.weather-card {
  background: var(--paper);
  border: 1px solid rgba(47, 116, 120, 0.14);
  border-radius: var(--radius);
  min-height: 142px;
  padding: 13px;
}

.weather-card__day {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.weather-card__icon {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(28, 31, 27, 0.07);
  display: inline-flex;
  font-size: 27px;
  height: 46px;
  justify-content: center;
  margin-bottom: 10px;
  width: 46px;
}

.weather-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
  margin-bottom: 5px;
}

.weather-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.weather-card--loading {
  align-items: center;
  display: flex;
  gap: 14px;
  grid-column: 1 / -1;
  min-height: 110px;
}

.weather-source {
  color: var(--muted);
  font-size: 12px;
  margin: 12px 0 0;
}

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

.pricing-layout {
  align-items: start;
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.9fr);
}

.pricing-layout .section-heading {
  grid-row: 1 / span 2;
}

.season-selector,
.price-grid {
  grid-column: 2;
}

.season-selector {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(28, 31, 27, 0.06);
  padding: clamp(22px, 3vw, 32px);
}

.season-switch {
  background: rgba(30, 33, 31, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
  padding: 4px;
}

.season-switch__button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 5px;
  color: var(--muted);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.season-switch__button:hover,
.season-switch__button:focus-visible {
  background: rgba(255, 253, 249, 0.82);
  color: var(--ink);
  outline: none;
}

.season-switch__button.is-active {
  background: var(--ink);
  box-shadow: 0 9px 22px rgba(28, 31, 27, 0.16);
  color: var(--white);
}

.season-switch__button.is-active .copy-code {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(255, 253, 249, 0.2);
  color: rgba(255, 253, 249, 0.86);
}

.season-selector__period {
  align-items: baseline;
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 600;
  gap: 7px;
  line-height: 1.05;
  margin: 14px 0 0;
  padding-top: 14px;
}

.season-selector p {
  margin: 0;
}

.price-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  background: var(--paper);
  border: 1px solid rgba(180, 147, 85, 0.22);
  border-radius: var(--radius);
  min-height: 260px;
  padding: clamp(24px, 4vw, 36px);
}

.price-card--accent {
  background: var(--olive);
  border-color: rgba(255, 253, 249, 0.18);
  color: var(--white);
}

.price-card__label {
  color: var(--teal);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 44px;
  text-transform: uppercase;
}

.price-card--accent .price-card__label {
  color: #f0b5a9;
}

.price-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 600;
  line-height: 0.9;
  margin-bottom: 18px;
}

.price-card strong [data-price] {
  display: inline-block;
  white-space: nowrap;
}

.price-card p {
  color: var(--muted);
  margin: 0;
}

.price-card--accent p {
  color: rgba(255, 253, 249, 0.76);
}

.section-heading {
  margin-bottom: 54px;
  max-width: 850px;
}

.section-heading h2 {
  margin-bottom: 22px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  max-width: 710px;
}

.copy-code {
  align-items: center;
  background: rgba(47, 116, 120, 0.09);
  border: 1px solid rgba(47, 116, 120, 0.16);
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 8px;
  min-width: 28px;
  padding: 0 7px;
  text-transform: uppercase;
  transform: translateY(-0.08em);
  vertical-align: middle;
}

.eyebrow .copy-code {
  margin-right: 10px;
  transform: translateY(-0.18em);
}

.copy-code--light {
  background: rgba(255, 253, 249, 0.12);
  border-color: rgba(255, 253, 249, 0.2);
  color: rgba(255, 253, 249, 0.86);
}

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

.activity-card {
  background: var(--paper);
  border: 1px solid rgba(180, 147, 85, 0.2);
  border-radius: var(--radius);
  min-height: 280px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.activity-card:hover,
.activity-card:focus,
.activity-card:focus-within {
  border-color: rgba(217, 111, 95, 0.5);
  box-shadow: 0 18px 44px rgba(28, 31, 27, 0.08);
  outline: none;
  transform: translateY(-4px);
}

.activity-card__front {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: flex-start;
  min-height: 218px;
  transition: opacity 200ms ease, transform 220ms ease;
}

.activity-card h3 {
  font-size: 32px;
  line-height: 1.02;
  margin-bottom: 0;
}

.activity-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.activity-card__detail {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.08), rgba(255, 253, 249, 0)),
    var(--charcoal);
  color: var(--white);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 30px;
  position: absolute;
  transform: translate3d(0, 18px, 0);
  transition: opacity 220ms ease, transform 220ms ease;
}

.activity-card__detail strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 14px;
}

.activity-card__detail p {
  color: rgba(255, 253, 249, 0.78);
  font-size: 15px;
}

.activity-card:hover .activity-card__front,
.activity-card:focus .activity-card__front,
.activity-card:focus-within .activity-card__front {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}

.activity-card:hover .activity-card__detail,
.activity-card:focus .activity-card__detail,
.activity-card:focus-within .activity-card__detail {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.activity-card--wide {
  background: linear-gradient(135deg, var(--paper), #fffaf1);
  border-color: rgba(47, 116, 120, 0.22);
}

.info-grid,
.personal-tip-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

.info-card,
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(28, 31, 27, 0.06);
  padding: clamp(24px, 3.5vw, 34px);
}

.info-card h3,
.personal-tip h3,
.review-card h3 {
  font-size: 30px;
  line-height: 1.03;
}

.info-card p,
.review-card blockquote {
  color: var(--muted);
  margin: 0;
}

.personal-tip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.personal-tip {
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: var(--radius);
  padding: clamp(24px, 3.5vw, 34px);
}

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

.review-card {
  min-height: 278px;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 26px;
}

.review-card blockquote {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
}

.review-card p {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  margin: 26px 0 0;
  text-transform: uppercase;
}

.faq-layout {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 0.9fr);
}

.faq-layout .section-heading {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(28, 31, 27, 0.05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  list-style: none;
  padding: 22px 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  border-top: 1px solid rgba(30, 33, 31, 0.08);
  color: var(--muted);
  margin: 0;
  padding: 0 24px 24px;
}

.host-layout {
  align-items: center;
  display: grid;
  gap: clamp(38px, 7vw, 92px);
  grid-template-columns: 0.72fr 1fr;
}

.host-card {
  background: rgba(255, 253, 249, 0.06);
  border: 1px solid rgba(255, 253, 249, 0.3);
  border-radius: var(--radius);
  min-height: 430px;
  overflow: hidden;
  padding: 16px 16px clamp(28px, 4vw, 42px);
}

.host-card__photo {
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) - 2px);
  margin: 0 0 30px;
  overflow: hidden;
  position: relative;
}

.host-card__photo::after {
  background: linear-gradient(180deg, rgba(28, 31, 27, 0), rgba(28, 31, 27, 0.16));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.host-card__photo img {
  display: block;
  filter: saturate(0.88) contrast(1.05);
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
}

.host-card p {
  color: rgba(255, 253, 249, 0.65);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 0 clamp(10px, 2vw, 28px);
  text-transform: uppercase;
}

.host-card h2 {
  font-size: clamp(44px, 6vw, 78px);
  margin-bottom: 0;
  padding: 0 clamp(10px, 2vw, 28px);
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(42px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.92fr);
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-note {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 24px;
}

.contact-note a {
  color: var(--teal);
  display: inline-block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 7px;
  overflow-wrap: anywhere;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row--split {
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  background: #fbfaf7;
  border: 1px solid rgba(30, 33, 31, 0.14);
  border-radius: 6px;
  color: var(--ink);
  outline: none;
  padding: 15px 16px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(47, 116, 120, 0.12);
}

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

.site-footer {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.04), rgba(255, 253, 249, 0)),
    var(--charcoal);
  color: var(--white);
  padding: clamp(32px, 5vw, 54px) clamp(20px, 6vw, 90px);
}

.site-footer__inner {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(250px, 0.58fr) minmax(540px, 1fr) minmax(150px, 0.34fr);
  margin: 0 auto;
  max-width: 1240px;
}

.site-footer__brand {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-family: var(--display);
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 400;
  gap: 8px;
  line-height: 1;
  transition: opacity 180ms ease;
  white-space: nowrap;
}

.site-footer__brand:hover,
.site-footer__brand:focus-visible {
  opacity: 0.78;
}

.site-footer nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  justify-content: center;
}

.site-footer nav a {
  color: rgba(255, 253, 249, 0.76);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  min-width: max-content;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: var(--white);
}

.site-credit {
  align-items: center;
  color: rgba(255, 253, 249, 0.64);
  display: inline-flex;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  justify-self: end;
  margin: 0;
  text-transform: uppercase;
}

.site-credit__logo {
  background: #050505;
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 6px;
  display: inline-flex;
  overflow: hidden;
  padding: 2px;
  transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-credit__logo:hover,
.site-credit__logo:focus-visible {
  border-color: rgba(255, 253, 249, 0.34);
  opacity: 0.78;
  transform: translateY(-1px);
}

.site-credit__logo img {
  height: 54px;
  width: 54px;
}

[data-animate] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 900ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 900ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}

[data-animate="hero"] {
  opacity: 1;
  transform: none;
}

[data-animate="image-left"] {
  filter: blur(10px);
  transform: translate3d(-42px, 24px, 0) scale(0.985);
}

[data-animate="image-right"] {
  filter: blur(10px);
  transform: translate3d(42px, 24px, 0) scale(0.985);
}

[data-animate="card"] {
  transform: translate3d(0, 42px, 0) scale(0.985);
}

[data-animate].is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.activity-card.is-visible:nth-child(2),
.activity-card.is-visible:nth-child(5),
.activity-card.is-visible:nth-child(8) {
  transition-delay: 90ms;
}

.activity-card.is-visible:nth-child(3),
.activity-card.is-visible:nth-child(6) {
  transition-delay: 180ms;
}

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

  .menu-toggle {
    display: inline-flex;
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    align-items: flex-start;
    background: var(--white);
    border-top: 1px solid var(--line);
    color: var(--ink);
    display: none;
    flex-direction: column;
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 28px 0 8px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .two-column,
  .two-column--location,
  .host-layout,
  .contact-layout,
  .map-panel,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .two-column--location .image-frame {
    order: 2;
  }

  .pricing-layout .section-heading,
  .season-selector,
  .price-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-copy {
    position: static;
  }

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

  .info-grid,
  .personal-tip-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weather-panel__header {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-credit {
    justify-self: start;
  }

  .map-panel iframe {
    height: 340px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    gap: 12px;
    padding: 18px 18px;
  }

  .brand__name {
    font-size: 22px;
    max-width: 120px;
  }

  .language-switch__button {
    height: 29px;
    min-width: 34px;
    padding-inline: 8px;
  }

  .hero {
    min-height: 88svh;
    padding: 132px 18px 48px;
  }

  h1 {
    font-size: clamp(78px, 21vw, 104px);
  }

  h2 {
    font-size: clamp(39px, 13vw, 58px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions,
  .hero__facts {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 70px 18px;
  }

  .detail-grid,
  .activity-grid,
  .info-grid,
  .personal-tip-grid,
  .review-grid,
  .form-row--split,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    min-height: 260px;
    padding: 24px;
  }

  .activity-card__front {
    min-height: 210px;
  }

  .activity-card__detail {
    inset: 0;
    margin: 0;
    opacity: 0;
    padding: 24px;
    position: absolute;
    transform: translate3d(0, 14px, 0);
  }

  .activity-card:hover .activity-card__front,
  .activity-card:focus .activity-card__front,
  .activity-card:focus-within .activity-card__front {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }

  .copy-code {
    margin-right: 6px;
  }

  .faq-item summary {
    font-size: 23px;
    padding: 20px;
  }

  .faq-item p {
    padding: 0 20px 20px;
  }

  .host-card {
    min-height: 0;
  }

  .contact-note a {
    font-size: 28px;
  }

  .map-panel {
    padding: 18px;
  }

  .map-panel iframe {
    height: 310px;
  }

  .weather-grid {
    display: flex;
    gap: 9px;
    margin-inline: -2px;
    overflow-x: auto;
    padding: 0 2px 8px;
    scroll-snap-type: x proximity;
  }

  .weather-card {
    flex: 0 0 118px;
    min-height: 128px;
    padding: 11px;
    scroll-snap-align: start;
  }

  .weather-card__icon {
    font-size: 25px;
    height: 44px;
    width: 44px;
  }

  .weather-card strong {
    font-size: 24px;
  }

  .weather-card p {
    font-size: 11px;
  }

  .weather-grid::-webkit-scrollbar {
    height: 5px;
  }

  .weather-grid::-webkit-scrollbar-thumb {
    background: rgba(47, 116, 120, 0.22);
    border-radius: 999px;
  }

  .price-card {
    min-height: 0;
  }

  .site-footer__inner {
    align-items: flex-start;
  }

  .site-credit__logo img {
    height: 50px;
    width: 50px;
  }

  [data-animate="image-left"],
  [data-animate="image-right"] {
    transform: translate3d(0, 34px, 0) scale(0.985);
  }
}

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

  .hero-title__word,
  [data-animate] {
    animation: none;
    filter: none;
    opacity: 1;
    transform: none;
  }
}
