:root {
  --ink: #0c0b0a;
  --ink-2: #161412;
  --ivory: #f4efe6;
  --ivory-2: #e7e0d4;
  --gold: #c4a36a;
  --gold-2: #e4d2ae;
  --muted: #d4cbbf;
  --line: rgba(196, 163, 106, 0.45);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --header: 84px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.6;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ivory);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
  z-index: 30;
}
.skip:focus { top: 0.6rem; }

.wrap {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
}

h1, h2, .serif {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.96;
  scroll-margin-top: 110px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header);
  padding: 0.8rem 1.5rem;
  color: var(--ivory);
  transition: background 0.3s ease;
}

.site-header.is-solid,
.page-inner .site-header {
  background: rgba(12, 11, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  position: relative;
  z-index: 2;
  text-decoration: none;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.logo img {
  display: block;
  width: min(240px, 52vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 1.5rem;
  min-width: 0;
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold-2); }

.header-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.utility {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-2);
}
.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  margin-left: auto;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--gold);
  font: 500 0.72rem var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  cursor: pointer;
}
.site-header.is-menu {
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
body.menu-open { overflow: hidden; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  border: 1px solid transparent;
  font: 400 0.78rem var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-ivory { background: var(--ivory); color: var(--ink); }
.btn-ivory:hover { background: white; }
.btn-line { background: transparent; color: var(--ivory); border-color: rgba(244, 239, 230, 0.55); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-gold { background: transparent; color: var(--ink); background: var(--gold); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-2); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  background: var(--ink);
}
.hero video,
.hero .hero-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.72) 0%, rgba(12, 11, 10, 0.28) 58%, rgba(12, 11, 10, 0.15) 100%),
    linear-gradient(180deg, rgba(12, 11, 10, 0.5) 0%, rgba(12, 11, 10, 0.12) 32%, rgba(12, 11, 10, 0.78) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 3rem));
  margin: calc(var(--header) + 1rem) auto 3rem;
}
.hero h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.7rem, 5.6vw, 4.8rem);
}
.lede {
  max-width: 38rem;
  margin: 1.4rem 0 0;
  font-size: 1.12rem;
  font-weight: 300;
  color: var(--ivory-2);
}
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.8rem; }

.band { padding: 6.5rem 0; }
.band-ivory { background: var(--ivory); color: var(--ink); }
.band-ivory .eyebrow { color: #8a6a32; }
.band-ink { background: var(--ink); }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principle {
  padding: 2.4rem 1.6rem 2.6rem;
}
.principle + .principle { border-left: 1px solid var(--line); }
.principle .num {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
}
.principle h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
}
.principle p { margin: 0; color: var(--ivory-2); }

.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.statement h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.6rem);
  color: var(--ink);
}
.statement p { margin: 0 0 1rem; color: #3c3832; }
.statement p:last-child { margin: 0; }

.rate {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.rate h2 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 5vw, 4.4rem);
}
.rate-intro { color: var(--ivory-2); max-width: 28rem; }
.plate {
  border-top: 1px solid var(--line);
}
.plate-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.12);
}
.plate-row strong {
  font-weight: 400;
  letter-spacing: 0.02em;
}
.plate-row span {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--gold-2);
}
.fine {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.band-ivory .fine { color: #3f3a34; }

.hotels {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}
.hotel-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
}
.hotel-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hotel-card:hover img { transform: scale(1.04); }
.hotel-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.72));
}
.hotel-card .meta {
  position: relative;
  padding: 1.4rem;
}
.hotel-card h3 {
  margin: 0.2rem 0 0;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.stack { display: grid; gap: 1rem; }
.stack .hotel-card { min-height: 250px; }

.more-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}
.more-row a {
  text-decoration: none;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}
.more-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}
.more-row span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split img { width: 100%; height: 560px; object-fit: cover; }
.frame-note { margin: 0.55rem 0 0; color: var(--muted); font-size: 0.8rem; }
.split h2, .page-hero h1, .prose h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  margin: 0 0 1rem;
}
.savings {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--ivory);
}

.page-hero {
  padding: 9rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(12,11,10,0.2), rgba(12,11,10,0.72)),
    var(--hero) center/cover no-repeat;
}
.page-hero.plain {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-hero h1 { max-width: 14ch; }

.prose { max-width: 42rem; }
.prose p { color: var(--ivory-2); }
.band-ivory .prose p,
.band-ivory p { color: #3c3832; }

.list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(196, 163, 106, 0.28);
}
.band-ivory .list li { border-color: rgba(12, 11, 10, 0.12); }
.list strong { display: block; font-weight: 500; color: var(--ivory); }
.band-ivory .list strong { color: var(--ink); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}
.steps h3 {
  margin: 0.4rem 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}
.steps p { margin: 0; color: var(--ivory-2); }
.band-ivory .steps p { color: #3c3832; }

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.account {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.account img { width: 100%; height: 520px; object-fit: cover; }
.spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.95rem;
}
.spec dt { color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.72rem; }
.spec dd { margin: 0; }

.faq details {
  border-top: 1px solid rgba(12,11,10,0.12);
  padding: 0.9rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid rgba(12,11,10,0.12); }
.faq summary { cursor: pointer; font-weight: 500; }
.faq p { margin: 0.6rem 0 0; }

form {
  background: var(--ink);
  color: var(--ivory);
  padding: 1.5rem;
}
label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.span-2 { grid-column: span 2; }
input, select, textarea {
  font: 300 1rem var(--sans);
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.35);
  padding: 0.55rem 0;
  border-radius: 0;
}
textarea { resize: vertical; }
.optional { letter-spacing: 0; text-transform: none; color: var(--muted); }
.form-note, .form-status { color: var(--muted); font-size: 0.92rem; }
.form-status { color: var(--gold-2); }

.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: block;
  width: min(220px, 70vw);
  height: auto;
  margin: 0 0 1.1rem;
}
.independence { max-width: 36rem; color: var(--ivory-2); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.3rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold-2); }
.legal {
  margin: 1rem 0 0;
  color: #ddd4c8;
  font-size: 0.9rem;
}

.portrait {
  min-height: 360px;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: var(--gold-2);
  background:
    linear-gradient(180deg, transparent, rgba(12,11,10,0.55)),
    url("/media/brand/lounge.jpg") center/cover;
}

@media (max-width: 980px) {
  .hero video { display: none; }
  .site-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .site-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header);
    right: 0;
    left: 0;
    height: calc(100dvh - var(--header));
    background: var(--ink);
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.25rem 1.4rem 2rem;
    gap: 0.35rem;
    z-index: 1;
    overflow: auto;
  }
  .site-nav.is-open .nav-links,
  .site-nav.is-open .header-end {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .site-nav.is-open .nav-links a,
  .site-nav.is-open .utility {
    font-family: var(--serif);
    font-size: 1.85rem;
    letter-spacing: 0;
    text-transform: none;
    padding: 0.35rem 0;
  }
  .site-nav.is-open .header-end .btn {
    margin-top: 0.8rem;
    width: 100%;
  }
  .principles, .statement, .rate, .hotels, .split, .steps, .account, .more-row, .fields, .two, .mosaic {
    grid-template-columns: 1fr;
  }
  .principle + .principle { border-left: 0; border-top: 1px solid var(--line); }
  .plate-row span { text-align: left; }
  .span-2 { grid-column: auto; }
  .split img, .account img { height: 280px; }
  .hero { align-items: flex-start; }
  .hero-copy { margin: 6.5rem auto 2.2rem; }
  .band { padding: 3.6rem 0; }
  .more-row { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero video { display: none; }
  .hotel-card img { transition: none; }
}
