/* ============================================================
   AMARI V3 — Design System
   Brand/story-driven direction
   ============================================================ */

:root {
  /* Color */
  --bone: #FAF7F2;
  --ivory: #FFFFFF;
  --ink: #1B2A2E;
  --graphite: #4A5458;
  --mist: #8A9197;
  --hairline: #E5DED2;
  --bay: #2F5D5C;
  --bay-700: #24484A;
  --limestone: #E8DFCF;
  --palm: #4A6B3F;
  --sunset: #D97E4A;

  /* Typography */
  --ff-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --maxw: 1280px;
  --maxw-text: 1040px;
  --maxw-narrow: 720px;
  --pad-x: clamp(20px, 5vw, 48px);
  --section-py: clamp(64px, 10vw, 120px);

  /* Radius */
  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 400;
}

h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}

h3 {
  font-size: clamp(22px, 2.5vw, 30px);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.overline {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0 0 18px;
}

.lede {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  color: var(--ink);
  font-style: italic;
  font-weight: 400;
}

.text-large { font-size: 18px; line-height: 1.6; }
.text-center { text-align: center; }
.text-muted { color: var(--graphite); }

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.container--text { max-width: var(--maxw-text); }
.container--narrow { max-width: var(--maxw-narrow); }

.section {
  padding: var(--section-py) 0;
}
.section--alt { background: var(--limestone); }
.section--dark { background: var(--ink); color: var(--ivory); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--ivory); }
.section--dark .overline { color: rgba(255,255,255,0.7); }

.section__header { margin-bottom: clamp(40px, 6vw, 72px); }
.section__header--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
  white-space: nowrap;
}

.btn--sm { padding: 10px 20px; font-size: 12px; }
.btn--lg { padding: 18px 40px; font-size: 14px; }

.btn-primary {
  background: var(--bay);
  color: var(--ivory);
  border-color: var(--bay);
}
.btn-primary:hover {
  background: var(--bay-700);
  border-color: var(--bay-700);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 0;
  border: none;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  padding-bottom: 4px;
}
.btn-ghost:hover { color: var(--bay); border-color: var(--bay); }

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

/* ============================================================
   UTILITY HEADER (Vivere Hospitality bar)
   ============================================================ */

.utility {
  background: var(--ink);
  color: var(--ivory);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 100;
}

.utility__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px var(--pad-x);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.utility__group {
  position: relative;
}

.utility__trigger {
  background: none;
  border: none;
  color: var(--ivory);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.utility__trigger::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 200ms var(--ease);
}

.utility__group.is-open .utility__trigger::after {
  transform: rotate(-135deg) translateY(2px);
}

.utility__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--ivory);
  color: var(--ink);
  min-width: 280px;
  padding: 12px 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-radius: var(--r-md);
  text-transform: none;
  letter-spacing: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease), visibility 200ms;
}

.utility__group.is-open .utility__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.utility__item {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--ink);
  border-left: 2px solid transparent;
  transition: background 150ms var(--ease), border-color 150ms var(--ease);
}
.utility__item:hover { background: var(--bone); border-left-color: var(--bay); }

.utility__item--current {
  background: var(--bone);
  border-left-color: var(--bay);
  font-weight: 500;
  cursor: default;
}
.utility__item--current small { display: block; font-size: 11px; color: var(--graphite); font-weight: 400; margin-top: 2px; letter-spacing: 0.04em; }

.utility__item--disabled {
  color: var(--mist);
  cursor: not-allowed;
}
.utility__item--disabled small { display: block; font-size: 11px; margin-top: 2px; }

/* ============================================================
   PROPERTY NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--bone);
  border-bottom: 1px solid var(--hairline);
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
}

.nav--transparent {
  background: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: var(--util-h, 38px);
  left: 0;
  right: 0;
}

.nav--transparent .nav__link { color: var(--ivory); }
.nav--transparent .nav__logo--dark { display: none; }
.nav--transparent .nav__logo--light { display: block; }

.nav:not(.nav--transparent) .nav__logo--dark { display: block; }
.nav:not(.nav--transparent) .nav__logo--light { display: none; }

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav__logo img {
  height: 64px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  transition: color 150ms var(--ease);
  position: relative;
}

.nav__link:hover { color: var(--bay); }
.nav__link--active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
}

.nav__cta { margin-left: 8px; }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2F5D5C 0%, #1B2A2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: var(--ff-display);
  font-size: 24px;
  font-style: italic;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) 80px;
}

.hero__content .overline {
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.hero__title {
  color: var(--ivory);
  max-width: 900px;
  font-size: clamp(44px, 7vw, 96px);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 32px;
}

/* ============================================================
   POSITIONING BAND
   ============================================================ */

