/* ==========================================================================
   Nivasa Villas - visual system
   Warm ivory / deep charcoal / muted stone / taupe / subtle champagne
   ========================================================================== */

:root {
  --ivory: #F6F2EB;
  --ivory-soft: #FBF9F4;
  --charcoal: #171716;
  --charcoal-soft: #2A2926;
  --stone: #D8D0C5;
  --taupe: #A99B8B;
  --champagne: #B59B70;
  --champagne-deep: #96794E;
  --white: #FFFFFF;
  --ink: #33312C;
  --ink-soft: #5B574F;
  --line: rgba(23, 23, 22, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --max: 1200px;
  --pad: clamp(20px, 5vw, 56px);
  --radius: 4px;
  --shadow: 0 24px 60px -30px rgba(23, 23, 22, 0.35);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

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

::selection { background: var(--champagne); color: var(--white); }

/* ------------------------------------------------------------------ text */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  color: var(--ink-soft);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin: 0 0 1.1em;
}

.section { padding: clamp(64px, 9vw, 130px) var(--pad); }
.section--tight { padding-top: clamp(40px, 6vw, 80px); }
.section--stone { background: #EFEAE1; }
.section--dark { background: var(--charcoal); color: #EDE9E1; }
.section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--dark .lead, .section--dark p { color: #C9C3B8; }

.container { max-width: var(--max); margin: 0 auto; }
.container--narrow { max-width: 780px; margin: 0 auto; }
.container--wide { max-width: 1440px; margin: 0 auto; }

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; max-width: 640px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--charcoal); color: var(--white); padding: 10px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 17px 34px; border-radius: var(--radius);
  border: 1px solid var(--charcoal);
  background: var(--charcoal); color: var(--ivory);
  cursor: pointer; transition: background 0.35s ease, color 0.35s ease,
    border-color 0.35s ease, transform 0.35s ease;
}
.btn:hover { background: var(--champagne-deep); border-color: var(--champagne-deep); color: var(--white); }

.btn--ghost { background: transparent; color: var(--charcoal); }
.btn--ghost:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.btn--light { background: var(--ivory); border-color: var(--ivory); color: var(--charcoal); }
.btn--light:hover { background: var(--champagne); border-color: var(--champagne); color: var(--charcoal); }

.btn--ghost-light { background: transparent; border-color: rgba(246, 242, 235, 0.5); color: var(--ivory); }
.btn--ghost-light:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }

.btn--small { padding: 12px 22px; font-size: 0.7rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.link-arrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--champagne-deep);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 4px; transition: color 0.3s ease, border-color 0.3s ease;
}
.link-arrow:hover { color: var(--charcoal); border-color: var(--charcoal); }

/* ---------------------------------------------------------------- header */

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(246, 242, 235, 0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease, background 0.4s ease;
}
.header-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad); gap: 20px;
  transition: padding 0.4s ease;
}
.site-header.is-compact .header-inner { padding-top: 8px; padding-bottom: 8px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 44px; height: 44px; border-radius: 50%; transition: width .4s ease, height .4s ease; }
.site-header.is-compact .brand-mark { width: 36px; height: 36px; }
.brand-word {
  font-family: var(--serif); font-size: 1.45rem; color: var(--charcoal);
  letter-spacing: 0.02em; white-space: nowrap;
}
.brand-word em { font-style: italic; color: var(--champagne-deep); }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.btn) {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--ink); position: relative; padding: 6px 0;
}
.main-nav > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--champagne-deep); transition: width 0.35s ease;
}
.main-nav > a:not(.btn):hover::after,
.main-nav > a:not(.btn)[aria-current="page"]::after { width: 100%; }
.nav-cta { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }

