:root {
  --forest: #17332b;
  --forest-2: #10251f;
  --ink: #252a27;
  --muted: #6c746e;
  --cream: #f5f1e8;
  --sand: #e8ddca;
  --white: #fff;
  --gold: #b69b6d;
  --line: rgba(37, 42, 39, .15);
  --container: 1240px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.7;
}

body.menu-open { overflow: hidden; }

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

button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section { padding: 120px 0; }

.section-cream { background: #f9f6ef; }

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

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}

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

h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.045em;
}

h2 em, h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: #fff;
  transition: background .35s ease, padding .35s ease, backdrop-filter .35s ease;
}

.site-header.scrolled {
  background: rgba(16, 37, 31, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 64px), 1440px);
  min-height: 86px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  letter-spacing: .1em;
}

.brand-logo {
  width: 58px;
  height: 58px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--serif);
  font-size: .86rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: .13em;
}

.brand-sub {
  margin-top: 7px;
  color: #e0bd7a;
  font-size: .46rem;
  letter-spacing: .34em;
}

.brand-name {
  font-family: var(--serif);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .13em;
}

.brand-sub {
  margin-top: 6px;
  font-size: .48rem;
  letter-spacing: .34em;
  opacity: .8;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.desktop-nav a {
  opacity: .88;
  transition: opacity .2s ease;
}

.desktop-nav a:hover { opacity: 1; }

.header-button {
  padding: 11px 17px;
  border: 1px solid rgba(255,255,255,.7);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
}

.mobile-nav { display: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  background: #16342b;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../assets/images/background/resort-bg.png");
  background-position: center center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 19, 15, .72) 0%, rgba(7, 19, 15, .38) 42%, rgba(7, 19, 15, .08) 78%),
    linear-gradient(0deg, rgba(5, 18, 14, .64) 0%, transparent 45%, rgba(5, 18, 14, .18) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 64px), var(--container));
  padding-top: 70px;
}

