:root {
  --ink: #101816;
  --ink-soft: #2c3a35;
  --muted: #5f6f68;
  --paper: #f4f7f5;
  --mist: #e8efeb;
  --pine: #1f4a3f;
  --pine-deep: #16362e;
  --copper: #c4924a;
  --copper-deep: #9a7134;
  --night: #0b1210;
  --cream: #fbfcfb;
  --line: #d5e0db;
  --display: "Cormorant Garamond", "Palatino Linotype", Palatino, serif;
  --sans: "Outfit", "Segoe UI", system-ui, sans-serif;
  --max: 72rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -0.02em;
  text-wrap: balance;
  line-height: 1.12;
  margin: 0;
}
p { text-wrap: pretty; }
.skip { position: absolute; left: -999px; }
.skip:focus {
  left: 1rem; top: 1rem; z-index: 50;
  background: var(--copper); color: var(--ink);
  padding: .5rem .75rem;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }
.page { min-height: 100vh; display: flex; flex-direction: column; }

header.site {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11, 18, 16, .92);
  backdrop-filter: blur(10px);
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
}
.brand {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--display); font-weight: 600; font-size: 1.35rem;
  color: var(--cream);
}
.brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }
nav.desk { display: none; align-items: center; gap: 1.5rem; }
nav.desk a { color: rgba(251,252,251,.78); font-size: .92rem; font-weight: 500; }
nav.desk a:hover, nav.desk a.active { color: var(--copper); }
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; background: none; border: 0;
  color: var(--cream); cursor: pointer;
}
nav.mob { display: none; border-top: 1px solid rgba(255,255,255,.08); padding: 1rem 0 1.25rem; }
nav.mob.open { display: block; }
nav.mob a { display: flex; min-height: 44px; align-items: center; color: var(--cream); }
@media (min-width: 900px) {
  nav.desk { display: flex; }
  .menu-btn { display: none; }
  nav.mob, nav.mob.open { display: none !important; }
}

.hero {
  position: relative; min-height: 88vh; color: var(--cream);
  display: flex; align-items: flex-end; justify-content: center; text-align: center;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero .veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,18,16,.55), rgba(11,18,16,.35) 40%, rgba(11,18,16,.88)),
    radial-gradient(ellipse at 50% 20%, rgba(196,146,74,.18), transparent 55%);
}
.hero .inner { position: relative; max-width: 46rem; padding: 7rem 1.25rem 5rem; }
.kicker {
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--copper);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem); margin-top: .85rem;
  animation: riseIn .9s ease both;
}
.hero p {
  margin: 1.1rem auto 0; max-width: 36rem; color: rgba(251,252,251,.86);
  font-size: 1.05rem; animation: riseIn 1s .12s ease both;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .8rem 1.35rem; margin-top: 1.5rem;
  border-radius: 999px; border: 0; cursor: pointer; font: inherit; font-weight: 600;
  background: var(--copper); color: var(--night);
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { background: #d4a65a; transform: translateY(-1px); }
.btn.dark { background: var(--pine); color: var(--cream); }
.btn.dark:hover { background: var(--pine-deep); }
.hero .btn { animation: riseIn 1s .2s ease both; }

.section { padding: 4.5rem 0; }
.section.tight { padding: 3.25rem 0; }
.band {
  background: var(--mist);
  text-align: center;
  padding: 3.25rem 1.25rem;
}
.band h2 { color: var(--pine-deep); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.band p { max-width: 40rem; margin: .9rem auto 0; color: var(--ink-soft); }

.split {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 960px) { .split { grid-template-columns: 1.05fr .95fr; } }
.split .copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); color: var(--pine-deep); }
.split .copy p { color: var(--ink-soft); }
.media-frame {
  margin: 0; overflow: hidden; border-radius: 18px;
  box-shadow: 0 24px 50px rgba(16,24,22,.12);
}
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.overview { background: var(--cream); }
.overview-grid {
  display: grid; gap: 1.25rem; margin-top: 2rem; padding: 0; list-style: none;
}
@media (min-width: 700px) { .overview-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .overview-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.overview-grid li {
  padding: 1.35rem 1.25rem;
  border-top: 2px solid var(--copper);
  background: linear-gradient(180deg, rgba(31,74,63,.04), transparent);
}
.overview-grid h3 { font-size: 1.35rem; margin-bottom: .45rem; color: var(--pine-deep); }
.overview-grid p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.stays h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); color: var(--pine-deep); }
.stays > .lead { max-width: 40rem; color: var(--ink-soft); }
.stay-list {
  display: grid; gap: 1.5rem; margin-top: 2.25rem; padding: 0; list-style: none;
}
@media (min-width: 800px) { .stay-list { grid-template-columns: 1fr 1fr; } }
.stay {
  display: grid; gap: 0;
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stay:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(16,24,22,.1); }
.stay .shot {
  aspect-ratio: 16/10; object-fit: cover; width: 100%;
}
.stay .pad { padding: 1.35rem 1.35rem 1.5rem; }
.stay .loc {
  font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--copper-deep); margin: 0 0 .4rem;
}
.stay h3 { font-size: 1.55rem; color: var(--pine-deep); }
.stay p { margin: .55rem 0 0; color: var(--ink-soft); font-size: .95rem; }

