/* =============================================================
   Via Avantgarde Suites — site.css
   Inspired by The Oppenheim Group: white, signature red,
   classical serif logo, clean sans-serif body, generous space.
   ============================================================= */

/* -------------------- design tokens -------------------- */
:root {
  --white:        #ffffff;
  --cream:        #f6f3ec;     /* warm off-white for alternating sections */
  --ink:          #111111;
  --text:         #1a1a1a;
  --text-mid:     #555555;
  --text-dim:     #8a8580;
  --border:       #e6e2d8;
  --border-strong:#cdc8bd;

  /* Signature coastal teal — Far Creek water & the Atlantic Flyway.
     Token names kept as --red* so the whole system retunes from one place. */
  --red:          #0e655d;     /* deep Atlantic teal */
  --red-dark:     #094c45;
  --red-bright:   #1a8b7f;
  --gold:         #c08a3e;     /* Mattamuskeet sunrise — used sparingly */

  --ff-display:   "Cinzel", "Trajan Pro", "Cormorant SC", Georgia, serif;
  --ff-serif:     "Cormorant Garamond", "Cormorant", Georgia, serif;
  --ff-sans:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max-w:        1440px;
  --gutter:       clamp(20px, 3vw, 40px);
  --section-y:    clamp(72px, 6vw, 90px);
}

/* -------------------- reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

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

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* =============================================================
   HEADER — sticky white bar, brand left, nav right
   ============================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: transform .35s ease, background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom-color: var(--border);
}
.site-header.is-hidden { transform: translateY(-105%); }

.brand {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  transition: color .25s ease, text-shadow .25s ease;
}
.site-header.is-solid .brand {
  color: var(--ink);
  text-shadow: none;
}
.brand .va-bullet {
  display: inline-block;
  width: 6px; height: 6px;
  margin: 0 12px 3px;
  background: var(--red);
  vertical-align: middle;
}

.nav-primary {
  display: flex; align-items: center; gap: clamp(20px, 3vw, 44px);
}
.nav-primary a {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease, text-shadow .25s ease;
}
.site-header.is-solid .nav-primary a {
  color: var(--ink);
  text-shadow: none;
}
.nav-primary a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav-primary a:hover,
.nav-primary a.is-active { color: var(--red); }
.nav-primary a:hover::after,
.nav-primary a.is-active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--red); color: #fff;
  padding: 11px 22px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  border: 1px solid var(--red);
  transition: background .2s ease, border-color .2s ease;
}
.nav-cta:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.nav-cta::after { display: none !important; }

/* Language switcher — small flag row in the header (PT / EN / ES / FR / IT) */
.lang-switch {
  display: inline-flex; align-items: center;
  gap: 4px;
  margin: 0 8px;
  padding: 0 8px;
  border-left: 1px solid rgba(255,255,255,0.35);
  border-right: 1px solid rgba(255,255,255,0.35);
  transition: border-color .25s ease;
}
.site-header.is-solid .lang-switch {
  border-left-color: var(--border);
  border-right-color: var(--border);
}
.lang-flag {
  display: inline-flex; align-items: center;
  gap: 3px;
  padding: 4px 1px;
  opacity: 0.5;
  transition: opacity .2s ease, transform .2s ease;
  text-decoration: none;
  line-height: 1;
}
.lang-flag:hover { opacity: 1; transform: translateY(-1px); }
.lang-flag.is-active { opacity: 1; }
.lang-flag.is-active::after {
  content: ""; position: absolute; /* purely decorative; layout uses opacity */
}
.lang-flag svg {
  display: block;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 2px;
}
.lang-flag__code {
  font-family: var(--ff-display);
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0,0,0,0.45);
  transition: color .25s ease, text-shadow .25s ease;
}
.site-header.is-solid .lang-flag__code {
  color: var(--ink);
  text-shadow: none;
}

/* Below ~1100px, hide the per-flag text codes to keep 5 flags from crowding */
@media (max-width: 1100px) {
  .lang-flag__code { display: none; }
}

@media (max-width: 880px) {
  .lang-switch { display: none; }
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; width: 22px; height: 1.5px; background: #fff;
  position: relative; transition: transform .3s ease, top .3s ease, background .25s ease;
}
.site-header.is-solid .menu-toggle span,
.site-header.is-solid .menu-toggle span::before,
.site-header.is-solid .menu-toggle span::after { background: var(--ink); }
.menu-toggle span::before,
.menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top:  7px; }
html.menu-open .menu-toggle span { background: transparent; }
html.menu-open .menu-toggle span::before { top: 0; transform: rotate(45deg); }
html.menu-open .menu-toggle span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-primary, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* mobile fullscreen menu */
.menu-mobile {
  position: fixed; inset: 0; z-index: 45;
  background: var(--white);
  padding: 100px var(--gutter) 48px;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.7,0,.2,1);
  overflow-y: auto;
}
html.menu-open .menu-mobile { transform: translateY(0); }
.menu-mobile a {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(28px, 7vw, 44px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.menu-mobile a:hover { color: var(--red); }
.menu-mobile .menu-meta {
  margin-top: 40px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mid);
}
.menu-mobile .menu-meta a {
  font-family: var(--ff-sans);
  font-size: 12px;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 0;
}

/* =============================================================
   HERO — full-bleed image with bold overlay
   ============================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: var(--ink);
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: #fff;
}
.hero-media {
  position: absolute; inset: 0;
  /* gradient placeholder so the section has tone before the image decodes */
  background: radial-gradient(ellipse at 30% 20%, #2a1d18 0%, #0f0a08 70%, #050302 100%);
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.10) 38%, rgba(0,0,0,0.66) 100%),
    linear-gradient(120deg, rgba(9,55,52,0.42) 0%, rgba(9,55,52,0.06) 52%, rgba(0,0,0,0.30) 100%);
}
@media (max-width: 768px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.14) 32%, rgba(0,0,0,0.70) 100%),
      linear-gradient(120deg, rgba(9,55,52,0.44) 0%, rgba(9,55,52,0.10) 60%, rgba(0,0,0,0.34) 100%);
  }
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 9vh, 110px);
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
}
.eyebrow.on-dark { color: #fff; }
.eyebrow.with-rule {
  position: relative;
  padding-left: 44px;
}
.eyebrow.with-rule::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 32px; height: 1px; background: currentColor;
}