/* overlay header over heroes */
.header--overlay:not(.is-compact) {
  background: linear-gradient(rgba(15, 14, 12, 0.45), rgba(15, 14, 12, 0));
  border-bottom-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.header--overlay:not(.is-compact) .brand-word,
.header--overlay:not(.is-compact) .main-nav > a:not(.btn) { color: var(--ivory); }
.header--overlay:not(.is-compact) .brand-word em { color: var(--stone); }
.header--overlay:not(.is-compact) .main-nav > a:not(.btn)::after { background: var(--ivory); }
.header--overlay:not(.is-compact) .nav-toggle span { background: var(--ivory); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--charcoal);
  margin: 6px auto; transition: transform 0.35s ease, opacity 0.35s ease;
}
.nav-open .nav-toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-open .nav-toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--ivory); overflow: hidden;
}
.hero-media, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 14, 12, 0.38) 0%, rgba(15, 14, 12, 0.08) 42%,
    rgba(15, 14, 12, 0.62) 100%);
}
.page-hero::after {
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.55) 0%, rgba(15, 14, 12, 0.15) 55%, rgba(15, 14, 12, 0) 75%),
    linear-gradient(180deg, rgba(15, 14, 12, 0.4) 0%, rgba(15, 14, 12, 0.12) 45%, rgba(15, 14, 12, 0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--max); margin: 0 auto;
  padding: 140px var(--pad) clamp(120px, 16vh, 190px);
}
.hero .eyebrow { color: var(--stone); }
.hero h1 { color: var(--ivory); max-width: 15ch; }
.hero .lead { color: rgba(246, 242, 235, 0.88); max-width: 52ch; margin-bottom: 2em; }

/* page hero (interior pages) */
.page-hero {
  position: relative; min-height: 62vh; display: flex; align-items: flex-end;
  color: var(--ivory); overflow: hidden;
}
.page-hero .hero-content { padding-bottom: clamp(70px, 10vh, 120px); }
.page-hero h1 { max-width: 18ch; }
.page-hero--plain {
  min-height: 0; color: var(--charcoal);
  padding: clamp(150px, 22vh, 220px) var(--pad) clamp(48px, 7vw, 90px);
}
.page-hero--plain h1 { color: var(--charcoal); }
.page-hero--plain .lead { color: var(--ink-soft); }
.page-hero--plain .eyebrow { color: var(--champagne-deep); }
.page-hero--plain::after { display: none; }

/* ---------------------------------------------------------- booking bar */

.booking-bar-wrap { position: relative; z-index: 5; padding: 0 var(--pad); }
.booking-bar {
  max-width: var(--max); margin: -84px auto 0;
  background: var(--ivory-soft); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px clamp(20px, 3vw, 40px);
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 18px;
  align-items: end;
}
.booking-bar .field { margin: 0; }
.booking-bar-note {
  grid-column: 1 / -1; margin: 0; font-size: 0.8rem; color: var(--ink-soft);
}

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font: inherit; color: var(--charcoal);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 10px 2px; border-radius: 0; width: 100%;
  transition: border-color 0.3s ease;
}
.field textarea { border: 1px solid var(--line); padding: 12px; min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--champagne-deep);
}
.field .error { font-size: 0.78rem; color: #9A3B2E; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #9A3B2E; }
.field.invalid .error { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.form-grid .field--full { grid-column: 1 / -1; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success {
  border: 1px solid var(--champagne); background: #F2EDE2;
  padding: 28px; border-radius: var(--radius); text-align: center;
}

/* -------------------------------------------------------------- snapshot */

.snapshot {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.snapshot-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.snapshot-item {
  padding: clamp(28px, 4vw, 52px) 12px; text-align: center;
  border-left: 1px solid var(--line);
}
.snapshot-item:first-child { border-left: 0; }
.snapshot-num {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--charcoal); line-height: 1; display: block;
}
.snapshot-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-soft); display: block; margin-top: 10px;
}

/* ------------------------------------------------------------ editorial */

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px); align-items: center;
}
.split--media-first > .split-media { order: -1; }
.split-media img { width: 100%; border-radius: var(--radius); }
.split-media--tall img { aspect-ratio: 4 / 5; object-fit: cover; }
.split-media--wide img { aspect-ratio: 4 / 3; object-fit: cover; }
.split-copy .btn-row { margin-top: 26px; }

.stat-row {
  display: flex; gap: clamp(24px, 4vw, 56px); flex-wrap: wrap;
  margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line);
}
.stat { min-width: 110px; }
.stat b {
  font-family: var(--serif); font-weight: 500; font-size: 1.9rem;
  color: var(--charcoal); display: block; line-height: 1.1;
}
.stat span { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

/* floors diagram */
.floors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.floor {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; background: var(--ivory-soft);
}
.floor b { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--charcoal); display: block; }
.floor span { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.floor p { margin: 12px 0 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------- cards */

.card-grid { display: grid; gap: 26px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--ivory-soft); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-media { overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.8s ease; }
.card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 0.35em; }
.card-body p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.card-meta {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--champagne-deep); margin-bottom: 10px;
}
.card-body .link-arrow { align-self: flex-start; margin-top: 8px; }