.positioning {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
}

.positioning p {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto;
}

/* ============================================================
   FEATURE SPLIT (A. Cliff Kitchen, Guide anchor)
   ============================================================ */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.feature--reverse .feature__image { order: 2; }

.feature__image {
  aspect-ratio: 4/5;
  background: var(--limestone);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}

.feature__content { padding: 12px 0; }
.feature__content h2 { margin-bottom: 20px; }
.feature__content p { max-width: 480px; margin-bottom: 28px; }

.feature__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.feature__bullets li {
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  font-size: 15px;
}
.feature__bullets li:last-child { border-bottom: 1px solid var(--hairline); }

/* ============================================================
   WALKING DISTANCE / CHIPS
   ============================================================ */

.walking { text-align: center; }

.walking h2 { margin-bottom: 40px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  font-size: 14px;
  color: var(--ink);
}

.chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bay);
}

.map {
  aspect-ratio: 21/9;
  background: var(--limestone);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
}

/* ============================================================
   ROOM MOSAIC (scale-ordered editorial grid)
   ============================================================ */

.room-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.room-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--limestone);
  aspect-ratio: 4/3;
  transition: transform 300ms var(--ease);
  display: block;
}
.room-tile:hover { transform: translateY(-2px); }
.room-tile:hover .room-tile__overlay { background: rgba(0,0,0,0.5); }

/* scale-ordered: smallest (19sqm) to largest (57sqm) */
.room-tile--superior   { grid-column: span 4; aspect-ratio: 4/3; }
.room-tile--queen      { grid-column: span 4; aspect-ratio: 4/3; }
.room-tile--king       { grid-column: span 4; aspect-ratio: 4/3; }
.room-tile--family     { grid-column: span 6; aspect-ratio: 3/2; }
.room-tile--suite-1    { grid-column: span 6; aspect-ratio: 3/2; }
.room-tile--suite-2    { grid-column: span 12; aspect-ratio: 21/9; }

.room-tile__img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(47,93,92,0.15), rgba(27,42,46,0.4));
  color: rgba(255,255,255,0.6);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
}

.room-tile__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  transition: background 300ms var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  color: var(--ivory);
}

.room-tile__overline {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 6px;
}

.room-tile__name {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  margin: 0 0 4px;
  color: var(--ivory);
}

.room-tile__meta {
  font-size: 13px;
  opacity: 0.9;
}

/* ============================================================
   ARRIVAL BAND
   ============================================================ */

.arrival {
  text-align: center;
  padding: clamp(64px, 9vw, 100px) 0;
  background: var(--limestone);
}
.arrival p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.45;
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  text-align: center;
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--ink);
  color: var(--ivory);
}
.final-cta h2 { color: var(--ivory); margin-bottom: 32px; }
.final-cta .overline { color: rgba(255,255,255,0.7); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bay-700);
  color: var(--ivory);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer__col h4 {
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col li { margin-bottom: 10px; font-size: 14px; }
.footer__col a { color: rgba(255,255,255,0.75); transition: color 150ms var(--ease); }
.footer__col a:hover { color: var(--ivory); }

.footer__brands {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 24px;
}

.footer__brands-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer__brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  font-size: 14px;
}
.footer__brands-list a { color: rgba(255,255,255,0.85); }
.footer__brands-list a:hover { color: var(--ivory); }

.footer__contact {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.footer__contact a { color: rgba(255,255,255,0.9); }

.footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumbs {
  padding: 18px 0;
  font-size: 13px;
  color: var(--graphite);
  border-bottom: 1px solid var(--hairline);
}
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; gap: 8px; }
.breadcrumbs li + li::before { content: '/'; margin-right: 8px; color: var(--mist); }
.breadcrumbs a { color: var(--graphite); }
.breadcrumbs a:hover { color: var(--ink); }

/* ============================================================
   SKIP LINK + A11Y
   ============================================================ */

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--ivory);
  z-index: 9999;
}
.skip-link:focus { top: 0; }

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

/* ============================================================
   MOBILE MENU
   ============================================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 200;
  padding: 100px 32px 40px;
  display: none;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  font-family: var(--ff-display);
  font-size: 28px;
  padding: 12px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
}
.mobile-menu__cta { margin-top: auto; padding-top: 24px; }

/* ============================================================
   STICKY MOBILE BOOK BAR
   ============================================================ */