.hero h1 {
  margin-top: 28px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(40px, 7.5vw, 92px);
  line-height: 1.02;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  max-width: 16ch;
}
.hero h1 .red { color: var(--red-bright); }

.hero-dek {
  margin-top: 28px;
  max-width: 52ch;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.hero-ctas {
  margin-top: 36px;
  display: inline-flex; gap: 14px; flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  left: var(--gutter);
  bottom: 24px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 10px;
}
.scroll-hint::before {
  content: ""; display: inline-block; width: 28px; height: 1px;
  background: currentColor;
}

/* =============================================================
   BUTTONS — solid red & ghost outline
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  font-family: var(--ff-sans);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid currentColor;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--red {
  background: var(--red); color: #fff; border-color: var(--red);
}
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.7);
}
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--ghost-dark {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }

/* =============================================================
   GENERIC SECTION
   ============================================================= */
section { position: relative; }
.section { padding: var(--section-y) 0; }
.section--cream { background: var(--cream); }
.section--ink   { background: var(--ink); color: #fff; }
.section--ink .eyebrow { color: var(--red-bright); }

.h-display {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.h-display .red { color: var(--red); }

.dek {
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
}

.divider-rule {
  display: block; width: 56px; height: 2px;
  background: var(--red);
  margin: 28px 0;
}

/* =============================================================
   INTRO / MANIFESTO BLOCK
   ============================================================= */
.intro {
  padding: var(--section-y) var(--gutter) clamp(28px, 3vw, 48px);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.intro .h-display { margin-top: 24px; }
.intro .divider-rule { margin: 28px auto; }
.intro p {
  margin-top: 36px;
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
}
.intro p em {
  font-style: italic;
  color: var(--red);
  /* tighten the gap between italic glyph and the period that follows */
  margin-right: -0.18em;
}
.split-copy p em,
.suite-about em,
.exp-split-copy em,
.guide-body em {
  /* same trim wherever an em-italic sits next to punctuation */
  margin-right: -0.12em;
}

/* =============================================================
   SUITES GRID — listing-card aesthetic (OG hallmark)
   ============================================================= */
.listings {
  padding: 0 var(--gutter) var(--section-y);
  max-width: var(--max-w);
  margin: 0 auto;
}
.listings-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 36px;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.listings-head .h-display { max-width: 16ch; }
.listings-head .meta {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-mid);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px) clamp(24px, 3vw, 40px);
}
.listing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 40px) clamp(20px, 2vw, 28px);
}
@media (max-width: 1100px) { .listing-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .listing-grid, .listing-grid--3 { grid-template-columns: 1fr; } }

.listing-card {
  display: flex; flex-direction: column;
  color: var(--ink);
  transition: transform .4s ease;
}
.listing-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  /* warm dark placeholder so the card doesn't flash as a blank cream box before lazy images load */
  background: linear-gradient(135deg, #2a1d18 0%, #1a1311 60%, #0f0a08 100%);
}
.listing-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.listing-card:hover .listing-card-media img { transform: scale(1.04); }
.listing-card-tag {
  position: absolute; top: 18px; left: 18px;
  background: var(--red); color: #fff;
  padding: 7px 12px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
}
.listing-card-body {
  padding: 24px 4px 0;
  display: flex; flex-direction: column; gap: 10px;
}
.listing-card-loc {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.listing-card h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
}
.listing-card-spec {
  display: flex; gap: 18px;
  margin-top: 4px;
  font-size: 12px; color: var(--text-mid);
  letter-spacing: 0.04em;
}
.listing-card-spec span { display: inline-flex; align-items: center; gap: 6px; }
.listing-card-cta {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 8px;
}
.listing-card-cta .arrow { transition: transform .3s ease; }
.listing-card:hover .listing-card-cta .arrow { transform: translateX(6px); }

/* =============================================================
   SPLIT — image left, copy right (Salvador / location blocks)
   ============================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.split-media {
  background: var(--cream);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-copy {
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.split-copy p {
  margin-top: 24px;
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  color: var(--text);
}
.split-copy p em { color: var(--red); font-style: italic; }
.split-copy .btn { margin-top: 36px; align-self: flex-start; }

/* =============================================================
   PULL QUOTE / RIBBON
   ============================================================= */
.ribbon {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  text-align: center;
}
.ribbon blockquote {
  margin: 0 auto;
  max-width: 22ch;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.ribbon blockquote .red { color: var(--red-bright); }
.ribbon cite {
  display: block;
  margin-top: 28px;
  font-style: normal;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =============================================================
   SUITE PAGE — hero + facts + gallery + amenities
   ============================================================= */
.suite-hero {
  position: relative;
  height: 86vh;
  min-height: 580px;
  background: var(--ink);
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: #fff;
}
.suite-hero .hero-media img { filter: brightness(0.7); }
.suite-hero .hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 100%);
}
.suite-hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(50px, 8vh, 90px);
}
.suite-hero h1 {
  margin-top: 18px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.06;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
}
.suite-hero h1 .red { color: var(--red-bright); }
.suite-hero-dek {
  margin-top: 22px;
  max-width: 60ch;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.7;
}
.suite-hero-ctas { margin-top: 32px; display: inline-flex; gap: 14px; flex-wrap: wrap; }

