/* ============================================================
   SOLÈNE — Private Island Resort
   Luxury editorial design system
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }

/* ---------- Design tokens ---------- */
:root {
  /* Color ramps */
  --sand-50:  #faf7f1;
  --sand-100: #f5efe4;
  --sand-200: #ece2d2;
  --sand-300: #ddcdb4;
  --sand-400: #c9b48f;

  --ivory:    #fbf8f3;
  --white:    #ffffff;

  --ocean-100: #eaf4f6;
  --ocean-300: #a9cdd4;
  --ocean-500: #5f97a4;
  --ocean-700: #2f5d68;
  --ocean-900: #163842;

  --palm-100: #e8efe6;
  --palm-400: #8aa37e;
  --palm-700: #4a5d44;

  --stone-100: #ececea;
  --stone-300: #c4c4be;
  --stone-500: #8c8a83;
  --stone-700: #565550;
  --stone-900: #2b2926;

  --sunset-300: #f0c39a;
  --sunset-500: #e0995f;
  --sunset-700: #b56f3c;

  --wood-300: #c8a884;
  --wood-700: #6e5238;

  --error: #a8443a;

  /* Semantic */
  --bg:        var(--ivory);
  --bg-alt:    var(--sand-50);
  --ink:       var(--stone-900);
  --ink-soft:  var(--stone-700);
  --ink-mute:  var(--stone-500);
  --line:      var(--stone-100);
  --accent:    var(--ocean-700);
  --accent-soft: var(--ocean-500);

  /* Type */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing (8px base) */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  /* Layout */
  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.8s;
}

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 2.2vw, 2rem); }

.display {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}