.notice {
  background: var(--night); color: var(--cream); padding: 4.5rem 0;
}
.notice h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.notice p { color: rgba(251,252,251,.78); max-width: 40rem; }
.notice ul {
  display: grid; gap: .65rem; margin: 1.5rem 0 0; padding: 0; list-style: none;
}
@media (min-width: 700px) { .notice ul { grid-template-columns: 1fr 1fr; } }
.notice li {
  padding: .85rem 1rem;
  border-left: 2px solid var(--copper);
  background: rgba(255,255,255,.04);
  color: rgba(251,252,251,.86); font-size: .95rem;
}

.intro { max-width: 42rem; margin: 0 auto; padding: 3.5rem 1.25rem 2rem; text-align: center; }
.intro h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); color: var(--pine-deep); margin-top: .7rem; }
.intro p { color: var(--ink-soft); }
.prose { max-width: 42rem; margin: 0 auto; padding: 1rem 1.25rem 4rem; }
.prose h2 { font-size: 1.55rem; margin-top: 2.25rem; color: var(--pine-deep); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }

form.contact {
  background: var(--cream); border-radius: 16px; padding: 2rem;
  box-shadow: 0 0 0 1px var(--line);
}
form.contact label { display: block; font-size: .9rem; font-weight: 500; margin: 0 0 .4rem; }
form.contact input, form.contact textarea {
  width: 100%; min-height: 44px; margin-bottom: 1rem;
  border: 1px solid var(--line); border-radius: 8px; background: var(--cream);
  padding: .65rem .8rem; font: inherit; color: var(--ink);
}
form.contact textarea { min-height: 8rem; }
form.contact .form-status { margin: .75rem 0 0; font-size: .9rem; color: var(--ink-soft); }
.biz-card {
  margin-top: 2rem; padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: .9rem;
}
.biz-card strong { color: var(--ink); }

footer.site { background: var(--night); color: var(--cream); margin-top: auto; }
footer.site .note {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0; color: rgba(251,252,251,.7); font-size: .9rem;
}
.foot-grid { display: grid; gap: 2.25rem; padding: 3rem 0; }
@media (min-width: 768px) { .foot-grid { grid-template-columns: 1.2fr 1fr 1.3fr; } }
.gold { color: var(--copper); }
footer.site a:hover { color: var(--copper); }
.legal {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0; display: flex; flex-wrap: wrap;
  gap: .75rem 1.25rem; justify-content: space-between;
  color: rgba(251,252,251,.55); font-size: .88rem;
}
.legal ul { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.small { font-size: .9rem; line-height: 1.55; }
.fine { margin-top: 1.5rem; font-size: .88rem; color: var(--muted); }

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(0,-1.5%,0); }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important; transition: none !important; scroll-behavior: auto !important;
  }
  .hero img.bg { transform: none; }
}