.spec-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spec-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 720px) { .spec-bar-inner { grid-template-columns: repeat(2, 1fr); } }
.spec {
  padding: 36px 18px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.spec:last-child { border-right: 0; }
@media (max-width: 720px) {
  .spec:nth-child(2) { border-right: 0; }
  .spec:nth-child(1), .spec:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.spec-n {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.spec-label {
  margin-top: 8px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 600;
}

.suite-about {
  padding: var(--section-y) var(--gutter);
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (max-width: 880px) { .suite-about { grid-template-columns: 1fr; } }
.suite-about .h-display { max-width: 12ch; }
.suite-about p {
  font-family: var(--ff-serif);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.65;
  color: var(--text);
}
.suite-about p + p { margin-top: 20px; }
.lang-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 36px 0;
}
.lang-divider span {
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--text-dim);
}
.lang-divider::before, .lang-divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.suite-about p.en { color: var(--text-mid); font-size: clamp(16px, 1.2vw, 19px); }

.highlights {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
@media (max-width: 600px) { .highlights { grid-template-columns: 1fr; } }
.highlights li {
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.highlights li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 10px; height: 1px; background: var(--red);
}

/* GALLERY */
.gallery {
  padding: var(--section-y) var(--gutter);
  background: var(--cream);
}
.gallery-head {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--white);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.gallery-item:hover img { transform: scale(1.04); }

/* AMENITIES */
.amenities {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.amenities-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.amenities-head .meta {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-mid);
}
.amenities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 36px;
}
@media (max-width: 760px) { .amenities-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amenities-list { grid-template-columns: 1fr; } }
.amenities-list li {
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

/* CTA */
.cta {
  background: var(--ink);
  color: #fff;
  padding: clamp(64px, 7vw, 90px) var(--gutter);
  text-align: center;
}
.cta .h-display { color: #fff; max-width: 22ch; margin: 24px auto 0; }
.cta .h-display .red { color: var(--red-bright); }
.cta-sub {
  margin-top: 28px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
}
.cta-actions { margin-top: 44px; display: inline-flex; gap: 14px; flex-wrap: wrap; }

/* SEARCH BAR (Hostex search widget — top of homepage + reservar page) */
.search-bar {
  padding: clamp(36px, 5vw, 56px) var(--gutter);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.search-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.search-bar .eyebrow { display: block; margin-bottom: 18px; }

/* Dedicated reservar page header */
.search-bar--page {
  padding: clamp(80px, 9vw, 120px) var(--gutter) clamp(40px, 5vw, 56px);
  border-bottom: none;
}
.search-bar-sub {
  margin-top: 22px;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--text-mid);
}

/* SUITE BOOKING (per-listing Hostex widget — placed right below hero/spec-bar) */
.suite-booking {
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.suite-booking--top {
  padding-top: clamp(36px, 4vw, 56px);
}
.suite-booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.suite-booking .eyebrow { display: block; margin-bottom: 24px; }
.suite-booking-sub {
  margin: 22px auto 0;
  max-width: 56ch;
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.6;
  color: var(--text-mid);
}
.suite-booking-widget {
  margin: 0 auto;
  max-width: 880px;
}
hostex-booking-widget {
  display: block;
  width: 100%;
}

/* RESULTS (reservar page) */
.results {
  padding: 0 var(--gutter) clamp(80px, 12vw, 140px);
  background: #fff;
}
.results-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Hostex web components — let them flex full width of their container */
hostex-search-widget,
hostex-search-result-widget {
  display: block;
  width: 100%;
}

/* RELATED */
.related {
  padding: var(--section-y) var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.related-head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }

/* =============================================================
   FOOTER — black with red accent rule
   ============================================================= */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) var(--gutter) 0;
}
.footer-top { border-top: 2px solid var(--red); padding-top: 48px; }
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #fff;
}
.footer-brand .va-bullet {
  display: inline-block; width: 6px; height: 6px;
  background: var(--red); margin: 0 10px 3px;
  vertical-align: middle;
}
.footer-tag {
  margin-top: 18px;
  font-family: var(--ff-serif);
  font-size: 17px; line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 38ch;
}

.footer-col h4 {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
  color: var(--red-bright);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col ul a:hover { color: #fff; }

.footer-legal {
  max-width: var(--max-w);
  margin: 64px auto 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
.footer-legal a { color: rgba(255,255,255,0.75); }
.footer-legal a:hover { color: var(--red-bright); }

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal, .reveal-scale {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal-scale { transform: scale(0.985); }
.reveal.is-in, .reveal-scale.is-in {
  opacity: 1; transform: none;
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* spacer for pages that don't open with full-bleed hero */
.spacer-top { padding-top: clamp(120px, 14vh, 180px); }

/* =============================================================
   FIRST-VISIT INTRO — cinematic Hollywood title card
   Two black panels meeting at center, brand reveals letter by
   letter, red hairline draws, then panels split open like stage
   curtains revealing the page underneath. Shown once per session.
   ============================================================= */
html.intro-seen .va-intro { display: none !important; }
html.intro-active,
html.intro-active body { overflow: hidden; }

.va-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: auto;
  background: transparent;
}

.va-intro__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.2%;
  background:
    radial-gradient(ellipse 120% 80% at center, #141414 0%, #060606 60%, #000 100%);
  z-index: 1;
  transition: transform 1.15s cubic-bezier(.76,0,.24,1);
  will-change: transform;
}
.va-intro__panel--left  { left: 0; }
.va-intro__panel--right { right: 0; }

.va-intro__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 38%, rgba(0,0,0,0.55) 100%);
}

/* Cinematic light streak — slow horizontal sheen across the title */
.va-intro__grain {
  position: absolute;
  left: -25%; right: -25%;
  top: 38%; height: 28%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, transparent 42%, rgba(255,255,255,0.04) 50%, transparent 58%, transparent 100%);
  transform: translateX(-30%);
  animation: vaIntroSheen 4.2s ease-in-out 600ms infinite;
}

.va-intro__stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 26px);
  padding: 0 24px;
  text-align: center;
  color: #f6f3ec;
  transition: opacity 380ms ease;
}

.va-intro__kicker {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.55);
  padding-left: 0.5em;
  opacity: 0;
  transform: translateY(8px);
  animation: vaIntroFadeUp 750ms cubic-bezier(.2,.7,.2,1) 250ms forwards;
}

