/* Solana Cove · premium clean · ivory / ink / palm */

:root {
  --ivory: #F7F3EC;
  --ivory-deep: #EFE9DD;
  --ink: #191714;
  --ink-soft: #4A453E;
  --palm: #3E5C50;
  --line: rgba(25, 23, 20, 0.14);
  --line-light: rgba(247, 243, 236, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

.preloader{ position:fixed; inset:0; z-index:9999; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px; background:var(--ivory); transition:opacity .5s var(--ease), visibility .5s var(--ease); }
.preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ font-family:"Marcellus", serif; font-size:1.5rem; letter-spacing:.02em; color:var(--palm); opacity:0; animation:preloaderIn .6s var(--ease) forwards; }
.preloader-bar{ width:120px; height:2px; background:var(--line); overflow:hidden; border-radius:2px; }
.preloader-bar-fill{ display:block; height:100%; width:0%; background:var(--palm); transition:width .25s var(--ease); }
@keyframes preloaderIn{ to{ opacity:1; } }
body.is-preloading{ overflow:hidden; }
@media (prefers-reduced-motion:reduce){ .preloader-mark{ animation:none; opacity:1; } }

body {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, .footer-logo, .quote-text, .stat-num {
  font-family: "Marcellus", serif;
  font-weight: 400;
}

a { color: inherit; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}
.btn:focus-visible { outline: 2px solid var(--palm); outline-offset: 3px; }

.btn-ivory { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-ivory:hover { background: transparent; color: var(--ivory); }

.btn-ghost { background: transparent; color: var(--ivory); border-color: var(--line-light); }
.btn-ghost:hover { border-color: var(--ivory); background: rgba(247, 243, 236, 0.1); }

.btn-solid { background: var(--palm); color: var(--ivory); border-color: var(--palm); }
.btn-solid:hover { background: var(--ink); border-color: var(--ink); }

.btn-slim { padding: 11px 24px; font-size: 0.72rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--palm);
  border-bottom: 1px solid rgba(62, 92, 80, 0.35);
  padding-bottom: 6px;
  transition: color 200ms var(--ease), border-color 200ms var(--ease), gap 200ms var(--ease);
}
.text-link:hover { color: var(--ink); border-color: var(--ink); gap: 14px; }
.text-link:focus-visible { outline: 2px solid var(--palm); outline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 5vw, 64px);
  color: var(--ivory);
}
.nav-brand {
  font-family: "Marcellus", serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-links { display: flex; gap: clamp(20px, 3vw, 44px); }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 180ms var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-reserve {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--line-light);
  padding: 10px 22px;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.nav-reserve:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }

/* ---------- sticky booking bar ---------- */
.bookbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(20px, 4vw, 48px);
  background: rgba(247, 243, 236, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(25, 23, 20, 0.06), 0 1px 3px rgba(25, 23, 20, 0.04);
  transform: translateY(-105%);
  transition: transform 450ms var(--ease);
}
.bookbar.is-visible { transform: translateY(0); }
.bookbar-brand {
  font-family: "Marcellus", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.bookbar-form { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); }
.bookbar-field { display: flex; flex-direction: column; gap: 1px; }
.bookbar-field span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.bookbar-field input,
.bookbar-field select {
  font-family: "Figtree", sans-serif;
  font-size: 0.85rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 3px 2px;
  min-width: 130px;
  cursor: pointer;
}
.bookbar-field input:focus,
.bookbar-field select:focus { outline: none; border-color: var(--palm); }
.bookbar-cta-mobile { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ivory);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(18, 17, 14, 0.44);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 clamp(24px, 5vw, 64px);
  margin-top: 40px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
}
.hero-sub {
  max-width: 520px;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.92;
  margin-bottom: 44px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  gap: clamp(24px, 5vw, 72px);
  padding: 22px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line-light);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- intro ---------- */
.intro {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.intro-kicker,
.split-kicker,
.cta-kicker {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--palm);
  margin-bottom: 22px;
}
.intro-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 26px;
}
.intro-body {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1.02rem;
}
.intro-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: clamp(56px, 7vw, 88px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
  margin-bottom: 10px;
  color: var(--ink);
}
.stat-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ---------- editorial splits ---------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(50px, 6.5vw, 90px) clamp(24px, 5vw, 64px);
}
.split-flip { direction: rtl; background: var(--ivory-deep); max-width: none; }
.split-flip > * { direction: ltr; }
.split-flip .split-media,
.split-flip .split-copy { max-width: 648px; }
.split-flip .split-media { justify-self: start; margin-left: max(0px, calc((100vw - 1360px) / 2)); }
.split-flip .split-copy { justify-self: end; margin-right: max(0px, calc((100vw - 1360px) / 2)); }