.hero-welcome {
  margin-bottom: 20px;
  color: #e2c58f;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-style: italic;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 8.8vw, 8.2rem);
  font-weight: 500;
  line-height: .84;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero-resort-name {
  margin: 26px 0 22px;
  color: #e0bd7a;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  letter-spacing: .34em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 550px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .25s ease;
}

.button-light {
  color: #fff;
  background: #bd9550;
  border-color: #bd9550;
}

.button-light:hover { background: #a78044; }

.button-ghost,
.button-outline {
  color: #fff;
  border-color: rgba(224,189,122,.8);
  background: transparent;
}

.button-ghost:hover,
.button-outline:hover {
  color: #1c2d26;
  background: #fff;
  border-color: #fff;
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  right: 4vw;
  bottom: 30px;
  left: 4vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: rgba(255,255,255,.88);
  font-size: .61rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.scroll-guide {
  display: flex;
  align-items: center;
  gap: 13px;
}

.scroll-icon {
  width: 31px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  font-size: 1rem;
  animation: floatArrow 1.8s ease-in-out infinite;
}

.hero-index {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
}

.hero-index span:first-child { color: #fff; }

.hero-index i {
  width: 45px;
  height: 1px;
  display: block;
  background: rgba(255,255,255,.4);
}

.desktop-nav .active {
  position: relative;
  opacity: 1;
}

.desktop-nav .active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: #fff;
}

@keyframes floatArrow {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

/* SECTION HEADINGS */

/* SPECIAL OFFERS */

.offers {
  background: #f7f5ef;
}

.offers-heading {
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.offers-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}

.offers-heading h2 em {
  color: #b48b4d;
  font-style: italic;
}

.offers-intro {
  max-width: 560px;
  margin: 28px auto 0;
  color: #666;
}

.offers-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.offers-viewport {
  width: 100%;
  overflow: hidden;
}

.offers-grid {
  display: flex;
  gap: 26px;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.offer-card {
  flex: 0 0 calc((100% - 52px) / 3);

  display: flex;
  flex-direction: column;

  height: 650px;
  min-height: 650px;

  overflow: hidden;

  background: #fff;

  box-sizing: border-box;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.offer-card {
  overflow: hidden;
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.offer-image {
  width: 100%;
  height: 300px;
  min-height: 300px;

  overflow: hidden;

  flex-shrink: 0;
}

.offer-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform .6s ease;
}

.offer-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}

.offer-card:hover .offer-image img {
  transform: scale(1.05);
}

.offer-content {
  position: relative;
  padding: 32px 30px 35px;
}

.offer-number {
  display: block;
  margin-bottom: 14px;
  color: #b48b4d;
  font-size: .62rem;
  letter-spacing: .2em;
}

.offer-content h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.offer-content p {
  margin-bottom: 25px;
  color: #666;
  font-size: .9rem;
  line-height: 1.7;
}

.offer-content {
  position: relative;

  display: flex;
  flex-direction: column;

  flex: 1;
  min-height: 0;

  padding: 30px 30px 0;

  box-sizing: border-box;
}

.offer-content h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
}

.offer-content p {
  margin-bottom: 28px;
  color: #666;
  font-size: .9rem;
  line-height: 1.7;
}

.offer-button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 48px;

  margin-top: auto;

  box-sizing: border-box;

  background: #b48b4d;
  color: #fff;

  text-decoration: none;
  text-transform: uppercase;

  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.offer-button:hover {
  background: #987238;
}

.offer-arrow {
  flex: 0 0 46px;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(0,0,0,.15);
  border-radius: 50%;

  background: #fff;
  color: #333;

  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.offer-arrow:hover {
  background: #b48b4d;
  color: #fff;
  transform: scale(1.05);
}

/* OTHER OFFERS BUTTON */

.offers-more {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.offers-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  min-width: 250px;
  padding: 15px 28px;

  border: 1px solid #b48b4d;

  color: #8f6b37;
  background: transparent;

  text-decoration: none;
  text-transform: uppercase;

  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;

  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.offers-more-button span {
  font-size: 1rem;
  transition: transform .25s ease;
}

.offers-more-button:hover {
  background: #b48b4d;
  color: #fff;
}

.offers-more-button:hover span {
  transform: translateX(5px);
}

.section-top {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 58px;
}

.section-top-copy {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.light-top .section-top-copy { color: rgba(255,255,255,.65); }

/* INTRO */
.intro { background: #fff; }

.intro-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: clamp(50px, 9vw, 130px);
}

.section-kicker {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-kicker span:first-child { color: var(--gold); }

.intro-content {
  max-width: 780px;
}

.intro-image {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.intro-lead {
  margin: 35px 0 20px;
  color: #454c47;
  font-size: 1.14rem;
}

.intro-content > p:not(.eyebrow):not(.intro-lead) {
  max-width: 650px;
  color: var(--muted);
}

.underlined-link {
  display: inline-flex;
  gap: 13px;
  margin-top: 25px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: .68rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.underlined-link span { transition: transform .2s ease; }

.underlined-link:hover span { transform: translateX(5px); }

/* PLACEHOLDER MEDIA */
.media-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: rgba(255,255,255,.7);
  background:
    radial-gradient(circle at 25% 25%, rgba(186, 212, 195, .25), transparent 25%),
    linear-gradient(145deg, #547768, #19372e);
}

.media-placeholder::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.18);
}

.media-placeholder span {
  position: relative;
  z-index: 1;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.23);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* OFFERS */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offer-card {
  overflow: hidden;
  background: #fff;
}

.offer-photo { height: 330px; }

.offer-body { padding: 27px 28px 32px; }

.card-label {
  margin-bottom: 7px;
  color: var(--gold) !important;
  font-size: .62rem !important;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.offer-body h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
}

.offer-body p:not(.card-label) {
  min-height: 50px;
  color: var(--muted);
  font-size: .87rem;
}

.offer-body a {
  display: inline-flex;
  gap: 10px;
  margin-top: 13px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ACCOMMODATION */

.accommodation {
  background: #fff;
}

.accommodation-heading {
  max-width: 720px;
  margin-bottom: 70px;
}

.accommodation-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}

.accommodation-heading h2 em {
  color: #b48b4d;
  font-style: italic;
}

.accommodation-intro {
  max-width: 570px;
  margin-top: 28px;
  color: #666;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
}

.accommodation-card {
  background: #f7f5ef;
}

.accommodation-card-large {
  grid-row: span 2;
}

.accommodation-image {
  height: 390px;
  overflow: hidden;
}

.accommodation-card-large .accommodation-image {
  height: 560px;
}

.accommodation-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .6s ease;
}

.accommodation-card:hover .accommodation-image img {
  transform: scale(1.04);
}

.accommodation-info {
  padding: 30px;
}

.accommodation-number {
  display: block;
  margin-bottom: 13px;
  color: #b48b4d;
  font-size: .62rem;
  letter-spacing: .2em;
}

.accommodation-info h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.accommodation-info p {
  max-width: 520px;
  margin-bottom: 25px;
  color: #666;
  font-size: .9rem;
  line-height: 1.7;
}

/* FACILITIES */
.facility-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-auto-rows: minmax(300px, auto);
  gap: 18px;
}

.facility-card {
  min-width: 0;
  background: #213d34;
}

.facility-large {
  grid-row: span 2;
}

.facility-photo { height: 300px; }

.facility-large .facility-photo { height: 100%; min-height: 618px; }

.facility-caption {
  padding: 18px 20px 24px;
}

.facility-caption .card-label { margin-bottom: 2px; }

.facility-caption h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.facility-caption p:last-child {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
}

/* EVENTS */
.events {
  background: #f8f5ef;
  overflow: hidden;
}

.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(45px, 7vw, 90px);
  align-items: center;
}

.event-image {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 600px;
  overflow: hidden;
}

.event-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-copy {
  min-width: 0;
  max-width: 100%;
}

.event-copy h2 { margin-bottom: 28px; }

.event-lead {
  max-width: 570px;
  color: #555d57;
  font-size: 1.05rem;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-details div {
  padding: 18px 14px 18px 0;
}

.event-details div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.event-details span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-details strong {
  font-size: .78rem;
  font-weight: 500;
}

/* EXPERIENCES */
.section-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 550px;
  margin: 24px auto 0;
  color: var(--muted);
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.experience-card { min-width: 0; }

.experience-photo { height: 350px; }

.experience-card h3 {
  margin: 18px 0 5px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.experience-card p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: 290px 290px;
  gap: 12px;
}

.gallery-item {
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease;
}

.gallery-item:hover { transform: scale(.992); }

.gallery-tall { grid-row: span 2; }

.gallery-wide { grid-column: span 2; }

/* LOCATION */
.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: stretch;
}

.location h2 { margin-bottom: 25px; }

.location-copy {
  margin-bottom: 30px;
  color: rgba(255,255,255,.68);
}

.map-placeholder {
  min-height: 450px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    #233a32;
  background-size: 40px 40px;
  color: rgba(255,255,255,.5);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* INQUIRY */
.inquiry { background: #fff; }

.inquiry-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(55px, 8vw, 120px);
}

.inquiry-intro h2 { margin-bottom: 25px; }

.inquiry-intro > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
}

.contact-list {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-list div {
  display: grid;
  gap: 2px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--gold);
  font-size: .61rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: .84rem;
  font-weight: 500;
}

.inquiry-form {
  padding: clamp(26px, 4vw, 52px);
  background: var(--cream);
}

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

.inquiry-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: .9rem;
  letter-spacing: 0;
  text-transform: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  border-bottom-color: var(--ink);
}

.inquiry-form textarea { resize: vertical; }

.form-status {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .76rem;
}

/* FOOTER */
.footer {
  padding: 75px 0 25px;
  color: #fff;
  background: #10231e;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 65px;
}

.footer-brand p {
  margin-top: 20px;
  color: rgba(255,255,255,.48);
  font-size: .85rem;
}

.footer-heading {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.68);
  font-size: .82rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.38);
  font-size: .64rem;
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .desktop-nav { gap: 14px; font-size: .61rem; }

  .offer-grid { grid-template-columns: 1fr 1fr; }
  .offer-card:last-child { grid-column: span 2; max-width: calc(50% - 9px); }

  .stay-grid { grid-template-columns: 1fr 1fr; }
  .stay-card-large { grid-column: span 2; }
  .stay-card-large .stay-photo { height: 500px; }

  .experience-strip { grid-template-columns: 1fr 1fr; }

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

  .facility-large {
    grid-row: auto;
    grid-column: span 2;
  }

  .facility-large .facility-photo { min-height: 480px; }
}

@media (max-width: 800px) {
  .container,
  .header-inner,
  .hero-content { width: min(calc(100% - 36px), var(--container)); }

  .header-inner { min-height: 72px; }

  .desktop-nav { display: none; }

  .menu-toggle { display: block; }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 21px;
    padding: 80px 30px;
    color: #fff;
    background: rgba(16,37,31,.98);
    transform: translateY(-100%);
    transition: transform .35s ease;
    font-size: .78rem;
    letter-spacing: .13em;
    text-transform: uppercase;
  }

  .intro-image img {
    height: 420px;
  }

  .mobile-nav.open { transform: translateY(0); }

  .mobile-inquire {
    margin-top: 8px;
    padding: 12px 18px;
    border: 1px solid rgba(255,255,255,.6);
  }

  .section { padding: 85px 0; }

  .section-top,
  .intro-grid,
  .event-grid,
  .location-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-top { margin-bottom: 40px; }

  .section-top-copy { max-width: 620px; }

  .hero h1 { font-size: clamp(3.2rem, 13vw, 6rem); }

  .hero-description { max-width: 430px; }

  .offer-grid,
  .stay-grid,
  .experience-strip {
    grid-template-columns: 1fr 1fr;
  }

  .offer-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .stay-card-large { grid-column: span 2; }

  .stay-card-large .stay-photo { height: 480px; }

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

  .facility-large {
    grid-column: span 2;
  }

  .event-image {
    width: 100%;
    max-width: 100%;
    height: 520px;
    overflow: hidden;
  }

  .event-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 250px);
  }

  .gallery-tall { grid-row: span 2; }

  .gallery-wide { grid-column: span 2; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: span 2; }

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

  .offer-image {
    height: 420px;
  }

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

  .accommodation-card-large {
    grid-row: auto;
  }

  .accommodation-image,
  .accommodation-card-large .accommodation-image {
    height: 420px;
  }

  .offers-slider {
    gap: 10px;
  }

  .offer-card {
    flex: 0 0 100%;
  }

  .offer-arrow {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 1.6rem;
  }

  .offer-content {
    padding: 26px 22px 0;
  }
}