.va-intro__brand {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(20px, 5.6vw, 76px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f6f3ec;
  display: inline-flex;
  align-items: center;
  padding-left: 0.28em;
  white-space: nowrap;
  text-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 0 28px rgba(26,139,127,0.12);
}
@media (min-width: 720px) {
  .va-intro__brand { letter-spacing: 0.34em; padding-left: 0.34em; }
}
.va-intro__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  animation: vaIntroWord 1100ms cubic-bezier(.2,.7,.2,1) 600ms forwards;
}
.va-intro__word--two {
  animation-delay: 850ms;
}
.va-intro__bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  margin: 0 clamp(14px, 2.2vw, 28px) 8px;
  vertical-align: middle;
  opacity: 0;
  transform: scale(0.2) rotate(45deg);
  box-shadow: 0 0 14px rgba(26,139,127,0.55);
  animation: vaIntroBullet 650ms cubic-bezier(.2,.7,.2,1) 1200ms forwards;
}

.va-intro__rule {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--red-bright) 50%, transparent 100%);
  animation: vaIntroRule 850ms cubic-bezier(.65,.05,.35,1) 1500ms forwards;
}

.va-intro__tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(13px, 1.7vw, 18px);
  letter-spacing: 0.2em;
  color: rgba(246,243,236,0.78);
  padding-left: 0.2em;
  opacity: 0;
  transform: translateY(8px);
  animation: vaIntroFadeUp 800ms cubic-bezier(.2,.7,.2,1) 1850ms forwards;
}

/* Exit: stage fades, panels slide off-screen left/right */
.va-intro.is-leaving .va-intro__stage    { opacity: 0; transition-duration: 320ms; }
.va-intro.is-leaving .va-intro__panel--left  { transform: translateX(-101%); }
.va-intro.is-leaving .va-intro__panel--right { transform: translateX( 101%); }
.va-intro.is-leaving .va-intro__vignette,
.va-intro.is-leaving .va-intro__grain { opacity: 0; transition: opacity 600ms ease; }

