/*
  ABS Stays — Urban Serenity
  Static hospitality website for absglobalventures.com
  Brand system: Cinema Burgundy / Warm Ivory / Champagne Gold
*/

:root {
  --ink: #171313;
  --ink-soft: #423638;
  --burgundy: #4b1020;
  --burgundy-deep: #2b0b14;
  --burgundy-soft: #713044;
  --ivory: #f6f0e8;
  --ivory-deep: #ede2d5;
  --paper: #fffaf4;
  --gold: #d5b26f;
  --gold-light: #efd9a6;
  --rose: #b77a73;
  --sage: #8c927f;
  --white: #fff;
  --black: #080607;
  --line: rgba(43, 11, 20, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 12px 30px rgba(43, 11, 20, 0.08);
  --shadow-md: 0 24px 70px rgba(43, 11, 20, 0.14);
  --shadow-lg: 0 50px 120px rgba(15, 6, 9, 0.26);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(90vw, 1380px);
  --narrow: min(88vw, 980px);
  --header-h: 88px;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading,
body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

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

::selection {
  background: var(--gold);
  color: var(--burgundy-deep);
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--burgundy);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.site-shell::before {
  content: "";
  position: fixed;
  z-index: 9000;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: var(--narrow);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 170px) 0;
}

.section--compact {
  padding: clamp(70px, 7vw, 110px) 0;
}

.section--dark {
  background: var(--burgundy-deep);
  color: var(--ivory);
}

.section--burgundy {
  background: var(--burgundy);
  color: var(--ivory);
}

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

.section--cream {
  background: var(--ivory-deep);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section--dark .section-kicker,
.section--burgundy .section-kicker {
  color: var(--gold-light);
}

.section-title {
  max-width: 980px;
  font-size: clamp(3rem, 7.5vw, 7.6rem);
}

.section-title--medium {
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
}

.section-title em {
  color: var(--burgundy);
  font-style: italic;
}

.section--dark .section-title em,
.section--burgundy .section-title em {
  color: var(--gold-light);
}

.section-copy {
  max-width: 650px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.section--dark p,
.section--burgundy p {
  color: rgba(246, 240, 232, 0.72);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(46px, 6vw, 84px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(213, 178, 111, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: gap 0.35s var(--ease), opacity 0.35s ease;
}

.text-link:hover {
  gap: 19px;
  opacity: 0.72;
}

.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm {
  width: 18px;
  height: 18px;
}

.icon--lg {
  width: 31px;
  height: 31px;
}

/* Cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 99990;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
}

.cursor-ring {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(246, 240, 232, 0.72);
  color: var(--ivory);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.is-active {
  width: 76px;
  height: 76px;
  border-color: transparent;
  background: var(--ivory);
  color: var(--burgundy-deep);
  mix-blend-mode: normal;
}

.cursor-label {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor-ring.is-active .cursor-label {
  opacity: 1;
}

/* Preloader */
.preloader {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--burgundy-deep);
  color: var(--ivory);
}

.preloader__inner {
  display: grid;
  width: min(86vw, 560px);
  justify-items: center;
  gap: 26px;
}

.preloader__mark {
  width: 92px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.25));
}

.preloader__line {
  position: relative;
  width: min(72vw, 360px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.preloader__line span {
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}

.preloader__meta {
  display: flex;
  width: min(72vw, 360px);
  justify-content: space-between;
  color: rgba(246, 240, 232, 0.64);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Page transition */
.page-transition {
  position: fixed;
  z-index: 99980;
  inset: 0;
  pointer-events: none;
  transform: translateY(100%);
  background: var(--burgundy);
}

.page-transition::after {
  content: "ABS STAYS";
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 8vw, 8rem);
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* Availability ribbon */
.availability-bar {
  position: relative;
  z-index: 80;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.availability-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid currentColor;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 34px;
  right: 0;
  left: 0;
  height: var(--header-h);
  color: var(--ivory);
  transition: top 0.35s var(--ease), height 0.35s var(--ease), color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  top: 0;
  height: 72px;
  background: rgba(246, 240, 232, 0.9);
  box-shadow: 0 8px 35px rgba(43, 11, 20, 0.08);
  color: var(--burgundy-deep);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 42px;
  flex: 0 0 auto;
}

.brand__wordmark {
  display: grid;
  line-height: 1;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.brand__tag {
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.35s ease;
}

.site-header.is-scrolled .brand__tag {
  color: var(--burgundy-soft);
}

.site-nav {
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
}

.site-nav__link {
  position: relative;
  display: block;
  padding: 12px 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.site-nav__link:hover::after,
.site-nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.header-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--burgundy-deep);
  transform: translateY(-2px);
}

.site-header.is-scrolled .header-cta {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.site-header.is-scrolled .header-cta:hover {
  color: var(--burgundy-deep);
}

.nav-toggle {
  position: relative;
  z-index: 30;
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-open .nav-toggle .icon-menu {
  display: none;
}

.nav-open .nav-toggle .icon-close {
  display: block;
}

/* Buttons */
.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
  isolation: isolate;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--gold-light);
  transform: translateY(105%);
  transition: transform 0.5s var(--ease);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(43, 11, 20, 0.18);
}

.button:hover::before {
  transform: translateY(0);
}

.button--gold {
  background: var(--gold);
  color: var(--burgundy-deep);
}

.button--burgundy {
  background: var(--burgundy);
  color: var(--ivory);
}

.button--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--ivory);
}

.button--outline-dark {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}

.button--outline-light::before,
.button--outline-dark::before {
  background: var(--gold);
}

.button--outline-light:hover,
.button--outline-dark:hover {
  color: var(--burgundy-deep);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Shared image treatment */
.media-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #cbb7a0, #6c3b43);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(24, 8, 13, 0.3));
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.5s ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.image-fallback {
  background:
    radial-gradient(circle at 70% 20%, rgba(239, 217, 166, 0.46), transparent 30%),
    linear-gradient(135deg, var(--burgundy-soft), var(--burgundy-deep));
}

.image-fallback::before {
  content: "ABS STAYS";
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(246, 240, 232, 0.52);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 4rem);
  letter-spacing: 0.12em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* Home hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--burgundy-deep);
  color: var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 4, 8, 0.86) 0%, rgba(15, 4, 8, 0.22) 44%, rgba(15, 4, 8, 0.48) 100%),
    linear-gradient(180deg, rgba(15, 4, 8, 0.2), rgba(15, 4, 8, 0.24) 58%, rgba(15, 4, 8, 0.88));
}