@media (max-width: 520px) {
  .event-image {
    height: 400px;
  }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }

  .hero-bottom { display: none; }

  .offer-grid,
  .stay-grid,
  .experience-strip,
  .facility-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .offer-card:last-child,
  .stay-card-large,
  .facility-large {
    grid-column: auto;
  }

  .stay-card-large .stay-photo,
  .stay-photo { height: 330px; }

  .facility-large .facility-photo,
  .facility-photo { min-height: 340px; height: 340px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 260px);
  }

  .gallery-tall,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
  }

  .offer-image {
    height: 330px;
  }

  .offer-content {
    padding: 26px 22px 30px;
  }

  .accommodation-image,
  .accommodation-card-large .accommodation-image {
    height: 330px;
  }

  .accommodation-info {
    padding: 25px 22px 30px;
  }

  .offer-slider {
    gap: 5px;
  }

  .offer-arrow {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 1.4rem;
  }

  .offer-image {
    height: 330px;
  }
}


@media (max-width: 800px) {
  .hero-content { padding-top: 90px; }
  .hero h1 { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-description { max-width: 430px; }
  .hero-bottom { right: 20px; left: 20px; }
  .hero-index { display: none; }
}

@media (max-width: 520px) {
  .hero-welcome { margin-bottom: 15px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-resort-name { letter-spacing: .22em; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-name { font-size: .75rem; }
  .brand-sub { font-size: .39rem; }
  .brand-logo {
    width: 43px;
    height: 43px;
  }

  .brand-name {
    font-size: .68rem;
  }

  .brand-sub {
    font-size: .36rem;
  }
}

/* =========================================================
   AT THE RESORT
   ========================================================= */

.resort-section {
  padding: 110px 0;
  background: #f8f5ef;
}

.resort-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.resort-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.04em;
}

.resort-heading h2 em {
  display: block;
  color: var(--gold);
  font-style: italic;
}


/* GALLERY CARDS */

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

.resort-gallery-card {
  position: relative;
  display: block;
  width: 100%;
  height: 430px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ddd;
  cursor: pointer;
  text-align: left;
}

.resort-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.resort-gallery-card:hover img {
  transform: scale(1.045);
}


/* DARK GRADIENT */

.resort-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.65),
      rgba(0,0,0,.05) 60%,
      transparent
    );
  pointer-events: none;
}