/* rooms list */
.room-row {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 80px); align-items: center;
  padding: clamp(44px, 6vw, 84px) 0; border-bottom: 1px solid var(--line);
}
.room-row:last-child { border-bottom: 0; }
.room-row:nth-child(even) .room-media { order: 2; }
.room-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.room-specs { display: flex; gap: 22px; flex-wrap: wrap; margin: 18px 0 22px; padding: 0; list-style: none; }
.room-specs li {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
}

/* ------------------------------------------------------------ gallery */

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 0 0 40px;
}
.gallery-filters button {
  font: inherit; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer;
  background: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; color: var(--ink-soft);
  transition: all 0.3s ease;
}
.gallery-filters button:hover { border-color: var(--charcoal); color: var(--charcoal); }
.gallery-filters button.active { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.masonry { columns: 3 300px; column-gap: 18px; }
.masonry figure {
  margin: 0 0 18px; break-inside: avoid; position: relative;
  overflow: hidden; border-radius: var(--radius); cursor: zoom-in;
}
.masonry img { width: 100%; transition: transform 0.7s ease; }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 34px 18px 14px;
  font-size: 0.78rem; letter-spacing: 0.06em; color: var(--ivory);
  background: linear-gradient(transparent, rgba(15, 14, 12, 0.72));
  opacity: 0; transition: opacity 0.4s ease;
}
.masonry figure:hover figcaption, .masonry figure:focus-within figcaption { opacity: 1; }
.masonry figure.is-hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  background: rgba(15, 14, 12, 0.94);
  align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 78vh; object-fit: contain; }
.lightbox-caption { color: var(--stone); font-size: 0.85rem; margin-top: 16px; text-align: center; padding: 0 20px; }
.lightbox button {
  position: absolute; background: none; border: 0; color: var(--ivory);
  font-size: 2rem; cursor: pointer; padding: 14px; line-height: 1;
}
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 10px; top: 50%; transform: translateY(-50%); }
.lightbox button:hover { color: var(--champagne); }

/* ---------------------------------------------------------------- faq */

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--charcoal); padding: 26px 44px 26px 0; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; color: var(--champagne-deep);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.45s ease;
}
.faq-a p { padding: 0 40px 26px 0; margin: 0; color: var(--ink-soft); }

/* -------------------------------------------------------------- reviews */

.rating-band { display: flex; align-items: center; gap: clamp(30px, 6vw, 80px); flex-wrap: wrap; }
.rating-big {
  font-family: var(--serif); font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 1; color: var(--charcoal);
}
.rating-stars { color: var(--champagne-deep); font-size: 1.2rem; letter-spacing: 0.2em; }

.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.badge {
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft); background: var(--ivory-soft);
}

/* -------------------------------------------------------------- location */

.place-list { list-style: none; padding: 0; margin: 0; }
.place-list li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 20px 4px; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.place-list li:first-child { border-top: 1px solid var(--line); }
.place-list b { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; color: var(--charcoal); }
.place-list span { font-size: 0.85rem; color: var(--ink-soft); text-align: right; }

.map-embed {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--stone);
}
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

/* -------------------------------------------------------------- misc */

.rule-table { width: 100%; border-collapse: collapse; }
.rule-table th, .rule-table td {
  text-align: left; padding: 16px 8px; border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.rule-table th {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft); width: 200px;
}

.note {
  border-left: 2px solid var(--champagne); padding: 6px 0 6px 20px;
  color: var(--ink-soft); font-size: 0.95rem; margin: 26px 0;
}

.blog-card time { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.5em; }

/* -------------------------------------------------------------- footer */