.hero__visual {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.82fr 1.36fr 0.82fr;
  gap: 8px;
  padding: 0;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}

.hero__panel::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(43, 11, 20, 0.12);
  mix-blend-mode: multiply;
}

.hero__panel img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.03);
  transform: scale(1.12);
}

.hero__panel--left img {
  object-position: 55% center;
}

.hero__panel--center img {
  object-position: center 54%;
}

.hero__panel--right img {
  object-position: center 42%;
}

.hero__film-edge {
  position: absolute;
  z-index: 5;
  top: 12%;
  right: 22px;
  display: grid;
  gap: 14px;
  opacity: 0.44;
}

.hero__film-edge span {
  width: 7px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 2px;
}

.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  width: var(--container);
  min-height: 100svh;
  margin-inline: auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 95px) 0 clamp(54px, 7vh, 86px);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__meta span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 18px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
}

.hero__title {
  max-width: 1060px;
  font-size: clamp(4rem, 10.4vw, 11.2rem);
  letter-spacing: -0.052em;
}

.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.hero__title .line-inner {
  display: block;
}

.hero__title em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero__bottom {
  display: grid;
  margin-top: clamp(26px, 4vh, 46px);
  grid-template-columns: minmax(250px, 560px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.hero__copy {
  max-width: 560px;
  color: rgba(246, 240, 232, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.hero__scroll {
  position: absolute;
  z-index: 12;
  right: 4vw;
  bottom: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(246, 240, 232, 0.72);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero__scroll::after {
  content: "";
  width: 70px;
  height: 1px;
  background: rgba(246, 240, 232, 0.42);
}

/* Quick facts */
.fact-strip {
  position: relative;
  z-index: 20;
  margin-top: -1px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.fact-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fact-card {
  position: relative;
  display: grid;
  min-height: 170px;
  align-content: center;
  gap: 7px;
  padding: 34px clamp(24px, 3vw, 50px);
  border-right: 1px solid var(--line);
}

.fact-card:last-child {
  border-right: 0;
}

.fact-card__value {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 0.9;
}

.fact-card__label {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact-card__icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(75, 16, 32, 0.3);
}

/* Intro / story */
.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(46px, 9vw, 140px);
}

.intro-sticky {
  position: sticky;
  top: 120px;
}

.intro-sticky .section-title {
  max-width: 580px;
}

.intro-copy {
  display: grid;
  gap: 34px;
  padding-top: 20px;
}

.intro-copy__lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  line-height: 1.12;
}

.intro-copy__body {
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.intro-note {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.intro-note__num {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
}

.intro-note h3 {
  margin-bottom: 8px;
  color: var(--burgundy);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Cinematic story cards */
.story-cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.story-card {
  position: relative;
  min-height: min(76vw, 780px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--burgundy);
  color: var(--ivory);
  box-shadow: var(--shadow-md);
}

.story-card:nth-child(1) {
  grid-column: 1 / 7;
}

.story-card:nth-child(2) {
  grid-column: 7 / 13;
  margin-top: 110px;
}

.story-card:nth-child(3) {
  grid-column: 3 / 11;
  min-height: min(62vw, 680px);
}

.story-card img {
  position: absolute;
  inset: -8% 0 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 5, 9, 0.02) 28%, rgba(17, 5, 9, 0.86) 100%);
}

.story-card__content {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 14px;
  padding: clamp(28px, 5vw, 62px);
}

.story-card__scene {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.story-card__title {
  max-width: 560px;
  font-size: clamp(2.5rem, 5.4vw, 6rem);
}

.story-card__copy {
  max-width: 520px;
  color: rgba(246, 240, 232, 0.74);
}

.story-card__film {
  position: absolute;
  z-index: 3;
  top: 25px;
  right: 25px;
  display: grid;
  gap: 12px;
}

.story-card__film span {
  width: 9px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 2px;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 28s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 22px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.4rem);
  white-space: nowrap;
}

.marquee__item::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.46em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Horizontal spaces rail */
.spaces-wrap {
  overflow: hidden;
}

.spaces-rail {
  display: flex;
  width: max-content;
  gap: clamp(16px, 2vw, 30px);
  padding-inline: max(5vw, calc((100vw - 1380px) / 2));
}

.space-card {
  position: relative;
  width: min(68vw, 610px);
  height: min(74vh, 760px);
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--burgundy);
  box-shadow: var(--shadow-md);
}

.space-card:nth-child(even) {
  width: min(52vw, 470px);
  margin-top: 80px;
}

.space-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(18, 5, 9, 0.86));
}

.space-card__label {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(26px, 4vw, 48px);
}

.space-card__num {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.space-card__title {
  color: var(--ivory);
  font-size: clamp(2.2rem, 4.2vw, 4.8rem);
}

.space-card__copy {
  max-width: 390px;
  margin-top: 10px;
  color: rgba(246, 240, 232, 0.7);
}

/* Amenities */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.amenity-card {
  position: relative;
  display: grid;
  min-height: 245px;
  align-content: space-between;
  padding: clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: color 0.45s ease, background 0.45s ease, transform 0.45s var(--ease);
}

.amenity-card:hover {
  z-index: 2;
  background: var(--burgundy);
  color: var(--ivory);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.amenity-card__icon {
  color: var(--burgundy);
  transition: color 0.45s ease;
}

.amenity-card:hover .amenity-card__icon {
  color: var(--gold);
}

.amenity-card h3 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.amenity-card p {
  font-size: 0.9rem;
  transition: color 0.45s ease;
}

.amenity-card:hover p {
  color: rgba(246, 240, 232, 0.7);
}

/* Audience cards */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.audience-card {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  align-content: end;
  padding: clamp(30px, 4vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--ivory-deep);
  isolation: isolate;
}

.audience-card::before {
  content: attr(data-index);
  position: absolute;
  z-index: -1;
  top: -0.16em;
  right: -0.04em;
  color: rgba(75, 16, 32, 0.06);
  font-family: var(--serif);
  font-size: clamp(11rem, 20vw, 21rem);
  line-height: 1;
}

.audience-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--burgundy);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s var(--ease);
}

.audience-card:hover::after {
  transform: scaleY(1);
}

.audience-card h3 {
  margin-bottom: 15px;
  color: var(--burgundy);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  transition: color 0.45s ease;
}

.audience-card p {
  max-width: 520px;
  transition: color 0.45s ease;
}

.audience-card:hover h3 {
  color: var(--gold-light);
}

.audience-card:hover p {
  color: rgba(246, 240, 232, 0.72);
}

/* Location section */
.location-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.location-map {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #d9c8b7;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: sepia(0.35) saturate(0.7) contrast(0.95);
}

.location-map__overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 16px;
  background: rgba(43, 11, 20, 0.82);
  color: var(--ivory);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.location-map__overlay p {
  color: rgba(246, 240, 232, 0.7);
  font-size: 0.82rem;
}

.location-content {
  display: grid;
  align-content: center;
  gap: 28px;
  padding: clamp(42px, 6vw, 84px);
}

.location-content h2 {
  color: var(--burgundy);
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.location-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.location-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.location-item__icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory-deep);
  color: var(--burgundy);
}

.location-item h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.location-item p {
  font-size: 0.82rem;
}

.location-item__tag {
  color: var(--burgundy-soft);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Reviews */
.reviews-stage {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.8s var(--ease);
}

.review-card {
  display: grid;
  width: 100%;
  min-width: 100%;
  min-height: 480px;
  align-content: center;
  justify-items: center;
  padding: 40px 8vw;
  text-align: center;
}

.review-card__stars {
  display: flex;
  gap: 5px;
  margin-bottom: 28px;
  color: var(--gold);
}

.review-card blockquote {
  max-width: 1040px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 5.4rem);
  line-height: 1.05;
}

.review-card__author {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.review-card__author small {
  color: rgba(246, 240, 232, 0.55);
  font-size: 0.58rem;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-bottom: 46px;
}

.reviews-button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(246, 240, 232, 0.3);
  border-radius: 50%;
  color: var(--ivory);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}

.reviews-button:hover {
  background: var(--gold);
  color: var(--burgundy-deep);
  transform: scale(1.05);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(246, 240, 232, 0.28);
  transition: width 0.35s var(--ease), background 0.35s ease;
}

.reviews-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.preview-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 30px;
  color: rgba(246, 240, 232, 0.5);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* About preview */
.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}

