:root {
  --ink: #12100d;
  --ink-soft: #2a241c;
  --paper: #f4efe6;
  --paper-2: #ebe3d4;
  --cream: #faf6ee;
  --gold: #c4a46a;
  --gold-2: #e6d3a4;
  --teal: #1a5554;
  --teal-deep: #0e3534;
  --muted: #6f6658;
  --line: rgba(196, 164, 106, 0.38);
  --shadow: 0 22px 48px rgba(12, 9, 6, 0.28);
  --serif: "Cormorant Garamond", "Iowan Old Style", Palatino, Georgia, serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

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

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

h1 { font-size: clamp(3rem, 7vw, 6.4rem); margin: 0; }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); margin: 0 0 18px; }
h3 { font-size: clamp(1.4rem, 2vw, 1.9rem); margin: 0 0 10px; }

.lede, .prose p { color: var(--muted); font-size: 1.05rem; }
.prose p { margin: 0 0 16px; }
.prose p:last-child { margin-bottom: 0; }

.gold-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 22px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  min-height: 80px;
  background: linear-gradient(180deg, rgba(18, 16, 13, 0.72), transparent);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.page-inner .site-header {
  background: rgba(18, 16, 13, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { width: 58px; height: 58px; object-fit: contain; background: transparent; mix-blend-mode: lighten; }

.nav-desktop {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav-desktop a {
  color: #f4efe6;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-desktop a[aria-current="page"],
.nav-desktop a:hover { color: var(--gold-2); }

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.lang a {
  padding: 6px 10px;
  color: #d7cbb4;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.lang a.is-on {
  background: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  display: grid;
  place-items: center;
  gap: 5px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-drawer {
  position: fixed;
  inset: 80px 16px auto;
  background: #1a1612;
  border: 1px solid var(--line);
  padding: 22px;
  display: grid;
  gap: 16px;
  z-index: 39;
}

.nav-drawer a {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); background: var(--gold-2); }
.btn-ghost { background: transparent; color: var(--gold-2); }
.btn-ghost:hover { background: rgba(196, 164, 106, 0.12); color: var(--gold-2); }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.hero {
  min-height: 100svh;
  padding: 128px 0 72px;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(196, 164, 106, 0.14), transparent 42%),
    radial-gradient(ellipse at 90% 80%, rgba(26, 85, 84, 0.28), transparent 40%),
    var(--ink);
  color: var(--paper);
  display: grid;
  align-items: center;
}

.hero-grid,
.split,
.stats,
.offers,
.rooms-grid,
.gallery-grid,
.review-grid,
.amenity-grid {
  display: grid;
  gap: 28px;
}

.hero-copy { max-width: 620px; }
.hero-copy .lede {
  color: #cfc4b0;
  font-size: 1.12rem;
  max-width: 38ch;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-art {
  position: relative;
  width: min(100%, 520px);
  min-height: 480px;
  margin-inline: auto;
}

.frame {
  display: block;
  background: #f7f1e6;
  padding: 9px 9px 28px;
  border: 1px solid rgba(196, 164, 106, 0.55);
  box-shadow: var(--shadow);
  color: inherit;
}

.frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.05) saturate(1.04);
}

.frame.portrait img { aspect-ratio: 3 / 4; }
.frame figcaption {
  margin-top: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a6f5d;
  text-align: center;
}

.hero-art .frame {
  position: absolute;
}

.hero-art .one { top: 0; right: 0; width: 360px; z-index: 2; }
.hero-art .two { left: 0; bottom: 18px; width: 230px; z-index: 3; transform: rotate(-3deg); }
.hero-art .three { right: 28px; bottom: 0; width: 170px; z-index: 1; transform: rotate(4deg); }

.section { padding: 88px 0; }
.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-dark .prose p,
.section-dark .lede { color: #c8bba6; }

.section-teal { background: var(--teal-deep); color: var(--paper); }

.split { align-items: center; }
.split .copy { max-width: 520px; }

.offers { grid-template-columns: 1fr; }
.offer {
  background: var(--cream);
  border: 1px solid rgba(196, 164, 106, 0.22);
  padding: 16px 16px 24px;
}

.offer .frame { box-shadow: none; padding: 0 0 16px; border: 0; background: transparent; }
.offer .frame img { aspect-ratio: 16 / 10; }
.offer p { color: var(--muted); margin: 0 0 16px; }

.stats {
  grid-template-columns: 1fr 1fr;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: var(--gold-2);
}

.stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d5c7ae;
}

.page-hero {
  padding: 150px 0 64px;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(196, 164, 106, 0.16), transparent 42%),
    var(--ink);
  color: var(--paper);
}

.page-hero p { color: #cfc4b0; max-width: 46ch; }

.rooms-grid { grid-template-columns: 1fr; }
.room-card {
  display: grid;
  gap: 22px;
  background: var(--cream);
  border: 1px solid rgba(196, 164, 106, 0.2);
  padding: 16px;
}

.room-card .frame { margin: 0; box-shadow: none; }
.room-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
}

.amenity-grid { grid-template-columns: 1fr 1fr; }
.amenity {
  padding: 18px 0;
  border-top: 1px solid rgba(196, 164, 106, 0.22);
}

.amenity strong { display: block; font-family: var(--serif); font-size: 1.25rem; }

.gallery-grid {
  grid-template-columns: 1fr 1fr;
}

.gallery-grid button {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.gallery-grid .frame { width: 100%; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 10, 8, 0.88);
  display: grid;
  place-items: center;
  padding: 24px;
}

.lightbox[hidden] { display: none; }

.lightbox figure {
  width: min(720px, 100%);
  background: #f7f1e6;
  padding: 12px 12px 28px;
}

.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #1a1612;
}