.site-footer { background: var(--charcoal); color: #C9C3B8; }
.footer-cta {
  text-align: center; padding: clamp(70px, 10vw, 130px) var(--pad);
  border-bottom: 1px solid rgba(246, 242, 235, 0.12);
  max-width: 720px; margin: 0 auto;
}
.footer-cta h2 { color: var(--ivory); }
.footer-cta p { color: #B4AEA2; }
.footer-cta .eyebrow { color: var(--champagne); }
.footer-cta .btn-row { justify-content: center; margin-top: 30px; }

.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  padding: clamp(50px, 7vw, 90px) var(--pad);
}
.footer-grid h3 {
  color: var(--ivory); font-family: var(--sans); font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  margin: 0 0 20px;
}
.footer-legal-head { margin-top: 30px !important; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { font-size: 0.9rem; color: #C9C3B8; transition: color 0.3s ease; }
.footer-grid a:hover { color: var(--ivory); }
.footer-brand img { border-radius: 50%; margin-bottom: 18px; }
.footer-tagline { font-family: var(--serif); font-size: 1.2rem; color: var(--ivory); line-height: 1.4; }
.footer-brand address { font-style: normal; font-size: 0.9rem; line-height: 1.8; margin: 14px 0; }
.footer-brand a { color: var(--ivory); border-bottom: 1px solid rgba(246, 242, 235, 0.3); }

.footer-base {
  border-top: 1px solid rgba(246, 242, 235, 0.12);
  padding: 26px var(--pad) calc(26px + 64px);
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.8rem; color: #8E887C;
}
.footer-base p { margin: 0; }

/* ---------------------------------------------------------- sticky bar */

.sticky-bar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr 1.4fr;
  background: var(--charcoal); border-top: 1px solid rgba(246, 242, 235, 0.15);
}
.sticky-bar a {
  text-align: center; padding: 17px 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ivory);
  border-left: 1px solid rgba(246, 242, 235, 0.15);
}
.sticky-bar a:first-child { border-left: 0; }
.sticky-bar .sticky-primary { background: var(--champagne-deep); }

/* ---------------------------------------------------------- breadcrumbs */

.breadcrumbs { padding: 110px var(--pad) 0; max-width: var(--max); margin: 0 auto; }
.breadcrumbs + .page-hero--plain { padding-top: 26px; }
.breadcrumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0; padding: 0; font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
}
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--taupe); }
.breadcrumbs a { color: var(--champagne-deep); }
.breadcrumbs a:hover { color: var(--charcoal); }
.breadcrumbs [aria-current] { color: var(--ink-soft); }

/* hero pages: breadcrumbs sit above hero, hide default placement */
.body--hero .breadcrumbs { display: none; }

/* ------------------------------------------------------------ animation */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------- responsive */

@media (max-width: 1060px) {
  .main-nav {
    position: fixed; inset: 0; z-index: 105;
    background: var(--charcoal); flex-direction: column;
    align-items: flex-start; justify-content: center; gap: 26px;
    padding: var(--pad);
    transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.7, 0, 0.3, 1);
  }
  .nav-open .main-nav { transform: none; }
  .main-nav > a:not(.btn) {
    font-family: var(--serif); font-size: 2rem; color: var(--ivory);
    letter-spacing: 0;
  }
  .main-nav > a:not(.btn)::after { background: var(--champagne); }
  .main-nav .nav-cta { display: inline-flex; margin-top: 16px; }
  .nav-toggle { display: block; }
  .nav-open .nav-toggle span { background: var(--ivory); }
  .header-cta { display: none; }
}

@media (max-width: 900px) {
  .split, .room-row { grid-template-columns: 1fr; }
  .room-row:nth-child(even) .room-media { order: 0; }
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .snapshot-inner { grid-template-columns: repeat(3, 1fr); }
  .snapshot-item:nth-child(4) { border-left: 0; }
  .snapshot-item { border-top: 1px solid var(--line); }
  .snapshot-item:nth-child(-n+3) { border-top: 0; }
  .booking-bar { grid-template-columns: 1fr 1fr; margin-top: -60px; }
  .floors { grid-template-columns: 1fr; }
}

/* 4-up snapshot variant (landing pages) */
.snapshot-inner--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .snapshot-inner--4 { grid-template-columns: repeat(2, 1fr); }
  .snapshot-inner--4 .snapshot-item { border-top: 1px solid var(--line); }
  .snapshot-inner--4 .snapshot-item:nth-child(-n+2) { border-top: 0; }
  .snapshot-inner--4 .snapshot-item:nth-child(3) { border-left: 0; }
}

@media (max-width: 640px) {
  .card-grid--3, .card-grid--2, .form-grid { grid-template-columns: 1fr; }
  .booking-bar { grid-template-columns: 1fr; padding: 22px; }
  .sticky-bar { display: grid; }
  .site-footer { padding-bottom: 0; }
  .masonry { columns: 2 150px; column-gap: 12px; }
  .masonry figure { margin-bottom: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-content { padding-bottom: 150px; }
  .rating-band { align-items: flex-start; flex-direction: column; gap: 14px; }
}