.about-preview__visual {
  position: relative;
  min-height: 670px;
}

.about-preview__image-main {
  position: absolute;
  top: 0;
  right: 8%;
  width: 70%;
  height: 78%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-preview__image-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 45%;
  border: 10px solid var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-preview__badge {
  position: absolute;
  right: 0;
  bottom: 8%;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--burgundy-deep);
  text-align: center;
  transform: rotate(8deg);
}

.about-preview__badge strong {
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 0.8;
}

.about-preview__badge span {
  display: block;
  max-width: 90px;
  margin-top: 8px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-preview__content {
  display: grid;
  gap: 28px;
}

.about-preview__content h2 {
  color: var(--burgundy);
  font-size: clamp(3.2rem, 6.4vw, 7rem);
}

.about-preview__lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.22;
}

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

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

.faq-question {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 28px 0;
  color: var(--ink);
  text-align: left;
}

.faq-question span:first-child {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.15;
}

.faq-question__icon {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.45s var(--ease);
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--burgundy);
  transform: translate(-50%, -50%);
}

.faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.35s var(--ease);
}

.faq-item.is-open .faq-question__icon {
  background: var(--gold);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-question__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}

.faq-answer__inner {
  overflow: hidden;
}

.faq-answer p {
  max-width: 820px;
  padding: 0 0 30px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: var(--ivory);
  isolation: isolate;
}