.va-intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes vaIntroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes vaIntroWord {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes vaIntroBullet {
  60%  { transform: scale(1.25) rotate(45deg); opacity: 1; }
  100% { transform: scale(1)    rotate(45deg); opacity: 1; }
}
@keyframes vaIntroRule {
  to { width: clamp(180px, 22vw, 300px); }
}
@keyframes vaIntroSheen {
  0%   { transform: translateX(-40%); }
  60%  { transform: translateX(60%); }
  100% { transform: translateX(60%); }
}

@media (prefers-reduced-motion: reduce) {
  .va-intro__kicker,
  .va-intro__word,
  .va-intro__bullet,
  .va-intro__rule,
  .va-intro__tagline { animation-duration: 1ms; animation-delay: 0ms; }
  .va-intro__panel { transition-duration: 200ms; }
  .va-intro__grain { animation: none; }
}

/* =============================================================
   PAGE-TO-PAGE TRANSITION — cream curtain slides up from bottom,
   red hairline draws across, then reveals upward on new page load
   ============================================================= */
.va-curtain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: var(--cream);
  transform: translateY(100%);
  transition: transform .65s cubic-bezier(.76,0,.24,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.va-curtain::before {
  content: "";
  width: 220px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .5s ease .18s;
}
.va-curtain::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -4px 0 0 110px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity .3s ease .35s, transform .4s cubic-bezier(.2,.7,.2,1) .35s;
}
.va-curtain.is-covering { transform: translateY(0); }
.va-curtain.is-covering::before { transform: scaleX(1); }
.va-curtain.is-covering::after  { opacity: 1; transform: scale(1); }
.va-curtain.is-revealing {
  transform: translateY(-100%);
  transition: transform .75s cubic-bezier(.76,0,.24,1) .05s;
}

@media (prefers-reduced-motion: reduce) {
  html::before, html::after, body::before {
    animation: vaLoaderFade 200ms ease forwards !important;
  }
  .va-curtain, .va-curtain::before, .va-curtain::after { transition: none; }
}

/* ====================== EXPERIENCE GUIDE (long-form body) ====================== */
.guide-body {
  font-family: var(--ff-serif);
  color: var(--ink);
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.75;
}
.guide-body > * + * { margin-top: 1.1em; }
.guide-body h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 2.4em 0 .4em;
  padding-top: 1em;
  border-top: 1px solid rgba(0,0,0,.08);
}
.guide-body h3:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.guide-body h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.3;
  color: var(--ink);
  margin: 1.6em 0 .35em;
}
.guide-body p { margin: 0; }
.guide-body a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.guide-body a:hover { color: var(--red-dark); }
.guide-body ul, .guide-body ol {
  margin: 0;
  padding-left: 1.4em;
}
.guide-body li + li { margin-top: .35em; }
.guide-body strong { font-weight: 600; color: var(--ink); }
.guide-body em { font-style: italic; }
.guide-body figure {
  margin: 2.4em 0;
}
.guide-body figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.guide-body figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mid);
  font-style: italic;
  letter-spacing: .01em;
}
.guide-body .guide-callout {
  background: #fff;
  border-left: 3px solid var(--red);
  padding: 18px 22px;
  margin: 1.8em 0;
  font-size: clamp(16px, 1.15vw, 17px);
}
.guide-body .guide-callout strong:first-child {
  display: block;
  font-family: var(--ff-sans, system-ui, sans-serif);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.guide-body .guide-tldr {
  background: var(--ink);
  color: #f6f3ee;
  padding: 28px 32px;
  border-radius: 4px;
  margin: 0 0 2em;
  font-size: clamp(15px, 1.05vw, 16px);
  line-height: 1.65;
}
.guide-body .guide-tldr h4 { color: #fff; margin-top: 0; }
.guide-body .guide-tldr a { color: #ffd9a8; }
.guide-body .guide-tldr strong { color: #fff; }

/* =============================================================
   HOME — trust band (between hero and intro)
   Three pillars; flush with section gutters; serif headlines.
   ============================================================= */
.trust-band {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(40px, 6vh, 64px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.trust-pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0;
}
.trust-pillar h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0;
}
.trust-pillar p {
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin: 0;
}
.trust-pillar::before {
  content: "";
  width: 28px; height: 1px; background: var(--red);
  margin-bottom: 10px;
}
@media (max-width: 760px) {
  .trust-band { grid-template-columns: 1fr; gap: 22px; padding: 32px var(--gutter); }
}

/* =============================================================
   HOME — listing card "From R$ X/night" badge
   ============================================================= */
.listing-card-rate {
  display: block;
  margin-top: 6px;
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}

/* =============================================================
   HOME — FAQ accordion (before the final CTA)
   ============================================================= */
.faq {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(60px, 9vh, 110px) var(--gutter);
}
.faq-head {
  margin-bottom: 36px;
}
.faq-head h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 12px 0 0;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.12);
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--ff-sans);
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a {
  padding: 0 0 22px;
  font-family: var(--ff-serif);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: var(--text-mid);
  max-width: 70ch;
}

/* =============================================================
   STICKY mobile booking pill
   ============================================================= */
.sticky-book {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  background: var(--red);
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  display: none;   /* hidden until JS reveals on scroll */
}
.sticky-book.is-visible { display: inline-flex; align-items: center; gap: 8px; }
.sticky-book::before {
  content: "→";
  font-size: 16px;
  display: inline-block;
  transform: translateY(-1px);
}
@media (min-width: 760px) {
  /* desktop already has header BOOK button; keep pill mobile-only */
  .sticky-book { display: none !important; }
}

/* =============================================================
   CINEMATIC SUITE PAGE — Aman / Belmond register
   Dark, slow, no UI chrome. Scoped under .cine so the rest of
   the site keeps its white-cream identity.
   ============================================================= */

.cine {
  --cine-bg:        #0b0b0b;
  --cine-bg-2:      #131312;
  --cine-ink:       #f4efe5;
  --cine-mute:      rgba(244, 239, 229, 0.62);
  --cine-dim:       rgba(244, 239, 229, 0.34);
  --cine-rule:      rgba(244, 239, 229, 0.14);
  --cine-accent:    #2aa597;
  --cine-cinz:      var(--ff-display);
  --cine-serif:     var(--ff-serif);
  --cine-sans:      var(--ff-sans);
  --cine-gutter:    clamp(24px, 5vw, 80px);
  --cine-section-y: clamp(96px, 12vw, 180px);

  background: var(--cine-bg);
  color: var(--cine-ink);
  position: relative;
  isolation: isolate;
}

body:has(.cine) .site-header.is-solid {
  background: rgba(11, 11, 11, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: rgba(244, 239, 229, 0.08);
}
body:has(.cine) .site-header.is-solid .brand,
body:has(.cine) .site-header.is-solid .nav-primary a {
  color: var(--cine-ink);
  text-shadow: none;
}

/* --- typography primitives --- */
.cine .cine-eyebrow {
  display: inline-block;
  font-family: var(--cine-sans);
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cine-mute);
}
.cine .cine-eyebrow--ondark { color: var(--cine-mute); }
.cine .cine-h1 {
  margin: 0;
  font-family: var(--cine-cinz);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.04;
  color: var(--cine-ink);
}
.cine .cine-h1__name {
  display: block;
  font-size: clamp(38px, 6.4vw, 84px);
}
.cine .cine-h1__sub {
  display: block;
  margin-top: 6px;
  font-family: var(--cine-serif);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.06em;
  color: var(--cine-mute);
  text-transform: none;
}
.cine .cine-h2 {
  margin: 0;
  font-family: var(--cine-cinz);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 58px);
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cine-ink);
}
.cine .cine-h2__faint { color: var(--cine-mute); font-weight: 300; }
.cine .cine-dek {
  margin: 22px 0 0;
  font-family: var(--cine-serif);
  font-style: italic;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.65;
  color: var(--cine-mute);
  max-width: 52ch;
}
.cine .cine-hairline {
  display: block;
  margin: 28px 0 0;
  width: 64px;
  height: 1px;
  background: var(--cine-accent);
}
.cine .cine-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--cine-sans);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cine-ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--cine-rule);
  transition: color .3s ease, border-color .3s ease, gap .3s ease;
}
.cine .cine-link:hover { color: var(--cine-accent); border-color: var(--cine-accent); gap: 22px; }
.cine .cine-link__arrow { transition: transform .3s ease; }
.cine .cine-link:hover .cine-link__arrow { transform: translateX(4px); }
.cine .cine-link--small {
  font-size: 11px;
  letter-spacing: 0.28em;
  padding: 10px 0;
}