.lightbox figcaption {
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: #6f6658;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-2);
  width: 42px;
  height: 42px;
}

.review-grid { grid-template-columns: 1fr; }
.review {
  background: var(--cream);
  padding: 28px 24px;
  border: 1px solid rgba(196, 164, 106, 0.2);
}

.review q {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.4;
  quotes: none;
}

.review cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--teal);
}

.contact-grid { display: grid; gap: 18px; }
.contact-card {
  background: var(--cream);
  border: 1px solid rgba(196, 164, 106, 0.22);
  padding: 24px;
}

.reach {
  display: grid;
  gap: 14px;
}

.reach-link {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid rgba(196, 164, 106, 0.28);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.reach-link:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.reach-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.reach-value {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
}

.hours {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.social-row a { letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.78rem; color: var(--teal); }
.social-row a:hover { color: var(--ink); }

.frame.wide img { aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }

.map {
  min-height: 320px;
  border: 1px solid var(--line);
}

.map iframe { width: 100%; height: 320px; border: 0; }

.site-footer {
  background: #0d0b09;
  color: #cfc4b0;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(196, 164, 106, 0.18);
}

.nav-drawer[hidden] { display: none !important; }

.site-footer img { width: 88px; height: 88px; object-fit: contain; background: transparent; mix-blend-mode: lighten; }
.site-footer a:hover { color: var(--gold-2); }
.site-footer h3 { color: var(--gold-2); font-size: 1.3rem; }
.legal { padding-top: 18px; font-size: 0.82rem; color: #8b8170; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in { opacity: 1; transform: none; }

@media (min-width: 820px) {
  .nav-desktop { display: flex; }
  .nav-toggle, .nav-drawer { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .split, .room-card, .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .offers { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-art { min-height: 520px; }
}

@media (max-width: 819px) {
  .header-tools .btn { display: none; }
  .hero { padding-top: 112px; }
  .hero-art {
    min-height: 0;
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 12px;
    align-items: end;
  }
  .hero-art .frame {
    position: static;
    width: 100%;
    transform: none;
  }
  .hero-art .three { display: none; }
}