.final-cta__bg {
  position: absolute;
  z-index: -3;
  inset: -10%;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.05);
}

.final-cta::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 6, 13, 0.93), rgba(28, 6, 13, 0.58) 55%, rgba(28, 6, 13, 0.76));
}

.final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 26px;
  border: 1px solid rgba(246, 240, 232, 0.22);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.final-cta__content {
  display: grid;
  max-width: 940px;
  gap: 28px;
  padding: 100px 0;
}

.final-cta h2 {
  font-size: clamp(4rem, 9vw, 10rem);
}

.final-cta h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.final-cta p {
  max-width: 620px;
  color: rgba(246, 240, 232, 0.74);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 28px;
  background: var(--burgundy-deep);
  color: var(--ivory);
}

.site-footer::before {
  content: "ABS";
  position: absolute;
  right: -0.04em;
  bottom: -0.29em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: min(44vw, 680px);
  line-height: 1;
}

.footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 60px;
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line-light);
}

.footer-brand img {
  width: min(100%, 380px);
}

.footer-brand p {
  max-width: 460px;
  margin-top: 26px;
  color: rgba(246, 240, 232, 0.62);
}

.footer-col h3 {
  margin-bottom: 24px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 13px;
}

.footer-links a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  color: rgba(246, 240, 232, 0.72);
  transition: color 0.3s ease, transform 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: rgba(246, 240, 232, 0.42);
  font-size: 0.67rem;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* Sticky mobile booking */