/* --- HERO (Ken Burns) --- */
.cine .cine-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}
.cine .cine-hero__media { position: absolute; inset: 0; overflow: hidden; }
.cine .cine-hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: 50% 55%;
  animation: cine-kenburns 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes cine-kenburns {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(-1.5%, -2%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .cine .cine-hero__img { animation: none; transform: scale(1.04); }
}
.cine .cine-hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(0,0,0,0.65), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.0) 28%, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.78) 100%);
}
.cine .cine-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--cine-gutter) clamp(70px, 11vh, 130px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}
.cine .cine-hero__inner .cine-eyebrow { color: rgba(255,255,255,0.78); }
.cine .cine-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 36px);
  margin-top: 14px;
  font-family: var(--cine-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cine-mute);
}
.cine .cine-hero__inner .cine-link { align-self: flex-start; margin-top: 8px; }

.cine .cine-scrollhint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--cine-sans);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.cine .cine-scrollhint__tick {
  width: 1px; height: 38px;
  background: rgba(255,255,255,0.45);
  position: relative;
  overflow: hidden;
}
.cine .cine-scrollhint__tick::after {
  content: "";
  position: absolute; left: 0; top: -38px;
  width: 1px; height: 38px;
  background: var(--cine-accent);
  animation: cine-tick 2.4s ease-in-out infinite;
}
@keyframes cine-tick {
  0%   { top: -38px; }
  60%  { top: 38px; }
  100% { top: 38px; }
}

/* --- CHAPTER FRAME --- */
.cine .cine-ch {
  position: relative;
  padding: var(--cine-section-y) var(--cine-gutter);
  border-top: 1px solid var(--cine-rule);
}
.cine .cine-ch + .cine-ch { border-top: none; }
.cine .cine-ch__rail {
  position: absolute;
  left: var(--cine-gutter);
  top: calc(var(--cine-section-y) - 18px);
  display: flex;
  align-items: center;
  gap: 14px;
}
.cine .cine-ch__num {
  font-family: var(--cine-cinz);
  font-size: 13px;
  letter-spacing: 0.34em;
  color: var(--cine-accent);
}
.cine .cine-ch__rule {
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--cine-rule);
}
.cine .cine-ch__head { max-width: 920px; margin: 0 auto; }
.cine .cine-ch__head--center { text-align: center; }
.cine .cine-ch__head .cine-eyebrow { display: block; }
.cine .cine-ch__head .cine-h2 { margin-top: 18px; }
.cine .cine-ch__lead {
  margin: 18px 0 0;
  font-family: var(--cine-serif);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.55;
  color: var(--cine-mute);
  max-width: 36ch;
}
.cine .cine-ch__head--center .cine-ch__lead { margin-left: auto; margin-right: auto; }

/* --- I — ATMOSPHERE --- */
.cine .cine-ch--atmos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(72px, 9vw, 140px);
}
@media (max-width: 860px) {
  .cine .cine-ch--atmos { grid-template-columns: 1fr; padding-left: var(--cine-gutter); }
}
.cine .cine-quote {
  margin: 0;
  border-left: 1px solid var(--cine-rule);
  padding: 6px 0 6px 36px;
}
.cine .cine-quote p {
  margin: 0;
  font-family: var(--cine-serif);
  font-size: clamp(20px, 1.9vw, 28px);
  line-height: 1.55;
  color: var(--cine-ink);
}
.cine .cine-quote cite {
  display: block;
  margin-top: 28px;
  font-family: var(--cine-sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cine-dim);
}

/* --- II — INSIDE (scrollytelling) --- */
.cine .cine-scrolly {
  margin: clamp(48px, 7vw, 96px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  max-width: 1320px;
  align-items: start;
}
@media (max-width: 880px) {
  .cine .cine-scrolly { grid-template-columns: 1fr; }
}
.cine .cine-scrolly__sticky {
  position: sticky;
  top: 12vh;
  height: 76vh;
  min-height: 460px;
  overflow: hidden;
  background: #000;
}
.cine .cine-scrolly__frame {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s cubic-bezier(.4,.0,.2,1), transform 6s linear;
}
.cine .cine-scrolly__frame.is-active {
  opacity: 1;
  transform: scale(1.0);
}
.cine .cine-scrolly__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 9vh, 110px);
  padding: 18vh 0 22vh;
}
@media (max-width: 880px) {
  .cine .cine-scrolly__sticky { position: relative; top: 0; height: 70vh; }
  .cine .cine-scrolly__copy { padding: 32px 0 0; gap: 32px; }
}
.cine .cine-scrolly__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: baseline;
  opacity: .42;
  transition: opacity .9s ease;
}
.cine .cine-scrolly__step.is-active { opacity: 1; }
.cine .cine-scrolly__n {
  font-family: var(--cine-cinz);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--cine-accent);
}
.cine .cine-scrolly__step p {
  margin: 0;
  font-family: var(--cine-serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.55;
  color: var(--cine-ink);
}

/* --- III — A DAY HERE --- */
.cine .cine-ch--day .cine-day {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(48px, 7vw, 96px);
}
@media (max-width: 760px) {
  .cine .cine-ch--day .cine-day { grid-template-columns: 1fr; }
}
.cine .cine-day__pane {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
}
.cine .cine-day__pane img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.78) saturate(1.05);
  transform: scale(1.02);
  transition: filter 1.2s ease, transform 7s linear;
}
.cine .cine-day__pane:hover img {
  filter: brightness(0.95) saturate(1.1);
  transform: scale(1.08);
}
.cine .cine-day__pane figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px clamp(20px, 3vw, 40px);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: var(--cine-ink);
}
.cine .cine-day__label {
  display: block;
  font-family: var(--cine-cinz);
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cine-accent);
  margin-bottom: 10px;
}
.cine .cine-day__pane figcaption p {
  margin: 0;
  font-family: var(--cine-serif);
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 32ch;
}