.section-head { max-width: 720px; margin: 0 auto var(--s-6); text-align: center; }
.section-head__sub { margin-top: var(--s-3); color: var(--ink-soft); font-size: 1.05rem; max-width: 56ch; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 1.05em 2.1em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.btn--primary { background: var(--stone-900); color: var(--ivory); }
.btn--primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(22,56,66,0.5); }
.btn--ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--line { border-color: var(--stone-300); color: var(--ink); }
.btn--line:hover { border-color: var(--accent); color: var(--accent); }
.btn--full { width: 100%; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--stone-900);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { text-align: center; }
.loader__mark span {
  font-family: var(--serif); font-size: 4rem; color: var(--ivory);
  display: block; animation: fadeUp 0.8s var(--ease) both;
}
.loader__line { width: 160px; height: 1px; background: rgba(255,255,255,0.2); margin: 18px auto 0; overflow: hidden; }
.loader__line i { display: block; height: 100%; width: 0; background: var(--ivory); animation: load 1.6s var(--ease) forwards; }
@keyframes load { to { width: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(18px, 2.4vw, 28px) var(--gut);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(251,248,243,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding-top: clamp(12px, 1.6vw, 18px);
  padding-bottom: clamp(12px, 1.6vw, 18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand { display: flex; align-items: baseline; gap: 9px; color: #fff; transition: color 0.5s var(--ease); }
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__mark { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.nav__word { font-family: var(--serif); font-size: 1.35rem; letter-spacing: 0.04em; }
.nav__links { display: flex; gap: clamp(18px, 2.4vw, 34px); }
.nav__links a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); transition: color 0.4s var(--ease); position: relative;
}
.nav.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: currentColor; transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav.is-scrolled .nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.7em 1.6em; border: 1px solid rgba(255,255,255,0.7); border-radius: 999px;
  color: #fff; transition: all 0.4s var(--ease);
}
.nav.is-scrolled .nav__cta { border-color: var(--stone-900); color: var(--ink); }
.nav__cta:hover { background: #fff; color: var(--stone-900); }
.nav.is-scrolled .nav__cta:hover { background: var(--stone-900); color: var(--ivory); }
.nav__burger { display: none; flex-direction: column; gap: 5px; width: 30px; }
.nav__burger span { display: block; height: 1.5px; background: #fff; transition: all 0.4s var(--ease); }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__drawer {
  position: fixed; inset: 0; z-index: 999; background: var(--stone-900);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: var(--s-4);
  opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.nav__drawer.is-open { opacity: 1; visibility: visible; }
.nav__drawer a { font-family: var(--serif); font-size: 2rem; color: var(--ivory); transition: color 0.3s; }
.nav__drawer a:hover { color: var(--sunset-300); }
.drawer__cta { margin-top: var(--s-2); font-family: var(--sans) !important; font-size: 0.85rem !important; letter-spacing: 0.14em; text-transform: uppercase; padding: 1em 2em; border: 1px solid rgba(255,255,255,0.5); border-radius: 999px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 14s var(--ease-out) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,56,66,0.35) 0%, rgba(22,56,66,0.12) 35%, rgba(22,56,66,0.55) 100%); }
.hero__content { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); width: 100%; color: #fff; }
.hero__eyebrow { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: var(--s-3); color: rgba(255,255,255,0.9); }
.hero__title { font-size: clamp(3rem, 8vw, 7rem); font-weight: 300; line-height: 1.02; letter-spacing: -0.02em; max-width: 14ch; }
.hero__title span { display: block; }
.hero__sub { margin-top: var(--s-4); max-width: 52ch; font-size: 1.12rem; color: rgba(255,255,255,0.92); font-weight: 300; }
.hero__actions { margin-top: var(--s-5); display: flex; gap: var(--s-2); flex-wrap: wrap; }
.hero__meta { margin-top: var(--s-6); display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; font-size: 0.88rem; color: rgba(255,255,255,0.88); }
.hero__stars { color: var(--sunset-300); letter-spacing: 0.1em; }
.hero__rating strong { font-weight: 600; }
.hero__loc { padding-left: var(--s-4); border-left: 1px solid rgba(255,255,255,0.3); }
.hero__scroll { position: absolute; bottom: var(--s-4); left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); }
.hero__scroll-label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 50px; background: rgba(255,255,255,0.25); overflow: hidden; }
.hero__scroll-line i { display: block; width: 100%; height: 40%; background: #fff; animation: scrollDown 2.2s var(--ease) infinite; }
@keyframes scrollDown { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(150%); } }

/* ---------- Reveal base ---------- */
.reveal, .reveal-img { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
.reveal-img img { transform: scale(1.12); transition: transform 1.4s var(--ease); }
.reveal.is-in, .reveal-img.is-in { opacity: 1; transform: none; }
.reveal-img.is-in img { transform: scale(1); }

.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal-up.is-in { opacity: 1; transform: none; }

/* ---------- Story ---------- */
.story { padding: var(--s-8) var(--gut); background: var(--bg); }
.story__intro { max-width: var(--maxw); margin: 0 auto var(--s-7); }
.story__intro .display { margin-top: var(--s-1); }
.story__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-6); align-items: start; }
.story__img { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/5; }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__text { padding-top: var(--s-2); }
.story__text p { margin-bottom: var(--s-3); color: var(--ink-soft); font-size: 1.08rem; }
.story__sig { margin-top: var(--s-5); display: flex; flex-direction: column; }
.story__sig-name { font-family: var(--serif); font-size: 1.4rem; }
.story__sig-role { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
.story__stats { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: var(--s-6); padding-top: var(--s-5); border-top: 1px solid var(--line); }
.stat { text-align: left; }
.stat__num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 300; display: inline; }
.stat__suffix { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.8rem); color: var(--ink-mute); }
.stat__label { display: block; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 6px; }

/* ---------- Villas ---------- */
.villas { padding: var(--s-8) var(--gut); background: var(--bg-alt); }
.villas__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.villa { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 1px 0 var(--line); transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.villa:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(43,41,38,0.25); }
.villa__media { position: relative; aspect-ratio: 11/8; overflow: hidden; }
.villa__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.villa:hover .villa__media img { transform: scale(1.06); }
.villa__tag { position: absolute; top: 14px; left: 14px; background: rgba(251,248,243,0.92); backdrop-filter: blur(6px); color: var(--ink); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.villa__body { padding: var(--s-3) var(--s-3) var(--s-4); }
.villa__body h3 { margin-bottom: var(--s-1); }
.villa__body p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: var(--s-3); }
.villa__spec { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-1); padding-top: var(--s-2); border-top: 1px solid var(--line); }
.villa__spec dt { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.villa__spec dd { font-family: var(--serif); font-size: 1.05rem; }
.villa__link { display: inline-block; margin-top: var(--s-3); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); transition: transform 0.3s var(--ease); }
.villa__link:hover { transform: translateX(4px); }