/* CARD TEXT */

.resort-card-overlay {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: white;
}

.resort-card-overlay > span {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.resort-card-overlay small {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
}


/* =========================================================
   GALLERY LIGHTBOX
   ========================================================= */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(10, 24, 20, .94);
}

.gallery-lightbox.open {
  display: flex;
}


.gallery-lightbox-content {
  position: relative;

  width: min(1100px, 100%);
  height: min(760px, 90vh);

  display: flex;
  align-items: center;
  justify-content: center;
}


.gallery-lightbox-image {
  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}


/* CLOSE */

.gallery-close {
  position: fixed;
  top: 25px;
  right: 30px;

  width: 45px;
  height: 45px;

  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.2);

  color: white;

  font-size: 1.5rem;
  line-height: 1;

  cursor: pointer;
}


/* ARROWS */

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25);

  color: white;

  font-size: 1.5rem;

  cursor: pointer;

  transition: background .2s ease;
}

.gallery-arrow:hover {
  background: rgba(255,255,255,.15);
}

.gallery-prev {
  left: -70px;
}

.gallery-next {
  right: -70px;
}


/* CAPTION */

.gallery-caption {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);

  color: rgba(255,255,255,.8);

  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;

  white-space: nowrap;
}


/* MOBILE */

@media (max-width: 800px) {

  .resort-section {
    padding: 75px 0;
  }

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

  .resort-gallery-card {
    height: 360px;
  }

  .gallery-lightbox {
    padding: 15px;
  }

  .gallery-lightbox-content {
    height: 80vh;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-arrow {
    z-index: 3;
    background: rgba(0,0,0,.4);
  }

  .gallery-caption {
    bottom: -35px;
  }

}

.experience-photo {
  position: relative;
  overflow: hidden;
}

.experience-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.experience-photo span {
  position: absolute;
  z-index: 2;
}

/* =========================
   GALLERY — MATCH EXPERIENCES
   ========================= */

.gallery {
  padding: 110px 0;
  background: #f8f5ef;
}

.gallery .section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.gallery .section-top h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.04em;
}