/* --- IV — GALLERY (editorial bleed) --- */
.cine .cine-ch--gallery {
  padding-left: 0;
  padding-right: 0;
  background: var(--cine-bg-2);
}
.cine .cine-ch--gallery .cine-ch__rail { left: var(--cine-gutter); }
.cine .cine-ch--gallery .cine-ch__head { padding: 0 var(--cine-gutter); }
.cine .cine-bleed {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(8px, 1vw, 16px);
  padding: clamp(48px, 7vw, 96px) clamp(8px, 1vw, 16px) 0;
}
.cine .cine-bleed__item {
  margin: 0;
  overflow: hidden;
  background: #000;
}
.cine .cine-bleed__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter 1.2s ease;
  filter: brightness(0.94);
}
.cine .cine-bleed__item:hover img { transform: scale(1.04); filter: brightness(1.02); }

.cine .cine-bleed__item--bleed  { grid-column: span 12; aspect-ratio: 21 / 9; }
.cine .cine-bleed__item--half-l { grid-column: span 7;  aspect-ratio: 4 / 3; }
.cine .cine-bleed__item--half-r { grid-column: span 5;  aspect-ratio: 4 / 3; }
.cine .cine-bleed__item--tall-l { grid-column: span 5;  aspect-ratio: 3 / 4; }
.cine .cine-bleed__item--tall-r { grid-column: span 7;  aspect-ratio: 3 / 4; }
.cine .cine-bleed__item--wide   { grid-column: span 12; aspect-ratio: 16 / 7; }

@media (max-width: 880px) {
  .cine .cine-bleed { grid-template-columns: 1fr; }
  .cine .cine-bleed__item { grid-column: span 1 !important; aspect-ratio: 4 / 3 !important; }
}

/* --- V — NEIGHBOURHOOD --- */
.cine .cine-quarter {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .cine .cine-quarter { grid-template-columns: 1fr; }
}
.cine .cine-quarter__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}
.cine .cine-quarter__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
}
.cine .cine-quarter__copy .cine-eyebrow { display: block; }
.cine .cine-quarter__copy .cine-h2 { margin-top: 18px; }
.cine .cine-quarter__body {
  margin-top: 20px;
  font-family: var(--cine-serif);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.66;
  color: var(--cine-mute);
  max-width: 44ch;
}

/* --- amenities (fine print) --- */
.cine .cine-amen {
  padding: clamp(56px, 7vw, 96px) var(--cine-gutter);
  background: var(--cine-bg-2);
  border-top: 1px solid var(--cine-rule);
  border-bottom: 1px solid var(--cine-rule);
}
.cine .cine-amen__inner { max-width: 1280px; margin: 0 auto; }
.cine .cine-amen__inner .cine-eyebrow { display: block; margin-bottom: 28px; }
.cine .cine-amen__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 40px;
}
@media (max-width: 880px) { .cine .cine-amen__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cine .cine-amen__list { grid-template-columns: 1fr; } }
.cine .cine-amen__list li {
  font-family: var(--cine-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cine-mute);
  padding: 8px 0;
  border-bottom: 1px solid var(--cine-rule);
}

/* --- VI — RESERVE --- */
.cine .cine-ch--reserve {
  background: var(--cine-bg);
  text-align: center;
}
.cine .cine-reserve__widget {
  max-width: 880px;
  margin: clamp(40px, 6vw, 80px) auto 0;
  text-align: left;
  background: rgba(244, 239, 229, 0.04);
  border: 1px solid var(--cine-rule);
  padding: clamp(20px, 3vw, 36px);
}
.cine hostex-booking-widget { display: block; width: 100%; }
.cine .cine-reserve__alt {
  margin-top: 32px;
  display: inline-flex;
  gap: clamp(20px, 4vw, 56px);
  flex-wrap: wrap;
  justify-content: center;
}

/* --- RELATED --- */
.cine .cine-related {
  padding: var(--cine-section-y) var(--cine-gutter);
  background: var(--cine-bg-2);
  border-top: 1px solid var(--cine-rule);
}
.cine .cine-related__grid {
  margin-top: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) { .cine .cine-related__grid { grid-template-columns: 1fr; } }
.cine .cine-related__card { display: block; color: var(--cine-ink); }
.cine .cine-related__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #000;
}
.cine .cine-related__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter 1s ease;
  filter: brightness(0.88);
}
.cine .cine-related__card:hover .cine-related__media img { transform: scale(1.06); filter: brightness(1.0); }
.cine .cine-related__body { padding: 20px 0 0; }
.cine .cine-related__body .cine-eyebrow { display: block; margin-bottom: 10px; }
.cine .cine-related__body h3 {
  font-family: var(--cine-cinz);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cine-ink);
}
.cine .cine-related__body .cine-link { margin-top: 14px; }