.mobile-booking-bar {
  position: fixed;
  z-index: 990;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--burgundy-deep);
  box-shadow: 0 18px 45px rgba(43, 11, 20, 0.28);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Inner page hero */
.inner-hero {
  position: relative;
  min-height: min(88svh, 900px);
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--burgundy-deep);
  color: var(--ivory);
}

.inner-hero__visual {
  position: absolute;
  inset: 0;
}

.inner-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02);
}

.inner-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 5, 9, 0.25) 20%, rgba(18, 5, 9, 0.88) 92%), linear-gradient(90deg, rgba(18, 5, 9, 0.65), transparent 62%);
}

.inner-hero__content {
  position: relative;
  z-index: 3;
  width: var(--container);
  margin-inline: auto;
  padding: calc(var(--header-h) + 100px) 0 72px;
}

.inner-hero__content h1 {
  max-width: 1050px;
  font-size: clamp(4.2rem, 10vw, 10.8rem);
}

.inner-hero__content h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.inner-hero__content p {
  max-width: 650px;
  margin-top: 26px;
  color: rgba(246, 240, 232, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.inner-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(246, 240, 232, 0.62);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inner-hero__crumbs span {
  color: var(--gold-light);
}

/* The Stay page */
.stay-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(44px, 9vw, 135px);
  align-items: start;
}

.stay-overview__lead {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 1.03;
}

.stay-overview__aside {
  display: grid;
  gap: 28px;
  padding-top: 12px;
}

.stay-stat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stay-stat {
  min-height: 145px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stay-stat strong {
  display: block;
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.stay-stat span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.room-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow-md);
}

.room-row {
  display: grid;
  min-height: 520px;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.room-row:nth-child(even) .room-row__media {
  order: 2;
}

.room-row__media {
  min-height: 520px;
}

.room-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-row__content {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(38px, 6vw, 88px);
}

.room-row__index {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.room-row h3 {
  color: var(--burgundy);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.room-row__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.room-pill {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--burgundy-soft);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.amenity-group {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.amenity-group h3 {
  margin-bottom: 24px;
  color: var(--burgundy);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.amenity-group ul {
  display: grid;
  gap: 12px;
}

.amenity-group li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
}

.amenity-group li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

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

.rule-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.rule-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory-deep);
  color: var(--burgundy);
}

.rule-card h3 {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.rule-card p {
  font-size: 0.9rem;
}

/* Gallery */
.gallery-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
}

.gallery-intro h2 {
  color: var(--burgundy);
  font-size: clamp(3.4rem, 7vw, 7.4rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 85px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--burgundy);
  cursor: zoom-in;
}

.gallery-item:nth-child(1) { grid-column: 1 / 8; grid-row: span 8; }
.gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: span 6; }
.gallery-item:nth-child(3) { grid-column: 8 / 13; grid-row: span 7; }
.gallery-item:nth-child(4) { grid-column: 1 / 6; grid-row: span 7; }
.gallery-item:nth-child(5) { grid-column: 6 / 13; grid-row: span 8; }
.gallery-item:nth-child(6) { grid-column: 1 / 7; grid-row: span 8; }
.gallery-item:nth-child(7) { grid-column: 7 / 13; grid-row: span 8; }
.gallery-item:nth-child(8) { grid-column: 1 / 13; grid-row: span 7; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.gallery-item__meta {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 13px;
  background: rgba(43, 11, 20, 0.72);
  color: var(--ivory);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s ease;
}

.gallery-item:hover .gallery-item__meta {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item__meta span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  background: rgba(12, 4, 7, 0.95);
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox__figure {
  position: relative;
  width: min(88vw, 1180px);
  height: min(84vh, 900px);
}

.lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox__caption {
  position: absolute;
  bottom: -42px;
  left: 0;
  color: rgba(246, 240, 232, 0.7);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--ivory);
  transition: background 0.3s ease, color 0.3s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--gold);
  color: var(--burgundy-deep);
}

.lightbox__close {
  top: 24px;
  right: 24px;
}

.lightbox__nav--prev { top: 50%; left: 24px; transform: translateY(-50%) rotate(180deg); }
.lightbox__nav--next { top: 50%; right: 24px; transform: translateY(-50%); }

/* Neighbourhood page */
.neighborhood-map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-md);
}