/* ---------- Feature (beach / spa) ---------- */
.feature { padding: var(--s-8) var(--gut); background: var(--bg); max-width: 100%; }
.feature--beach { background: var(--ocean-100); }
.feature--spa { background: var(--palm-100); }
.feature__media { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 14/10; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__text { max-width: 540px; }
.feature__text .display { margin: var(--s-1) 0 var(--s-3); }
.feature__text > p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: var(--s-3); }
.feature__list { margin: var(--s-3) 0 var(--s-4); display: flex; flex-direction: column; gap: var(--s-2); }
.feature__list li { position: relative; padding-left: 26px; color: var(--ink-soft); }
.feature__list li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 14px; height: 1px; background: var(--accent); }
.feature { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-6); align-items: center; max-width: var(--maxw); margin: 0 auto; }
.feature--reverse .feature__media { order: 2; }
.feature--reverse { grid-template-columns: 1fr 1.2fr; }

/* ---------- Dining ---------- */
.dining { padding: var(--s-8) var(--gut); background: var(--bg); }
.dining__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.dish { overflow: hidden; border-radius: var(--radius-lg); position: relative; aspect-ratio: 1/1; }
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.dish:hover img { transform: scale(1.07); }
.dish figcaption { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--s-3); color: #fff; background: linear-gradient(180deg, transparent 45%, rgba(22,56,66,0.78) 100%); }
.dish h3 { font-size: 1.7rem; margin-bottom: 4px; }
.dish p { font-size: 0.9rem; color: rgba(255,255,255,0.9); }

/* ---------- Experiences ---------- */
.experiences { padding: var(--s-8) var(--gut); background: var(--bg-alt); }
.exp__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(220px, auto); gap: var(--s-3); }
.exp { display: flex; flex-direction: column; justify-content: center; padding: var(--s-4); }
.exp__num { font-family: var(--serif); font-size: 1.1rem; color: var(--accent); margin-bottom: var(--s-2); letter-spacing: 0.08em; }
.exp h3 { margin-bottom: var(--s-1); }
.exp p { color: var(--ink-soft); font-size: 0.95rem; }
.exp img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.exp__grid .reveal-img { overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 10/7; }

/* ---------- Gallery ---------- */
.gallery { padding: var(--s-8) var(--gut); background: var(--bg); }
.gallery__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: var(--s-2); }
.gallery__item { overflow: hidden; border-radius: var(--radius); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease), filter 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); filter: brightness(1.04); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ---------- Testimonials ---------- */
.testimonials { padding: var(--s-8) var(--gut); background: var(--stone-900); color: var(--ivory); }
.testimonials .eyebrow { color: var(--sunset-300); }
.testimonials .section-head .display { color: var(--ivory); }
.quotes { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.quote { padding: var(--s-4); border-left: 1px solid rgba(255,255,255,0.15); }
.quote blockquote { font-family: var(--serif); font-size: 1.5rem; line-height: 1.4; font-weight: 300; font-style: italic; margin-bottom: var(--s-3); }
.quote figcaption { font-size: 0.86rem; color: rgba(255,255,255,0.7); letter-spacing: 0.06em; }
.quote figcaption span { color: var(--ivory); font-weight: 500; }

/* ---------- Awards ---------- */
.awards { padding: var(--s-7) var(--gut); background: var(--bg); }
.awards__row { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; }
.award { display: flex; align-items: baseline; gap: var(--s-4); padding: var(--s-3) 0; border-bottom: 1px solid var(--line); transition: padding 0.4s var(--ease); }
.award:hover { padding-left: var(--s-2); }
.award__year { font-family: var(--serif); font-size: 1.4rem; color: var(--accent); min-width: 70px; }
.award__name { font-size: 1.02rem; color: var(--ink-soft); }

/* ---------- Reservation ---------- */
.reserve { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 90svh; }
.reserve__media { position: relative; overflow: hidden; }
.reserve__media img { width: 100%; height: 100%; object-fit: cover; }
.reserve__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,56,66,0.2), rgba(22,56,66,0.4)); }
.reserve__form { padding: var(--s-7) clamp(24px, 5vw, 80px); background: var(--bg); display: flex; flex-direction: column; justify-content: center; }
.reserve__form .display { margin: var(--s-1) 0 var(--s-2); }
.reserve__note { color: var(--ink-soft); margin-bottom: var(--s-4); max-width: 44ch; }
.field { margin-bottom: var(--s-3); }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--stone-300);
  padding: 10px 0; transition: border-color 0.4s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.reserve__confirm { margin-top: var(--s-3); color: var(--palm-700); font-size: 0.95rem; }