.mobile-book-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--bay);
  z-index: 150;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-book-bar .btn { width: 100%; background: var(--ivory); color: var(--bay); border-color: var(--ivory); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature__image { order: 0; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  .room-tile--superior,
  .room-tile--queen,
  .room-tile--king { grid-column: span 6; }
  .room-tile--family,
  .room-tile--suite-1,
  .room-tile--suite-2 { grid-column: span 12; }
}

@media (max-width: 640px) {
  .utility__inner { justify-content: space-between; gap: 12px; }
  .utility { font-size: 11px; }

  .hero__content { padding-bottom: 48px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; }

  .mobile-book-bar { display: block; }
  body { padding-bottom: 72px; }

  .room-mosaic { gap: 12px; }
}

/* ============================================================
   ROOM FEATURED CARDS (3-up on homepage)
   ============================================================ */

.room-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.room-card {
  background: var(--ivory);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
  color: var(--ink);
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.room-card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(47,93,92,0.12), rgba(27,42,46,0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
}

.room-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.room-card__body .overline { margin-bottom: 8px; }
.room-card__name {
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 6px;
}
.room-card__meta { font-size: 14px; color: var(--graphite); margin-bottom: 18px; }
.room-card .btn-ghost { align-self: flex-start; }

@media (max-width: 900px) {
  .room-featured { grid-template-columns: 1fr; }
}

/* ============================================================
   ROOM LISTING / AMENITY GRID
   ============================================================ */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--hairline);
  border-radius: var(--r-md);
  overflow: hidden;
}

.amenity-item {
  background: var(--bone);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.amenity-item__icon {
  width: 28px;
  height: 28px;
  color: var(--bay);
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity-item__icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.amenity-item__label {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 900px) {
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ROOM DETAIL PAGE COMPONENTS
   ============================================================ */

/* Gallery */
.room-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  aspect-ratio: 16/9;
  max-height: 620px;
  margin-bottom: 0;
}
.room-gallery__item {
  background: var(--limestone);
  border-radius: var(--r-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
}
.room-gallery__item--main {
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(47,93,92,0.15), rgba(27,42,46,0.4));
  color: rgba(255,255,255,0.7);
  font-size: 18px;
}

@media (max-width: 900px) {
  .room-gallery { grid-template-columns: 1fr; grid-template-rows: auto; aspect-ratio: auto; }
  .room-gallery__item:not(.room-gallery__item--main) { display: none; }
  .room-gallery__item--main { aspect-ratio: 4/3; grid-row: auto; }
}

/* Micro-facts bar */
.facts-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: 48px 0;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
}
.fact__value {
  font-family: var(--ff-display);
  font-size: 24px;
  color: var(--ink);
}

@media (max-width: 640px) {
  .facts-bar { gap: 24px 32px; }
  .fact__value { font-size: 20px; }
}

/* Room detail two-column */
.room-detail {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: start;
}
.room-detail__body h2 { margin-top: 0; }
.room-detail__body p { margin-bottom: 18px; }

.room-detail__aside {
  background: var(--limestone);
  border-radius: var(--r-md);
  padding: 32px;
  position: sticky;
  top: 96px;
}
.room-detail__aside h3 {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0 0 18px;
}
.room-detail__aside ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.room-detail__aside li {
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.room-detail__aside li:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.room-detail__aside .btn { width: 100%; }

@media (max-width: 900px) {
  .room-detail { grid-template-columns: 1fr; gap: 32px; }
  .room-detail__aside { position: static; }
}

/* Upsell card */
.upsell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
  border-radius: var(--r-md);
  overflow: hidden;
}
.upsell__image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(47,93,92,0.4), rgba(27,42,46,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-family: var(--ff-display);
  font-style: italic;
}
.upsell__body { padding: 40px; }
.upsell__body .overline { color: rgba(255,255,255,0.7); }
.upsell__body h3 { color: var(--ivory); font-size: 32px; margin: 0 0 14px; }
.upsell__body p { color: rgba(255,255,255,0.85); margin: 0 0 20px; }
.upsell__body .btn-white { display: inline-flex; }

@media (max-width: 900px) {
  .upsell { grid-template-columns: 1fr; }
  .upsell__body { padding: 28px; }
}

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--hairline);
  padding: 24px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--hairline); }
.faq__q {
  font-family: var(--ff-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.faq__q::after {
  content: '+';
  font-family: var(--ff-body);
  font-size: 24px;
  font-weight: 300;
  color: var(--graphite);
  transition: transform 200ms var(--ease);
}
.faq__item[open] .faq__q::after { content: '–'; }
.faq__a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--graphite);
  margin: 8px 0 0;
  padding-right: 44px;
}