.gallery .section-top h2 em {
  font-style: italic;
}

.gallery .section-top-copy {
  max-width: 300px;
  margin: 0 0 8px;
}


/* =========================
   GALLERY GRID
   ========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  grid-auto-rows: 195px;
  gap: 8px;
}

.gallery-item {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #dfe3df;
  cursor: pointer;
  text-align: left;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}


/* =========================
   TALL IMAGE
   ========================= */

.gallery-tall {
  grid-row: span 2;
}


/* =========================
   WIDE IMAGE
   ========================= */

.gallery-wide {
  grid-column: span 2;
}


/* =========================
   IMAGE OVERLAY
   ========================= */

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, .48),
      rgba(0, 0, 0, .04) 65%,
      transparent
    );
  pointer-events: none;
  transition: opacity .3s ease;
}

.gallery-item:hover::after {
  opacity: .8;
}


/* =========================
   GALLERY LABEL
   ========================= */

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;

  color: #fff;

  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 900px) {

  .gallery {
    padding: 80px 0;
  }

  .gallery .section-top {
    display: block;
    margin-bottom: 35px;
  }

  .gallery .section-top-copy {
    max-width: 450px;
    margin-top: 25px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-tall {
    grid-row: span 2;
  }

  .gallery-wide {
    grid-column: span 2;
  }
}


@media (max-width: 600px) {

  .gallery {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
    gap: 8px;
  }

  .gallery-tall,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item {
    height: 300px;
  }

  .gallery-item span {
    left: 18px;
    bottom: 16px;
  }
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}