/* --- STICKY DESKTOP RAIL --- */
.cine-rail {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
  padding: 18px 22px 16px;
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border: 1px solid rgba(244, 239, 229, 0.18);
  color: #f4efe5;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.cine-rail.is-visible { display: flex; opacity: 1; transform: translateY(0); }
.cine-rail.is-tucked { opacity: 0; transform: translateY(20px); pointer-events: none; }
.cine-rail__eyebrow {
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244, 239, 229, 0.6);
}
.cine-rail__name {
  font-family: var(--ff-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4efe5;
}
.cine-rail__rate {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(244, 239, 229, 0.78);
}
.cine-rail__btn {
  margin-top: 8px;
  align-self: stretch;
  text-align: center;
  padding: 11px 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--red);
  transition: background .25s ease, color .25s ease;
}
.cine-rail__btn:hover { background: transparent; color: #fff; }
@media (max-width: 880px) { .cine-rail { display: none !important; } }

/* --- SCROLL PROGRESS --- */
.cine-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 60;
  background: transparent;
  pointer-events: none;
}
.cine-progress > span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--cine-accent, #15807a);
  transition: width .12s linear;
}

/* --- slow reveal --- */
.cine .reveal-slow {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s cubic-bezier(.4,.0,.2,1), transform 1.2s cubic-bezier(.4,.0,.2,1);
}
.cine .reveal-slow.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .cine .reveal-slow { opacity: 1; transform: none; transition: none; }
}

/* =============================================================
   HOTEL ENGELHARD — site-specific additions
   (built on the Via Avantgarde design system; coastal palette)
   ============================================================= */

/* Hero: gentle, slow zoom on the still image */
.hero-img {
  animation: he-herozoom 28s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: 50% 60%;
}
@keyframes he-herozoom {
  0%   { transform: scale(1.03); }
  100% { transform: scale(1.13); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; transform: scale(1.04); }
}

/* Reserve band — phone-first booking strip (replaces the OTA widget) */
.reserve-band {
  padding: clamp(44px, 6vw, 76px) var(--gutter);
  background: #fff;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.reserve-inner { max-width: 760px; margin: 0 auto; }
.reserve-band .eyebrow { display: block; margin-bottom: 16px; }
.reserve-lead {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--text-mid);
  max-width: 54ch;
  margin: 0 auto;
}
.reserve-phone {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 56px);
  letter-spacing: 0.05em;
  color: var(--red);
  transition: color .2s ease;
}
.reserve-phone:hover { color: var(--red-dark); }
.reserve-alt {
  margin-top: 18px;
  font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid);
  display: inline-flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; align-items: center;
}
.reserve-alt a { color: var(--red); font-weight: 600; }
.reserve-alt a:hover { color: var(--red-dark); }
.reserve-sep { opacity: .5; }
@media (max-width: 520px) {
  .reserve-sep { display: none; }
  .reserve-alt { flex-direction: column; gap: 5px; }
}

/* Listing card — short serif note under the title */
.listing-card-note {
  font-family: var(--ff-serif);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text-mid);
  margin-top: 2px;
  max-width: 34ch;
}

/* Generic page header (non-hero pages) */
.page-head {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(120px, 15vh, 190px) var(--gutter) clamp(28px, 4vw, 48px);
  text-align: center;
}
.page-head .eyebrow { display: block; }
.page-head .h-display { margin-top: 18px; }
.page-head .divider-rule { margin: 26px auto; }
.page-head .page-dek {
  margin: 8px auto 0;
  max-width: 60ch;
  font-family: var(--ff-serif);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.6;
  color: var(--text-mid);
}

/* Prose band — centred long-form copy on rooms/contact pages */
.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(8px, 2vw, 24px) var(--gutter) var(--section-y);
}
.prose p {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.7;
  color: var(--text);
}
.prose p + p { margin-top: 20px; }
.prose h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 46px 0 14px;
}
.prose em { font-style: italic; color: var(--red); }

/* Room types — honest text cards (no fabricated interiors) */
.roomtypes {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-y);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
@media (max-width: 880px) { .roomtypes { grid-template-columns: 1fr; } }
.roomtype {
  border: 1px solid var(--border);
  background: var(--white);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.roomtype__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1c2b29 0%, #0f1816 100%);
}
.roomtype__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.roomtype:hover .roomtype__media img { transform: scale(1.04); }
.roomtype__n {
  position: absolute; top: 16px; left: 16px;
  background: var(--red); color: #fff;
  padding: 6px 11px;
  font-family: var(--ff-display);
  font-size: 12px; letter-spacing: 0.22em;
}
.roomtype__body {
  padding: 26px 28px 30px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.roomtype h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 25px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}
.roomtype p {
  font-family: var(--ff-serif);
  font-size: 16.5px; line-height: 1.55;
  color: var(--text-mid);
}
.roomtype .roomtype__beds {
  margin-top: auto;
  font-family: var(--ff-sans);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 12px;
}

/* Contact page — info + map */
.contact-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-y);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--ff-sans);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
  margin-top: 28px;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd {
  margin: 8px 0 0;
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--text);
}
.contact-info dd a { color: var(--red); }
.contact-info dd a:hover { color: var(--red-dark); }
.contact-map {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--cream);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Image credits — compact, quiet attribution (CC compliance) */
.credits {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: clamp(40px, 5vw, 64px) var(--gutter);
}
.credits-inner { max-width: var(--max-w); margin: 0 auto; }
.credits h4 {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 600; margin-bottom: 16px;
}
.credits ul {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 4px 32px;
}
@media (max-width: 680px) { .credits ul { grid-template-columns: 1fr; } }
.credits li {
  font-size: 12px; line-height: 1.5; color: var(--text-dim);
}
.credits a { color: var(--text-mid); text-decoration: underline; text-underline-offset: 2px; }
.credits a:hover { color: var(--red); }

/* The cinematic Area page reuses .cine; make its hero use a still image */
.cine .cine-hero__img.is-still { animation: cine-kenburns 36s ease-in-out infinite alternate; }

