:root {
  --ink: #f6efe2;
  --ink-muted: #c6bba8;
  --ink-soft: #8e8374;
  --bg: #11100d;
  --bg-deep: #090806;
  --panel: #1a1814;
  --panel-soft: #232018;
  --line: rgba(246, 239, 226, 0.14);
  --gold: #d8a85b;
  --gold-deep: #9e6f32;
  --copper: #b96d45;
  --sage: #8ea48a;
  --blue: #8ca7bd;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius: 28px;
  --radius-sm: 16px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(216, 168, 91, 0.14), transparent 24rem),
    radial-gradient(circle at 85% 12%, rgba(140, 167, 189, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 58%, #15120e 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(246, 239, 226, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 239, 226, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(circle, rgba(246, 239, 226, 0.36) 0 1px, transparent 1px);
  background-size: 22px 22px;
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--bg);
  background: var(--gold);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  width: min(1160px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 12px 12px 18px;
  border: 1px solid rgba(246, 239, 226, 0.16);
  border-radius: 999px;
  background: rgba(17, 16, 13, 0.62);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 16, 13, 0.88);
  border-color: rgba(216, 168, 91, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: #14110c;
  background: linear-gradient(135deg, var(--gold), #f5ddb3);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  color: #16120d;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 700;
}

.site-nav .nav-cta:hover {
  color: #16120d;
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 150px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(17, 16, 13, 0.9) 0%, rgba(17, 16, 13, 0.44) 48%, rgba(17, 16, 13, 0.82) 100%),
    radial-gradient(circle at 62% 38%, rgba(216, 168, 91, 0.18), transparent 18rem),
    linear-gradient(135deg, #15130f 0%, #272015 36%, #11100d 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(246, 239, 226, 0.12);
  border-radius: 42px;
  transform: rotate(-8deg);
}

.hero-bg::before {
  right: -60px;
  bottom: 7%;
  width: 520px;
  height: 350px;
  background: linear-gradient(145deg, rgba(216, 168, 91, 0.18), rgba(140, 167, 189, 0.08));
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.32);
}

.hero-bg::after {
  left: -110px;
  top: 18%;
  width: 360px;
  height: 260px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  font-size: clamp(4.5rem, 12vw, 10.2rem);
}

h2 {
  font-size: clamp(3rem, 7vw, 7.6rem);
}

h3 {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

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

.hero-text {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #15110c;
  background: linear-gradient(135deg, var(--gold), #f7d99e);
  box-shadow: 0 18px 44px rgba(216, 168, 91, 0.24);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.58;
}

.hero-card {
  position: relative;
}

.room-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 226, 0.14);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(135deg, #2b2419 0%, #15120d 54%, #332012 100%);
  box-shadow: var(--shadow);
}

.room-visual-large {
  min-height: min(68vh, 650px);
}

.room-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(216, 168, 91, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(216, 168, 91, 0.16) 49% 51%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.room-orb {
  position: absolute;
  top: 18%;
  right: 18%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff1cc, var(--gold) 38%, rgba(216, 168, 91, 0.05) 70%);
  filter: blur(0.2px);
  box-shadow: 0 0 70px rgba(216, 168, 91, 0.42);
  animation: float 6s ease-in-out infinite;
}

.room-window {
  position: absolute;
  left: 11%;
  bottom: 12%;
  width: 52%;
  height: 34%;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(140, 167, 189, 0.32), rgba(17, 16, 13, 0.2)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(246, 239, 226, 0.1) 25px 26px);
  border: 1px solid rgba(246, 239, 226, 0.12);
}

.room-terminal {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(260px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(246, 239, 226, 0.18);
  border-radius: 20px;
  background: rgba(9, 8, 6, 0.72);
  backdrop-filter: blur(16px);
}

.room-terminal span,
.availability-card span,
.price-label {
  display: block;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-terminal strong,
.availability-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.05;
}

.availability-card {
  position: absolute;
  right: -8px;
  bottom: -30px;
  max-width: 290px;
  padding: 20px;
  border: 1px solid rgba(216, 168, 91, 0.28);
  border-radius: 24px;
  background: rgba(26, 24, 20, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 25px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 10px auto 0;
  background: linear-gradient(var(--gold), transparent);
}

.stats {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--ink-muted);
}

.intro {
  padding-bottom: 40px;
}

.intro h2 {
  max-width: 1040px;
}

.definition-card {
  max-width: 860px;
  margin-top: 38px;
  padding: 28px;
  border: 1px solid rgba(216, 168, 91, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(216, 168, 91, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.definition-card h3 {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.definition-card p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.chapter {
  border-top: 1px solid var(--line);
}

.chapter-inverted {
  background: rgba(255, 255, 255, 0.03);
}

.chapter-grid {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: start;
}

.chapter-number {
  position: sticky;
  top: 130px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 800;
}

.chapter-copy p {
  max-width: 720px;
  font-size: 1.02rem;
}

.chapter-copy blockquote {
  max-width: 620px;
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.timeline-card,
.access-card,
.event-list,
.signal-wall {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow);
}

.timeline-card {
  padding: 28px;
}

.timeline-card div {
  display: grid;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-card div:first-child {
  padding-top: 0;
}

.timeline-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline-card strong {
  color: var(--gold);
  font-family: var(--mono);
}

.timeline-card span {
  color: var(--ink-muted);
}

.signal-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
}

.signal-wall span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.16);
  font-family: var(--serif);
  font-size: 1.05rem;
  text-align: center;
}

.access-card {
  overflow: hidden;
}

.access-visual {
  height: 260px;
  background:
    radial-gradient(circle at 70% 24%, rgba(216, 168, 91, 0.42), transparent 5rem),
    linear-gradient(135deg, rgba(140, 167, 189, 0.34), transparent 38%),
    repeating-linear-gradient(90deg, rgba(246, 239, 226, 0.08) 0 1px, transparent 1px 28px),
    linear-gradient(135deg, #2c2418, #0e0d0b);
}

.access-card strong,
.access-card span {
  display: block;
  margin: 0 24px;
}

.access-card strong {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.access-card span {
  margin-top: 8px;
  margin-bottom: 24px;
  color: var(--ink-muted);
}

.event-list {
  padding: 18px;
}

.event-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.event-list article:last-child {
  border-bottom: 0;
}

.event-list span {
  color: var(--gold);
  font-family: var(--mono);
  font-weight: 800;
}

.event-list strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.1;
}

.gallery {
  background: #0d0c09;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.photo-card {
  min-height: 310px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel);
}

.photo-card.tall {
  grid-row: span 2;
  min-height: 640px;
}

.photo-card.wide {
  grid-column: span 2;
}

.photo-card h3 {
  padding: 18px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.photo-visual {
  position: relative;
  min-height: 250px;
  background-color: #251f18;
  overflow: hidden;
}

.photo-visual::before,
.photo-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.photo-visual::before {
  inset: 16%;
  border: 1px solid rgba(246, 239, 226, 0.12);
}

.photo-visual::after {
  top: 20%;
  right: 18%;
  width: 90px;
  height: 90px;
  background: var(--gold);
  box-shadow: 0 0 70px rgba(216, 168, 91, 0.45);
}

.room-a {
  min-height: 580px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.28)),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(246, 239, 226, 0.06) 37px 38px),
    linear-gradient(135deg, #3a2b1a, #11100d);
}

.room-b {
  background:
    radial-gradient(circle at 24% 28%, rgba(140, 167, 189, 0.42), transparent 7rem),
    linear-gradient(135deg, #262a24, #14110d);
}

.room-c {
  background:
    repeating-linear-gradient(0deg, transparent 0 20px, rgba(216, 168, 91, 0.08) 21px 22px),
    linear-gradient(135deg, #2b1d18, #0f0d0a);
}

.room-d {
  background:
    radial-gradient(circle at 50% 45%, rgba(216, 168, 91, 0.2), transparent 9rem),
    linear-gradient(135deg, #1d2224, #100e0b);
}

.room-e {
  background:
    linear-gradient(180deg, rgba(140, 167, 189, 0.42), transparent 45%),
    linear-gradient(90deg, rgba(216, 168, 91, 0.22), transparent),
    linear-gradient(135deg, #2a2119, #11100d);
}

.room-f {
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(140, 167, 189, 0.14) 19px 20px),
    linear-gradient(135deg, #1b2022, #0f0d0a);
}

.community {
  border-top: 1px solid var(--line);
}

.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 60px;
  align-items: center;
}

.community p {
  max-width: 700px;
  font-size: 1.05rem;
}

.verticals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.verticals span {
  padding: 14px 18px;
  border: 1px solid rgba(216, 168, 91, 0.24);
  border-radius: 999px;
  background: rgba(216, 168, 91, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.booking {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 168, 91, 0.12), transparent 26rem),
    rgba(255, 255, 255, 0.025);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 44px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.price-card.featured {
  border-color: rgba(216, 168, 91, 0.45);
  background:
    linear-gradient(180deg, rgba(216, 168, 91, 0.16), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.price-card.muted {
  opacity: 0.78;
}

.price-card h3 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.price {
  min-height: 54px;
  margin: 22px 0;
  color: var(--ink);
}

.price strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--ink-muted);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.price-card .button {
  margin-top: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
  gap: 56px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 1.2rem;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 28px;
}

.final-cta {
  padding-top: 40px;
}

.final-card {
  display: grid;
  gap: 24px;
  place-items: center;
  padding: 82px 24px;
  border: 1px solid rgba(216, 168, 91, 0.32);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 168, 91, 0.22), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
  text-align: center;
  box-shadow: var(--shadow);
}

.final-card h2 {
  font-size: clamp(3rem, 8vw, 8.6rem);
}

.site-footer {
  padding: 72px 0 0;
  border-top: 1px solid var(--line);
  background: #0a0907;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(120px, 0.5fr));
  gap: 44px;
}

.footer-brand {
  margin-bottom: 20px;
}

.site-footer p {
  max-width: 440px;
}

address {
  margin-top: 22px;
  color: var(--ink-muted);
  font-style: normal;
}

.site-footer h3 {
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin: 9px 0;
  color: var(--ink-muted);
}

.site-footer a:not(.brand):hover {
  color: var(--gold);
}

.cookie-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding: 18px max(20px, calc((100vw - 1160px) / 2));
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section-pad {
    padding: 82px 0;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid,
  .chapter-grid,
  .community-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 640px;
  }

  .chapter-grid {
    gap: 26px;
  }

  .chapter-number {
    position: static;
  }

  .stats-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 26px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(17, 16, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 4px;
  }

  .nav-cta {
    text-align: center;
  }

  h1 {
    font-size: clamp(3.8rem, 17vw, 6.6rem);
  }

  h2 {
    font-size: clamp(2.9rem, 13vw, 5.6rem);
  }

  h3 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .room-visual-large {
    min-height: 430px;
  }

  .availability-card {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin-top: 14px;
  }

  .stats-grid,
  .pricing-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .stat:first-child {
    border-top: 0;
  }

  .signal-wall {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card.tall,
  .photo-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 310px;
  }

  .room-a {
    min-height: 250px;
  }

  .price-card {
    min-height: auto;
  }

  .cookie-note {
    flex-direction: column;
  }
}