/* ---------- Location ---------- */
.location { padding: var(--s-8) var(--gut); background: var(--bg-alt); max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: center; }
.location__text .display { margin: var(--s-1) 0 var(--s-3); }
.location__text > p { color: var(--ink-soft); max-width: 48ch; margin-bottom: var(--s-4); }
.location__facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.location__facts dt { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.location__facts dd { font-family: var(--serif); font-size: 1.15rem; }
.location__map { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4/3; }
.location__map img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) brightness(1.02); }
.location__pin { position: absolute; top: 48%; left: 52%; width: 18px; height: 18px; }
.location__pin span { position: absolute; inset: 0; border-radius: 50%; background: var(--sunset-500); }
.location__pin span:first-child { animation: pulse 2.4s var(--ease) infinite; }
.location__pin span:last-child { transform: scale(0.5); }
@keyframes pulse { 0% { transform: scale(0.4); opacity: 1; } 100% { transform: scale(2.4); opacity: 0; } }

/* ---------- Footer ---------- */
.footer { background: var(--stone-900); color: var(--ivory); padding: var(--s-7) var(--gut) var(--s-3); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: var(--s-6); padding-bottom: var(--s-5); border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer__brand { display: flex; flex-direction: column; gap: 6px; }
.footer__mark { font-family: var(--serif); font-size: 2.4rem; }
.footer__word { font-family: var(--serif); font-size: 1.6rem; letter-spacing: 0.04em; }
.footer__tag { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-top: 6px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.footer__cols h4 { font-family: var(--sans); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sunset-300); margin-bottom: var(--s-2); }
.footer__cols a { display: block; color: rgba(255,255,255,0.72); font-size: 0.92rem; padding: 5px 0; transition: color 0.3s; }
.footer__cols a:hover { color: #fff; }
.footer__bottom { max-width: var(--maxw); margin: var(--s-3) auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-2); font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story__grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .story__img { aspect-ratio: 16/10; max-height: 60vh; }
  .villas__grid { grid-template-columns: repeat(2, 1fr); }
  .dining__grid { grid-template-columns: repeat(2, 1fr); }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; gap: var(--s-2); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: var(--s-4); }
  .feature--reverse .feature__media { order: 0; }
  .reserve { grid-template-columns: 1fr; }
  .reserve__media { min-height: 40vh; }
  .location { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: var(--s-4); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 4.2rem); }
  .hero__sub { font-size: 1rem; }
  .story__stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .villas__grid { grid-template-columns: 1fr; }
  .dining__grid { grid-template-columns: 1fr; }
  .exp__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .footer__cols { grid-template-columns: 1fr; gap: var(--s-3); }
  .footer__bottom { flex-direction: column; }
  .field--row { grid-template-columns: 1fr; gap: var(--s-2); }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .hero__meta { gap: var(--s-2); }
  .hero__loc { padding-left: 0; border-left: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__media img { transform: none; }
  .reveal, .reveal-img, .reveal-up { opacity: 1; transform: none; }
  .reveal-img img { transform: none; }
}