.neighborhood-map-card iframe {
  width: 100%;
  height: min(72vh, 720px);
  border: 0;
  filter: sepia(0.3) saturate(0.75) contrast(0.96);
}

.neighborhood-map-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px 34px;
}

.neighborhood-map-card__footer h2 {
  color: var(--burgundy);
  font-size: clamp(2rem, 3vw, 3.4rem);
}

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

.place-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--burgundy);
  color: var(--ivory);
  isolation: isolate;
}

.place-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 80% 15%, rgba(213, 178, 111, 0.3), transparent 32%),
    linear-gradient(145deg, var(--burgundy-soft), var(--burgundy-deep));
}

.place-card::after {
  content: attr(data-symbol);
  position: absolute;
  z-index: -1;
  top: -0.28em;
  right: 0;
  color: rgba(246, 240, 232, 0.045);
  font-family: var(--serif);
  font-size: clamp(14rem, 25vw, 28rem);
  line-height: 1;
}

.place-card__tag {
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place-card h3 {
  max-width: 520px;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.place-card p {
  max-width: 540px;
  margin-top: 16px;
  color: rgba(246, 240, 232, 0.7);
}

.travel-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.travel-tip {
  min-height: 250px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.travel-tip__num {
  margin-bottom: 38px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.5rem;
}

.travel-tip h3 {
  margin-bottom: 12px;
  color: var(--burgundy);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* About page */
.manifesto {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: start;
}

.manifesto__label {
  position: sticky;
  top: 120px;
}

.manifesto__text {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 6.4rem);
  line-height: 1.05;
}

.manifesto__text .muted {
  color: rgba(75, 16, 32, 0.28);
}

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

.value-card {
  min-height: 350px;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.value-card__num {
  margin-bottom: 90px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.6rem;
}

.value-card h3 {
  margin-bottom: 16px;
  color: var(--ivory);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
}

.value-card p {
  color: rgba(246, 240, 232, 0.65);
}

.brand-lockup {
  display: grid;
  min-height: 600px;
  place-items: center;
  padding: 70px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 70% 20%, rgba(213, 178, 111, 0.22), transparent 25%),
    var(--burgundy-deep);
}

.brand-lockup img {
  width: min(86%, 820px);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 340px;
  align-content: space-between;
  overflow: hidden;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.contact-card--primary {
  background: var(--burgundy);
  color: var(--ivory);
}

.contact-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory-deep);
  color: var(--burgundy);
}

.contact-card--primary .contact-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.contact-card h2 {
  color: var(--burgundy);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.contact-card--primary h2 {
  color: var(--ivory);
}

.contact-card p {
  max-width: 520px;
}

.contact-card--primary p {
  color: rgba(246, 240, 232, 0.65);
}

.contact-card__link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  color: var(--burgundy);
  font-weight: 700;
}

.contact-card--primary .contact-card__link {
  color: var(--gold-light);
}

/* Legal */
.legal-page {
  width: var(--narrow);
  margin-inline: auto;
  padding: calc(var(--header-h) + 110px) 0 120px;
}

.legal-page__head {
  margin-bottom: 70px;
}

.legal-page__head h1 {
  color: var(--burgundy);
  font-size: clamp(4rem, 9vw, 9rem);
}

.legal-page__head p {
  margin-top: 20px;
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-content section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 14px;
  color: var(--burgundy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.legal-content li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}

.legal-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* 404 */
.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  background: var(--burgundy-deep);
  color: var(--ivory);
  text-align: center;
}

.error-page__code {
  color: rgba(246, 240, 232, 0.08);
  font-family: var(--serif);
  font-size: clamp(10rem, 34vw, 34rem);
  line-height: 0.7;
}

.error-page h1 {
  margin-top: -6vw;
  font-size: clamp(3rem, 7vw, 7rem);
}

.error-page p {
  max-width: 560px;
  margin: 20px auto 30px;
  color: rgba(246, 240, 232, 0.68);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
}

/* Reveal helpers */
[data-reveal],
[data-reveal-stagger] > * {
  will-change: transform, opacity;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-line > span {
  display: block;
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --header-h: 78px; }

  .site-nav__list { gap: 18px; }
  .site-nav__link { font-size: 0.6rem; }
  .header-cta { padding-inline: 16px; }

  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .full-amenities { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  :root { --container: min(90vw, 860px); }

  .cursor-dot,
  .cursor-ring { display: none; }

  .site-header__inner { grid-template-columns: 1fr auto; }
  .site-nav,
  .header-cta { display: none; }
  .nav-toggle { display: grid; }

  .site-nav {
    position: fixed;
    z-index: 10;
    inset: 0;
    display: grid;
    visibility: hidden;
    place-items: center;
    padding: 120px 30px 80px;
    background: var(--burgundy-deep);
    color: var(--ivory);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 0.4s ease, transform 0.5s var(--ease), visibility 0.4s ease;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .site-nav__link {
    padding: 12px 0;
    font-family: var(--serif);
    font-size: clamp(2.3rem, 8vw, 4.5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .site-nav__link::after { bottom: 8px; }
  .nav-open .site-header { color: var(--ivory); }
  .nav-open .site-header.is-scrolled { background: transparent; box-shadow: none; }
  .nav-open .brand__tag { color: var(--gold-light) !important; }

  .section-head,
  .intro-grid,
  .stay-overview,
  .gallery-intro,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .intro-sticky,
  .manifesto__label { position: static; }

  .hero__visual { grid-template-columns: 0.65fr 1.35fr; }
  .hero__panel--right { display: none; }
  .hero__content { padding-bottom: 44px; }
  .hero__bottom { grid-template-columns: 1fr; }
  .hero__actions { justify-content: flex-start; }
  .hero__scroll { display: none; }

  .fact-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .fact-card:nth-child(2) { border-right: 0; }
  .fact-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .story-card:nth-child(1),
  .story-card:nth-child(2),
  .story-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 680px;
    margin-top: 0;
  }

  .location-grid,
  .about-preview,
  .room-row,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .room-row:nth-child(even) .room-row__media { order: 0; }
  .about-preview__visual { min-height: 600px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .travel-tips { grid-template-columns: repeat(2, 1fr); }
  .travel-tip:last-child { grid-column: 1 / -1; }

  .gallery-grid { grid-auto-rows: 70px; }
  .gallery-item:nth-child(1) { grid-column: 1 / 8; }
  .gallery-item:nth-child(2) { grid-column: 8 / 13; }
}

@media (max-width: 700px) {
  :root {
    --container: min(90vw, 620px);
    --narrow: min(88vw, 620px);
    --radius-lg: 24px;
  }

  body { padding-bottom: 80px; }
  .site-shell::before { opacity: 0.025; }
  .availability-bar { min-height: 32px; font-size: 0.56rem; letter-spacing: 0.1em; }
  .availability-bar span { display: none; }
  .site-header { top: 32px; }
  .site-header.is-scrolled { top: 0; }
  .brand__mark { width: 36px; }
  .brand__name { font-size: 1.08rem; }
  .brand__tag { font-size: 0.39rem; }

  .section { padding: 84px 0; }
  .section--compact { padding: 64px 0; }
  .section-title { font-size: clamp(3rem, 14vw, 5rem); }

  .button { min-height: 54px; width: 100%; padding-inline: 20px; }
  .button-group { width: 100%; }

  .hero { min-height: 100svh; }
  .hero__visual { grid-template-columns: 1fr; }
  .hero__panel--left,
  .hero__panel--right { display: none; }
  .hero__panel--center img { object-position: center 50%; }
  .hero::before { background: linear-gradient(180deg, rgba(18, 5, 9, 0.22) 10%, rgba(18, 5, 9, 0.5) 48%, rgba(18, 5, 9, 0.94) 100%); }
  .hero__content { justify-content: flex-end; padding-top: 150px; padding-bottom: 40px; }
  .hero__meta { gap: 10px; font-size: 0.6rem; }
  .hero__meta span:not(:last-child)::after { margin-left: 10px; }
  .hero__title { font-size: clamp(3.7rem, 18vw, 6.6rem); }
  .hero__bottom { margin-top: 18px; gap: 22px; }
  .hero__copy { font-size: 0.96rem; }
  .hero__actions .button--outline-light { display: none; }

  .fact-card { min-height: 140px; padding: 24px 20px; }
  .fact-card__icon { top: 18px; right: 16px; }

  .story-cards { gap: 14px; }
  .story-card:nth-child(1),
  .story-card:nth-child(2),
  .story-card:nth-child(3) { min-height: 560px; }
  .story-card__content { padding: 28px; }
  .story-card__film { display: none; }

  .spaces-rail { gap: 14px; padding-inline: 5vw; }
  .space-card,
  .space-card:nth-child(even) { width: 82vw; height: 66vh; min-height: 520px; margin-top: 0; }

  .amenity-grid,
  .audience-grid,
  .full-amenities,
  .rules-grid,
  .place-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card { min-height: 190px; }
  .audience-card { min-height: 300px; }
  .location-grid { min-height: auto; }
  .location-map,
  .location-map iframe { min-height: 420px; }
  .location-map__overlay { right: 12px; bottom: 12px; left: 12px; padding: 14px; }
  .location-map__overlay p { display: none; }
  .location-content { padding: 38px 26px; }
  .location-item { grid-template-columns: 38px 1fr; }
  .location-item__tag { display: none; }

  .review-card { min-height: 520px; padding: 50px 6vw; }
  .review-card blockquote { font-size: clamp(2rem, 9.5vw, 3.6rem); }

  .about-preview__visual { min-height: 480px; }
  .about-preview__image-main { right: 0; width: 78%; height: 76%; }
  .about-preview__image-small { width: 58%; height: 45%; border-width: 7px; }
  .about-preview__badge { width: 110px; height: 110px; }
  .about-preview__badge strong { font-size: 1.8rem; }

  .faq-question { gap: 14px; padding: 22px 0; }
  .faq-question span:first-child { font-size: 1.45rem; }
  .faq-question__icon { width: 32px; height: 32px; }

  .final-cta { min-height: 660px; }
  .final-cta::after { inset: 12px; }
  .final-cta h2 { font-size: clamp(4rem, 18vw, 7.2rem); }

  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-bottom: 110px; }
  .mobile-booking-bar { display: flex; }

  .inner-hero { min-height: 82svh; }
  .inner-hero__content { padding-bottom: 48px; }
  .inner-hero__content h1 { font-size: clamp(4rem, 18vw, 7rem); }

  .stay-stat-list { grid-template-columns: 1fr 1fr; }
  .room-row { min-height: auto; }
  .room-row__media { min-height: 500px; }
  .room-row__content { padding: 38px 26px; }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 68vh;
    min-height: 500px;
  }
  .gallery-item__meta { transform: none; opacity: 1; }
  .lightbox__nav { top: auto; bottom: 18px; }
  .lightbox__nav--prev { left: calc(50% - 62px); transform: rotate(180deg); }
  .lightbox__nav--next { right: calc(50% - 62px); transform: none; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__caption { bottom: -34px; }

  .neighborhood-map-card iframe { height: 58vh; min-height: 480px; }
  .neighborhood-map-card__footer { align-items: flex-start; flex-direction: column; padding: 24px; }
  .travel-tips { grid-template-columns: 1fr; }
  .travel-tip:last-child { grid-column: auto; }

  .manifesto__text { font-size: clamp(2.8rem, 12vw, 4.6rem); }
  .brand-lockup { min-height: 360px; padding: 28px; }

  .contact-card { min-height: 300px; }
  .legal-page { padding-top: 150px; }

  .preloader__mark { width: 74px; }
}

@media (max-width: 420px) {
  .brand__tag { display: none; }
  .fact-card__value { font-size: 2.4rem; }
  .stay-stat { padding: 20px 16px; }
  .stay-stat strong { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none; }
  .page-transition { display: none; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
}

/* Solid header variant for light-background utility pages */
.site-header--solid {
  background: rgba(246, 240, 232, 0.94);
  color: var(--burgundy-deep);
  box-shadow: 0 8px 35px rgba(43, 11, 20, 0.07);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.site-header--solid .brand__tag { color: var(--burgundy-soft); }
.site-header--solid .header-cta { border-color: var(--burgundy); color: var(--burgundy); }
.site-header--solid .header-cta:hover { color: var(--burgundy-deep); }
