:root {
  --bg: #efeee9;
  --bg-alt: #e6e4de;
  --ink: #161615;
  --muted: #6a6964;
  --soft: #8b8a85;
  --line: rgba(22, 22, 21, 0.14);
  --paper: #f7f6f2;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.narrow { width: min(680px, calc(100% - 64px)); }
.center { text-align: center; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  mix-blend-mode: difference;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo, .logo-foot {
  color: #fff;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 0.42em;
  font-weight: 400;
}

.logo-foot { color: #fff; letter-spacing: 0.36em; margin-bottom: 8px; }

nav { display: flex; gap: 32px; }

nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
}

nav a:hover { color: #fff; }

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  color: #f4f3ef;
  padding: 0 0 88px;
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #050508 url("../assets/img/hero-poster.jpg") center/cover no-repeat;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.92) brightness(0.82);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,9,0.15) 0%, rgba(10,10,9,0.55) 55%, rgba(10,10,9,0.88) 100%);
}

.hero-copy { position: relative; z-index: 1; max-width: 760px; }

.hero-mark {
  position: absolute;
  right: 40px;
  bottom: 40px;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,243,239,0.55);
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 18px;
}

.hero .eyebrow { color: rgba(244,243,239,0.7); }

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(3rem, 6.4vw, 5.4rem);
  font-weight: 300;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  margin-bottom: 22px;
}

h3 { font-size: 1.45rem; margin-bottom: 12px; font-weight: 400; }

.lede, .intro, .lead {
  font-size: 1.18rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 58ch;
}

.lede { margin-bottom: 36px; color: rgba(244,243,239,0.78); }
.intro { margin: 12px 0 0; }
.lead { color: var(--ink); margin-bottom: 20px; font-size: 1.28rem; line-height: 1.55; }

.btn {
  display: inline-block;
  background: transparent;
  color: inherit;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 16px 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.66rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 400;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover { background: #fff; color: #111; }

.ticker {
  background: var(--ink);
  color: rgba(244,243,239,0.72);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ticker-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section { padding: 120px 0; }

.section-index span,
.section-head span,
.section-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  color: var(--soft);
  margin-bottom: 28px;
}

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.light .eyebrow,
.section-head.light span { color: rgba(244,243,239,0.55); }
.section-head.light h2 { color: #f4f3ef; }

.split {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 80px;
  align-items: start;
}

.prose p + p { margin-top: 18px; }
.prose.light { color: rgba(244,243,239,0.78); }
.prose.light p { color: rgba(244,243,239,0.78); }

.amenities {
  list-style: none;
  margin: 36px 0;
}

.amenities li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
}

.amenities li:last-child { border-bottom: 1px solid var(--line); }

.amenities em {
  font-style: normal;
  font-family: "Cormorant Garamond", serif;
  color: var(--soft);
  letter-spacing: 0.12em;
}

.grid-3, .grid-2 { display: grid; gap: 48px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.05fr 0.95fr; align-items: start; }

.num {
  font-family: "Cormorant Garamond", serif;
  color: var(--soft);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}

article p { color: var(--muted); }

.full-bleed {
  margin: 0;
}

.full-bleed img,
.duo img,
.gallery img {
  width: 100%;
  height: 72vh;
  object-fit: cover;
  display: block;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.gallery .g-wide { grid-column: 1 / -1; }
.gallery img { height: 58vh; }
.gallery .g-wide img { height: 68vh; }

.full-bleed figcaption {
  width: min(1180px, calc(100% - 64px));
  margin: 14px auto 0;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--soft);
}

.duo {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.duo img { height: 58vh; }

.band {
  background: #141413;
  color: #f4f3ef;
}

.callout {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding: 8px 0 0;
}

.callout-label {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244,243,239,0.5);
  margin-bottom: 22px;
}

.callout ul { list-style: none; }
.callout li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(244,243,239,0.84);
}

.note {
  margin-top: 22px;
  font-size: 0.95rem;
  color: rgba(244,243,239,0.55);
}

.inquire { background: #10100f; color: #f4f3ef; }
.inquire .eyebrow,
.inquire .section-num { color: rgba(244,243,239,0.5); }
.inquire .intro { color: rgba(244,243,239,0.68); }
.inquire h2 { color: #f4f3ef; }

.inquiry-form { margin-top: 48px; display: grid; gap: 22px; }

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

label {
  display: grid;
  gap: 10px;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,243,239,0.5);
}

input, textarea {
  font: 300 1rem/1.5 "Outfit", sans-serif;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color: #f4f3ef;
  text-transform: none;
  letter-spacing: 0.01em;
  border-radius: 0;
}

input:focus, textarea:focus {
  outline: none;
  border-bottom-color: #fff;
}

.inquiry-form .hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
}

.form-note { font-size: 0.88rem; color: rgba(244,243,239,0.5); }

.faq { margin-top: 40px; }
.faq dt {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-top: 28px;
}
.faq dd {
  color: var(--muted);
  margin: 8px 0 0;
}

footer a { color: inherit; }
footer {
  background: #0c0c0b;
  color: rgba(244,243,239,0.55);
  padding: 48px 0;
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.footer-mark {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.64rem;
}

@media (max-width: 860px) {
  nav { display: none; }
  .wrap, .narrow { width: calc(100% - 40px); }
  .split, .grid-3, .grid-2, .inquiry-form .row, .footer-inner, .duo, .ticker-inner {
    grid-template-columns: 1fr;
    display: grid;
  }
  .ticker-inner { gap: 10px; }
  .hero { padding-bottom: 64px; min-height: 92vh; }
  .section { padding: 80px 0; }
  .full-bleed img, .duo img, .gallery img, .gallery .g-wide img { height: 42vh; }
  .gallery { width: calc(100% - 24px); grid-template-columns: 1fr; }
  .hero-mark { display: none; }
}