.split-media img {
  width: 100%;
  height: clamp(380px, 44vw, 640px);
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(25, 23, 20, 0.12), 0 6px 18px rgba(25, 23, 20, 0.07);
}
.split-copy { position: relative; padding: 24px 0; }
.split-numeral {
  position: absolute;
  top: -34px;
  left: -12px;
  font-family: "Marcellus", serif;
  font-size: clamp(6rem, 10vw, 9rem);
  line-height: 1;
  color: rgba(62, 92, 80, 0.1);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.split-copy > *:not(.split-numeral) { position: relative; z-index: 1; }
.split-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.18;
  margin-bottom: 22px;
}
.split-body {
  color: var(--ink-soft);
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 28px;
}
.split-list { list-style: none; }
.split-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.split-list li:last-child { border-bottom: 1px solid var(--line); }
.split-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 12px;
  height: 1px;
  background: var(--palm);
}

/* ---------- gallery ---------- */
.gallery { padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 120px); }
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: 1360px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  padding: 0 clamp(24px, 5vw, 64px);
}
.gallery-title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); line-height: 1.15; }
.gallery-hint {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  padding-bottom: 8px;
}
.gallery-track {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px clamp(24px, 5vw, 64px) 28px;
  scrollbar-width: thin;
  scrollbar-color: var(--palm) transparent;
}
.gallery-track:focus-visible { outline: 2px solid var(--palm); outline-offset: 4px; }
.gallery-item {
  flex: 0 0 auto;
  width: clamp(280px, 32vw, 460px);
  scroll-snap-align: start;
}
.gallery-item img {
  width: 100%;
  height: clamp(340px, 26vw, 400px);
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(25, 23, 20, 0.1), 0 4px 12px rgba(25, 23, 20, 0.06);
  transition: transform 500ms var(--ease);
}
.gallery-item:hover img { transform: translateY(-6px); }
.gallery-item figcaption {
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ---------- quote ---------- */
.quote {
  background: var(--palm);
  color: var(--ivory);
  text-align: center;
  padding: clamp(90px, 12vw, 160px) clamp(24px, 5vw, 64px);
}
.quote-mark { color: rgba(247, 243, 236, 0.3); margin-bottom: 36px; }
.quote-text {
  max-width: 920px;
  margin: 0 auto 40px;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.35;
}
.quote-name {
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.quote-meta {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 300;
  opacity: 0.75;
}

/* ---------- cta ---------- */
.cta {
  position: relative;
  color: var(--ivory);
  text-align: center;
  padding: clamp(110px, 14vw, 190px) clamp(24px, 5vw, 64px);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-scrim {
  position: absolute;
  inset: 0;
  background: rgba(18, 17, 14, 0.58);
}
.cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-kicker { color: var(--ivory); opacity: 0.8; }
.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 24px;
}
.cta-body {
  max-width: 520px;
  margin: 0 auto 40px;
  font-weight: 300;
  opacity: 0.92;
}
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.cta-note {
  margin-top: 36px;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(247, 243, 236, 0.82);
  padding: clamp(70px, 8vw, 110px) clamp(24px, 5vw, 64px) 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  max-width: 1360px;
  margin: 0 auto;
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid rgba(247, 243, 236, 0.14);
}
.footer-logo {
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: var(--ivory);
  margin-bottom: 16px;
}
.footer-tag { font-size: 0.88rem; font-weight: 300; line-height: 1.7; }
.footer-head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.92rem; font-weight: 300; line-height: 2; }
.footer-col a { text-decoration: none; transition: color 180ms var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 28px;
  font-size: 0.78rem;
  font-weight: 300;
  opacity: 0.65;
}

/* ---------- demo pill ---------- */
.built-by-pill {
  position: fixed;
  bottom: 18px;
  left: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(25, 23, 20, 0.88);
  color: rgba(247, 243, 236, 0.92);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 236, 0.16);
  transition: background 200ms var(--ease), transform 200ms var(--ease);
}
.built-by-pill:hover { background: var(--palm); transform: translateY(-2px); }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .bookbar { transition: none; }
  .gallery-item img, .btn, .text-link { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .split, .split-flip { grid-template-columns: 1fr; gap: 40px; }
  .split-flip .split-media, .split-flip .split-copy { max-width: none; margin: 0; justify-self: stretch; }
  .split-media img { height: clamp(300px, 52vw, 480px); }
  .split-numeral { top: -20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bookbar-field:nth-child(3) { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .intro-stats { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
  .hero-foot { gap: 18px; font-size: 0.66rem; flex-wrap: wrap; }
  .bookbar-form { display: none; }
  .bookbar-cta-mobile { display: inline-flex; }
  .gallery-hint { display: none; }
  .cta-actions .btn { width: 100%; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}
