/* =============================================
   ATLANTIC PRIVÉ — v4
   Craft-first. Type as structure. Images as atmosphere.
   Brandbook palette: Atlantic Deep / Stone Ivory / Sand Linen / Pine Mist / Bronze Dune
   ============================================= */

:root {
  --ink:      #2E3133;   /* Charcoal Coast — body copy */
  --paper:    #F7F3EE;   /* Stone Ivory — main bg */
  --sand:     #E9E1D4;   /* Sand Linen — cards, warm sections */
  --blue:     #18364A;   /* Atlantic Deep — headings, CTA, nav */
  --blue-dk:  #0f2030;   /* deeper Atlantic — loader, overlays */
  --pine:     #7A8C7B;   /* Pine Mist — subtle accents */
  --bronze:   #B59573;   /* Bronze Dune — premium highlights, hover */
  --muted:    #8E8178;   /* Taupe Shadow — muted text, separators */
  --rule:     rgba(46,49,51,0.08);
}

/* =============================================
   LOADER
   ============================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background-color: #e8e1d6;
  background-image:
    radial-gradient(circle, rgba(24,54,74,0.15) 1px, transparent 1px),
    linear-gradient(160deg, #eee8df 0%, #ddd4c4 50%, #c8d8e4 100%);
  background-size: 18px 18px, 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  pointer-events: all;
}
.loader.is-done { pointer-events: none; }

.loader-icons {
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(24,54,74,0.7);
  opacity: 0;
  transform: scale(0.6);
}

.loader-bar {
  width: min(280px, 60vw);
  height: 1px;
  background: rgba(24,54,74,0.15);
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: rgba(24,54,74,0.5);
  transition: width 0.1s linear;
}

.loader-location {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(24,54,74,0.4);
  opacity: 0;
}

/* =============================================
   SNAP ARCHITECTURE
   ============================================= */
.snap-wrap {
  /* GSAP takes over scrolling — this is just a container */
}

/* Each panel is full viewport by default */
.snap-panel {
  min-height: 100vh;
}

/* Apartment — single viewport panel, GSAP drives internal transitions */
.apt.snap-panel {
  min-height: 100vh;
  height: 100vh;
}

/* Day section wrapper — not a snap-panel itself, children are */
.day { background: var(--ink); }
.day .snap-panel { min-height: 100vh; }

/* Book — full viewport like other panels */
.book.snap-panel {
  min-height: 100vh;
}

/* =============================================
   SECTION DOTS
   ============================================= */
.section-dots {
  position: fixed;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(24,54,74,0.2);
  border: 1.5px solid rgba(24,54,74,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dot--active {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.4);
}
/* Light dots on dark sections */
.dots-light .dot { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.6); }
.dots-light .dot--active { background: #fff; border-color: #fff; }

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* On touch devices snap is disabled — native scroll only */
body.is-touch {
  overflow-y: auto;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.4rem 2.5rem;
  background: linear-gradient(to bottom, rgba(10,22,34,0.55) 0%, rgba(10,22,34,0) 100%);
  transition: padding 0.4s ease, background 0.4s ease;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
.nav-link {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; }

/* =============================================
   1. HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(10,20,32,0.72) 0%, rgba(10,20,32,0) 55%),
    linear-gradient(to right, rgba(10,20,32,0.55) 0%, rgba(10,20,32,0) 60%);
}
.hero-body {
  position: absolute;
  z-index: 2;
  bottom: 4.5rem;
  left: 2.5rem;
  max-width: 680px;
}
.hero-hl {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-hl-line {
  display: block;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.hero-hl-line--italic {
  font-style: italic;
  padding-left: 4vw;
}
.hero-hl-line--no-offset {
  padding-left: 0;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  padding-left: 2px;
}
.hero-meta {
  position: absolute;
  bottom: 3rem;
  right: 2.5rem;
  z-index: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero-meta span {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(24,54,74,0.45);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-label {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  text-align: center;
}
.hero-scroll-line {
  width: 1.5px;
  height: 72px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.7) 100%);
  animation: lineGrow 2.5s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes lineGrow {
  0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80%      { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* =============================================
   2. INTRO
   ============================================= */
.intro {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  padding: 12vw 2.5rem 10vw;
  /* Overlap hero */
  margin-top: -5rem;
  border-radius: 1.5rem 1.5rem 0 0;
  z-index: 10;
}
.intro-bg-letter {
  position: absolute;
  top: -8vw;
  right: -4vw;
  font-family: 'Cormorant Garamond', serif;
  font-size: 55vw;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  color: var(--blue);
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.intro-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.intro-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--blue);
  display: block;
  overflow: hidden; /* clip for line-reveal animation */
}
.intro-line span {
  display: block;
  transform: translateY(100%);
}
.intro-line--em {
  font-style: italic;
  color: var(--muted);
  margin-top: 2rem;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
}
.intro-aside {
  position: absolute;
  bottom: 8vw;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}
.intro-aside span {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================================
   2. APARTMENT — asymmetric card grid
   ============================================= */
.apt {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  align-items: center;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  /* Rope knot texture */
  background-color: var(--sand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Ccircle cx='16' cy='16' r='6' fill='none' stroke='rgba(24,54,74,0.07)' stroke-width='1'/%3E%3Cline x1='0' y1='16' x2='10' y2='16' stroke='rgba(24,54,74,0.05)' stroke-width='1'/%3E%3Cline x1='22' y1='16' x2='32' y2='16' stroke='rgba(24,54,74,0.05)' stroke-width='1'/%3E%3Cline x1='16' y1='0' x2='16' y2='10' stroke='rgba(24,54,74,0.05)' stroke-width='1'/%3E%3Cline x1='16' y1='22' x2='16' y2='32' stroke='rgba(24,54,74,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 32px 32px;
}
.apt-header {
  padding: 0 3rem 0 4rem;
}
.apt-eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}
.apt-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--blue);
  margin-bottom: 1.8rem;
}
.apt-heading em { font-style: italic; }
.apt-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 420px;
}
.apt-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  padding: 2rem 3rem 2rem 0;
  height: 100vh;
  align-items: start;
}
.apt-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  will-change: transform;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) scale(1);
  transition: box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(15,32,48,0.12);
}
/* Staggered vertical positions — overlap via negative margin */
.apt-card:nth-child(1) { margin-top: 4vh;  margin-right: -1.5rem; z-index: 1; }
.apt-card:nth-child(2) { margin-top: 10vh; z-index: 2; }
.apt-card:nth-child(3) { margin-top: -4vh; margin-right: -1.5rem; z-index: 2; }
.apt-card:nth-child(4) { margin-top: 2vh;  z-index: 1; }
.apt-card:hover { z-index: 10; box-shadow: 0 20px 60px rgba(15,32,48,0.22); }

.apt-card picture { display: block; width: 100%; height: 100%; }
.apt-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
/* Variable crop focus per card */
.apt-card:nth-child(1) img { object-position: center 30%; }
.apt-card:nth-child(2) img { object-position: center 60%; }
.apt-card:nth-child(3) img { object-position: center 20%; }
.apt-card:nth-child(4) img { object-position: center 50%; }

.apt-card-label {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(15,32,48,0.35);
  backdrop-filter: blur(4px);
  padding: 0.3rem 0.6rem;
  border-radius: 0.25rem;
  pointer-events: none;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.amenity svg { width: 14px; height: 14px; color: var(--bronze); flex-shrink: 0; }

/* =============================================
   4. PLACE
   ============================================= */
.place {
  padding: 0;
  display: flex;
  flex-direction: column;
  /* Option 3: Wave / Atlantic ripple */
  background-color: var(--paper);
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 18px,
    rgba(24,54,74,0.035) 18px,
    rgba(24,54,74,0.035) 19px
  ),
  repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 28px,
    rgba(24,54,74,0.025) 28px,
    rgba(24,54,74,0.025) 30px
  );
  background-size: 30px 20px;
}
.place-header {
  padding: 0 2.5rem 5vw;
  max-width: 900px;
}
.place-eyebrow {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}
.place-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.place-heading em { font-style: italic; }
.place-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
}
/* ---- Map + legend split layout ---- */
.place-map-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.place-map-img-wrap {
  flex: 0 0 60%;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.place-map-img-wrap img,
.place-map-img-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}


.place-map-legend {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4vw 4vw 4vw 5vw;
  overflow-y: auto;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle, rgba(24,54,74,0.15) 1px, transparent 1px);
  background-size: 18px 18px;
}

.place-map-legend .place-heading {
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  white-space: nowrap;
}

.place-poi-item em {
  font-style: italic;
  color: var(--muted);
  font-size: 0.65em;
}

.place-poi-list {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.place-poi-item {
  display: grid;
  grid-template-columns: 2rem 1fr auto auto;
  align-items: center;
  gap: 0 0.75rem;
  padding: 0.6rem 0;
}

.place-poi-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--bronze);
  text-align: center;
}
.place-poi-item--home .place-poi-num {
  font-size: 0.65rem;
  letter-spacing: 0.02em;
}

.place-poi-name {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.place-poi-drive {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.place-poi-uber {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bronze);
  text-align: right;
}

.place-poi-item--local .place-poi-num {
  color: var(--pine);
  font-size: 0.6rem;
}
.place-poi-item--local .place-poi-name {
  color: var(--ink);
  font-weight: 500;
}
.place-poi-item--local .place-poi-drive {
  color: var(--pine);
  font-weight: 500;
}

.place-poi-item--divider {
  grid-column: 1 / -1;
  padding: 0.5rem 0;
}
.place-poi-divider-line {
  display: block;
  height: 1px;
  background: var(--rule);
  width: 100%;
}

/* ---- Illustrated map + legend layout (legacy) ---- */
#area-map {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-height: 72vh;
  overflow: hidden;
  background: #1d3a2e;
}

.map-img-wrap {
  flex: 1 1 0;
  min-width: 0;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.map-img-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  max-height: 72vh;
}

/* Pin hover */
.map-pin { cursor: default; transition: transform 0.15s ease; transform-origin: center; }
.map-pin:hover { transform: scale(1.15); }

/* ---- Sidebar legend ---- */
.map-legend {
  width: 220px;
  flex-shrink: 0;
  background: #1A3A2A;
  color: #F5F2EE;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.map-legend-header {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #C4714A;
  margin-bottom: 1.4rem;
}

.map-legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.map-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.map-legend-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1A3A2A;
  border: 1.5px solid rgba(245, 242, 238, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  color: #F5F2EE;
  font-family: 'Inter', sans-serif;
}

.map-legend-item--home .map-legend-num {
  background: #C4714A;
  border-color: #C4714A;
}

.map-legend-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.map-legend-name {
  font-size: 0.78rem;
  font-weight: 400;
  color: #F5F2EE;
  line-height: 1.3;
}

.map-legend-item--home .map-legend-name {
  color: #C4714A;
  font-weight: 500;
}

.map-legend-time {
  font-size: 0.65rem;
  color: rgba(245, 242, 238, 0.5);
  letter-spacing: 0.03em;
}

/* =============================================
   4B. PLACE COMPASS — radial map version
   ============================================= */
.place-compass {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background-color: #e8e1d6;
  background-image:
    radial-gradient(circle, rgba(24,54,74,0.15) 1px, transparent 1px),
    linear-gradient(160deg, #eee8df 0%, #ddd4c4 50%, #c8d8e4 100%);
  background-size: 18px 18px, 100% 100%;
}

.place-compass-header {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 2;
  pointer-events: none;
}

.place-compass-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.place-compass-map svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* =============================================
   5. DAY — full-bleed cinematic panels
   ============================================= */
.day { background: var(--ink); }
.day-moment {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.day-moment-bg {
  position: absolute;
  inset: -10% 0;
  will-change: transform;
}
.day-moment-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.day-moment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,32,48,0.0) 0%,
    rgba(15,32,48,0.7) 65%,
    rgba(15,32,48,0.92) 100%
  );
}
.day-moment-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 5rem;
  width: 100%;
}
.day-moment-content--right {
  text-align: right;
}
.day-timestamp {
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.day-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.day-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 420px;
}
.day-moment-content--right .day-caption { margin-left: auto; }

/* =============================================
   6. BOOK
   ============================================= */
.book {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.book-bg {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
}
.book-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.75) brightness(0.6);
}
.book-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(12,20,28,0.96) 0%,
    rgba(18,28,36,0.88) 50%,
    rgba(24,32,32,0.65) 100%);
}
.book-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
.book-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* — Left column — */
.book-left {
  display: flex;
  flex-direction: column;
}
.book-eyebrow {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.25rem;
}
.book-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 2rem;
}
.book-heading em { font-style: italic; }
.book-left-body {
  width: 100%;
}
.book-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.book-host {
  border-left: 1px solid rgba(181,149,115,0.35);
  padding-left: 1.25rem;
}
.book-host-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bronze);
  line-height: 1.65;
  margin-bottom: 0.6rem;
  opacity: 0.75;
}
.book-host-sig {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0.5;
}

/* — Price tag — */
.book-price-tag {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(181,149,115,0.2);
  background: rgba(181,149,115,0.05);
}
.bpt-rate-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.bpt-rate {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.bpt-per-night {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0.7;
}
.bpt-placeholder {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
}
.bpt-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  padding: 0.3rem 0;
}
.bpt-line + .bpt-line {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.bpt-line-total {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding-top: 0.5rem;
  margin-top: 0.2rem;
  border-top: 1px solid rgba(181,149,115,0.25) !important;
}
.bpt-free {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  border: 1px solid rgba(181,149,115,0.4);
  padding: 0.1rem 0.4rem;
  margin-left: 0.5rem;
}

/* — Right column: form — */
.book-right {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.f-group label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.f-group input,
.f-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.6rem 0;
  outline: none;
  color-scheme: dark;
  transition: border-color 0.3s;
  width: 100%;
}
.f-group input::placeholder,
.f-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.f-group input:focus,
.f-group textarea:focus { border-bottom-color: rgba(255,255,255,0.6); }
.f-group textarea { resize: none; min-height: 80px; }

/* Guests slider — custom */
.f-group--slider { gap: 0.6rem; }
.f-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.f-slider-readout {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  transition: opacity 0.2s;
}
.f-slider-track {
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  overflow: visible;
}
/* base line */
.f-slider-track::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
/* filled portion */
.f-slider-fill {
  position: absolute;
  left: 0;
  height: 1px;
  background: var(--bronze);
  width: 0%;
  pointer-events: none;
}
/* stop dots */
.f-slider-stop {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.35);
  transform: translateX(-50%);
  transition: background 0.2s;
}
.f-slider-stop:nth-child(2) { left: 0%;      }
.f-slider-stop:nth-child(3) { left: 33.33%;  }
.f-slider-stop:nth-child(4) { left: 66.66%;  }
.f-slider-stop:nth-child(5) { left: 100%;    }
.f-slider-stop span {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.48rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  pointer-events: none;
}
.f-slider-stop.is-active {
  background: var(--bronze);
  border-color: var(--bronze);
}
.f-slider-stop.is-filled {
  background: var(--bronze);
  border-color: var(--bronze);
  opacity: 0.5;
}
/* knob */
.f-slider-knob {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bronze);
  left: 0%;
  transform: translateX(-50%);
  cursor: grab;
  transition: transform 0.15s ease;
  z-index: 2;
}
.f-slider-knob:active { cursor: grabbing; }
.f-slider-knob.is-dragging { transform: translateX(-50%) scale(1.2); }
.f-channel-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.f-channel-row {
  display: flex;
  gap: 0.5rem;
}
.f-channel-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  flex: 1;
  justify-content: center;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.f-channel-btn:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}
.f-trust {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  margin-top: 1rem;
}
.f-mobile-only { display: none; }
.mob-price-card {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(181,149,115,0.2);
  background: rgba(181,149,115,0.05);
  margin-bottom: 1.25rem;
}
.mob-price-rate-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
}
.mob-price-rate {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.mob-price-per-night {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  opacity: 0.7;
}
.mob-price-lines .bpt-line {
  font-size: 0.75rem;
}
.form-success { display: none; padding: 4rem 0; }
.form-success[aria-hidden="false"] { display: block; }
.form-success p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
}
.form-success em { font-style: italic; opacity: 0.6; }
.form-success-back {
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.form-success-back:hover { color: rgba(255,255,255,0.8); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0 2.5rem 3rem;
}
.footer-bg {
  position: absolute;
  inset: 0;
}
.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.6);
}
.footer-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,32,48,0.3) 0%,
    rgba(15,32,48,0.88) 100%);
}
.footer-body {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1;
}
.footer-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-right span {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-right em {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.65);
}

/* =============================================
   HERO — dark text variant (light illustration bg)
   ============================================= */
.hero-body--dark .hero-hl { color: var(--blue); }
.hero-body--dark .hero-hl-line { font-size: clamp(3rem, 8vw, 8rem); line-height: 1.0; }
.hero-body--dark .hero-sub { color: var(--muted); font-family: 'Inter', sans-serif; font-size: clamp(0.85rem, 1.4vw, 1.1rem); font-style: normal; font-weight: 300; line-height: 1.7; max-width: 540px; }
.hero-eyebrow {
  position: absolute;
  top: 1.8rem;
  left: 2.5rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  z-index: 3;
}
.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 0.9rem 2rem;
  transition: background 0.3s;
}
.hero-cta:hover { background: var(--bronze); }
.hero-meta--dark span { color: rgba(24,54,74,0.45); }
.hero-scroll-line--dark {
  background: linear-gradient(to bottom, rgba(24,54,74,0) 0%, rgba(24,54,74,0.4) 100%);
}

/* Apt aside line */
.apt-aside {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bronze);
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* =============================================
   2. LIVING SPACE — full-bleed, text overlay
   ============================================= */
.room-full {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.room-full-bg {
  position: absolute;
  inset: 0;
}
.room-full-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.room-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,32,48,0.78) 0%,
    rgba(15,32,48,0.15) 30%,
    rgba(15,32,48,0.0) 55%
  );
}
.room-full-copy {
  position: relative;
  z-index: 2;
  padding: 0 4rem 4.5rem;
  max-width: 860px;
}

/* =============================================
   3. KITCHEN — split 60/40
   ============================================= */
.room-split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background-color: var(--sand);
}
.room-split-photo {
  position: relative;
  overflow: hidden;
}
.room-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.room-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 4rem 4rem 5rem;
  background-color: var(--sand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='12'%3E%3Cpath d='M0 6 Q10 0 20 6 Q30 12 40 6' fill='none' stroke='rgba(24,54,74,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 40px 12px;
}
.room-list {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.room-list li {
  font-size: 1rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}
.room-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-size: 0.8rem;
}

/* =============================================
   4A. MASTER BEDROOM — photo right, text left
   4B. SECOND BEDROOM — photo left, text right
   ============================================= */

/* Bedroom text panels — zzz texture (overrides kitchen wave) */
.room-split--master .room-split-text,
.room-split--second .room-split-text {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ctext x='8'  y='22' font-family='Georgia,serif' font-size='14' fill='rgba(24,54,74,0.07)' font-style='italic'%3Ez%3C/text%3E%3Ctext x='26' y='14' font-family='Georgia,serif' font-size='10' fill='rgba(24,54,74,0.05)' font-style='italic'%3Ez%3C/text%3E%3Ctext x='38' y='44' font-family='Georgia,serif' font-size='16' fill='rgba(24,54,74,0.06)' font-style='italic'%3Ez%3C/text%3E%3Ctext x='14' y='50' font-family='Georgia,serif' font-size='9'  fill='rgba(24,54,74,0.04)' font-style='italic'%3Ez%3C/text%3E%3C/svg%3E");
  background-size: 60px 60px;
}

/* Master: photo on right — reverse column order */
.room-split--master {
  grid-template-columns: 1.2fr 1.3fr;
}
.room-split--master .room-split-photo img {
  object-position: left 30%; /* keep TV on left wall in frame */
}

/* Second: photo on left (default grid order) — swap columns */
.room-split--second {
  grid-template-columns: 1.3fr 1.2fr;
}
.room-split--second .room-split-photo img {
  object-position: right 30%; /* keep TV on right wall in frame */
}

/* =============================================
   Shared room typography
   ============================================= */
.room-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}
.room-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.room-heading em { font-style: italic; }
.room-full-copy .room-heading,
.room-full-copy .room-eyebrow { color: #fff; }
.room-full-copy .room-heading { color: #fff; }
.room-split-text .room-heading,
.room-beds-header .room-heading { color: var(--blue); }
.room-body {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 100%;
}
.room-full-copy .room-body { color: rgba(255,255,255,0.72); text-wrap: balance; }
.room-split-text .room-body,
.room-beds-header .room-body { color: var(--muted); }

/* =============================================
   3A. TERRACE — dark variant (full-bleed photo)
   ============================================= */
.terrace-dark {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.terrace-dark-bg {
  position: absolute;
  inset: 0;
}
.terrace-dark-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.terrace-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,32,48,0.75) 0%, rgba(15,32,48,0.3) 55%, rgba(15,32,48,0.05) 100%);
}
.terrace-dark-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding: 0 5rem;
}
.terrace-dark-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}
.terrace-dark-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.8rem;
}
.terrace-dark-heading em { font-style: italic; }
.terrace-dark-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}
.terrace-dark-aside {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bronze);
  margin-top: 1.5rem;
}
.terrace-dark-second {
  height: 65vh;
  border-radius: 0.5rem;
  overflow: hidden;
}
.terrace-dark-second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   3B. TERRACE — light variant (editorial paper bg)
   ============================================= */
.terrace-light {
  background: var(--paper);
  display: flex;
  align-items: center;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}
.terrace-light-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  padding: 0 5rem;
}
.terrace-light-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
}
.terrace-light-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--blue);
  margin-bottom: 1.8rem;
}
.terrace-light-heading em { font-style: italic; }
.terrace-light-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 500px;
}
.terrace-light-aside {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--bronze);
  margin-top: 1.5rem;
}
.terrace-light-photos {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr;
  gap: 1rem;
  height: 75vh;
}
.terrace-light-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.terrace-light-photo--main { grid-row: 1; }
.terrace-light-photo--secondary { grid-row: 1; align-self: end; height: 55%; }

/* =============================================
   TERRACE A — triptych strip, centered text overlay
   ============================================= */
.terrace-a {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.terrace-a-strip {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  background: var(--paper); /* gap colour */
}
.terrace-a-photo {
  position: relative;
  overflow: hidden;
}
.terrace-a-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.terrace-a-photo--mid img {
  object-position: center 20%; /* portrait — keep Buddha+plants */
}
.terrace-a-photo--sofa img {
  object-position: center 40%; /* portrait — cushions and plants centred */
}
.terrace-a-overlay {
  position: absolute;
  inset: 0;
  /* subtle scrim only on outer thirds, leaves middle clear */
  background: linear-gradient(to right,
    rgba(15,32,48,0.25) 0%,
    rgba(15,32,48,0.0) 33%,
    rgba(15,32,48,0.0) 66%,
    rgba(15,32,48,0.18) 100%
  );
  pointer-events: none;
}
.terrace-a-box {
  position: absolute;
  z-index: 2;
  left: 3vw;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 36vw, 480px);
  padding: 2.4rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
/* Dark variant — frosted dark glass */
.terrace-a-box--dark {
  background: rgba(15,32,48,0.58);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
}
.terrace-a-box--dark .terrace-a-eyebrow { color: var(--bronze); }
.terrace-a-box--dark .terrace-a-heading { color: #fff; }
.terrace-a-box--dark .terrace-a-body    { color: rgba(255,255,255,0.72); }

/* Light variant — hero-style frosted glass */
.terrace-a-box--light {
  background: rgba(15,32,48,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}
.terrace-a-box--light .terrace-a-eyebrow { color: var(--bronze); }
.terrace-a-box--light .terrace-a-heading  { color: #fff; }
.terrace-a-box--light .terrace-a-body     { color: rgba(255,255,255,0.72); }

.terrace-a-eyebrow {
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.terrace-a-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.2vw, 2.4rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.terrace-a-heading em { font-style: italic; }
.terrace-a-body {
  font-size: 0.95rem;
  line-height: 1.8;
}

/* =============================================
   TERRACE B — large hero left + two stacked right
   ============================================= */
.terrace-b {
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.terrace-b-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  height: 100%;
}
.terrace-b-hero {
  position: relative;
  overflow: hidden;
}
.terrace-b-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.terrace-b-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,32,48,0.88) 0%,
    rgba(15,32,48,0.3) 55%,
    rgba(15,32,48,0.05) 100%
  );
}
.terrace-b-box {
  position: absolute;
  bottom: 3.5rem;
  left: 3.5rem;
  z-index: 2;
  max-width: 420px;
}
.terrace-b-eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}
.terrace-b-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.2rem;
}
.terrace-b-heading em { font-style: italic; }
.terrace-b-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.terrace-b-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
}
.terrace-b-photo {
  position: relative;
  overflow: hidden;
}
.terrace-b-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.terrace-b-photo:first-child img { object-position: center 20%; }
.terrace-b-photo:last-child  img { object-position: center 30%; }
/* thin gap between stacked photos */
.terrace-b-photo + .terrace-b-photo { border-top: 3px solid var(--paper); }

/* =============================================
   TERRACE C — horizontal scroll reveal, pinned text
   ============================================= */
.terrace-c {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.terrace-c-track {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  will-change: transform;
}
.terrace-c-photo {
  position: relative;
  height: 100%;
  width: 100vw;
  flex-shrink: 0;
  overflow: hidden;
}
.terrace-c-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.terrace-c-photo:nth-child(2) img { object-position: center 20%; }
/* dark gradient on each photo for text legibility */
.terrace-c-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(15,32,48,0.72) 0%,
    rgba(15,32,48,0.15) 60%,
    rgba(15,32,48,0.0) 100%
  );
  pointer-events: none;
}
.terrace-c-pin {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 480px;
}
.terrace-c-eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}
.terrace-c-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}
.terrace-c-heading em { font-style: italic; }
.terrace-c-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
}
.terrace-c-progress {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.terrace-c-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--bronze);
  transition: width 0.6s ease;
}

/* =============================================
   3. ROOFTOP
   ============================================= */
/* =============================================
   ROOFTOP — 4-photo mosaic + text
   ============================================= */
.roof-eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}
.roof-pool-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.roof-pool-heading em { font-style: italic; }
.roof-pool-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
}

/* =============================================
   ROOFTOP — 4-photo mosaic + text
   ============================================= */
.roof-bbq {
  background-color: var(--sand);
  background-image:
    repeating-linear-gradient(45deg,  rgba(24,54,74,0.07) 0, rgba(24,54,74,0.07) 1px, transparent 1px, transparent 14px),
    repeating-linear-gradient(-45deg, rgba(24,54,74,0.07) 0, rgba(24,54,74,0.07) 1px, transparent 1px, transparent 14px);
  background-size: 14px 14px;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.roof-bbq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  height: 100%;
  width: 100%;
  align-items: center;
}
.roof-bbq-copy {
  padding: 0 3rem 0 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.roof-bbq-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--blue);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.roof-bbq-heading em { font-style: italic; }
.roof-bbq-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 480px;
}

/* polaroid shared styles */
.polaroid {
  background: #fff;
  padding: 10px 10px 36px;
  box-shadow: 0 4px 18px rgba(24,54,74,0.15), 0 1px 4px rgba(24,54,74,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.polaroid:hover {
  box-shadow: 0 10px 36px rgba(24,54,74,0.22), 0 2px 8px rgba(24,54,74,0.1);
  z-index: 10;
}
.polaroid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.polaroid-caption {
  display: block;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  padding-top: 6px;
  letter-spacing: 0.02em;
}

/* desktop: scatter */
@media (min-width: 901px) {
  .roof-bbq-scatter {
    position: relative;
    height: 100vh;
    width: 100%;
  }
  .polaroid { position: absolute; }
  .polaroid--1 { width: 42%; height: 46%; top: 6%;    left: 4%;  transform: rotate(-3.5deg); }
  .polaroid--2 { width: 36%; height: 40%; top: 10%;   right: 3%; transform: rotate(2.8deg);  }
  .polaroid--3 { width: 44%; height: 42%; bottom: 7%; left: 2%;  transform: rotate(1.6deg);  }
  .polaroid--4 { width: 38%; height: 38%; bottom: 10%;right: 5%; transform: rotate(-2.2deg); }
  .polaroid--1:hover { transform: rotate(-1deg) scale(1.03); }
  .polaroid--2:hover { transform: rotate(1deg) scale(1.03); }
  .polaroid--3:hover { transform: rotate(0.5deg) scale(1.03); }
  .polaroid--4:hover { transform: rotate(-0.8deg) scale(1.03); }
}

/* mobile */
@media (max-width: 900px) {
  .roof-bbq { position: relative; }
  .roof-bbq-inner {
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
  }
  .roof-bbq-copy {
    flex: 0 0 auto;
    position: static;
    padding: 2.5rem 1.5rem 1.2rem;
  }
  .roof-bbq-scatter {
    flex: 0 0 auto;
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    padding: 10px 16px 24px;
  }
  .polaroid {
    width: 100%;
    height: 38vw;
    position: relative;
    min-height: 0;
  }
  .polaroid--1 { transform: rotate(-2deg); }
  .polaroid--2 { transform: rotate(1.8deg); }
  .polaroid--3 { transform: rotate(1deg); }
  .polaroid--4 { transform: rotate(-1.4deg); }
  .polaroid:hover { transform: rotate(0) scale(1.02); }
  .polaroid img { height: 100%; object-position: center; }
  .polaroid--3 img { object-position: center 85%; }
  .roof-bbq-heading { font-size: clamp(1.3rem, 4vw, 1.9rem); margin-bottom: 0.4rem; }
  .roof-bbq-body { max-width: 100%; margin-bottom: 0; font-size: 0.88rem; line-height: 1.6; }


  /* Terrace — replace triptych with single Buddha full-bleed */
  .terrace-a-photo:not(.terrace-a-photo--mid) { display: none; }
  .terrace-a-strip {
    grid-template-columns: 1fr;
  }
  .terrace-a-photo--mid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .terrace-a-photo--mid img {
    object-position: center 15%;
  }
  /* Reposition text box to bottom of panel on mobile */
  .terrace-a-box {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    height: auto;
    padding: 2rem 2rem 2.5rem;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}
@media (max-width: 600px) {
  .roof-bbq-copy { padding: 1.5rem 1.5rem 2rem; }
  .roof-bbq-scatter { gap: 8px; padding: 8px 12px 20px; }
  .polaroid { height: 40vw; }
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenities-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.amenities-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.amenities-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,20,32,0.72) 0%, rgba(8,20,32,0.52) 100%);
}
.amenities-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.amenities-eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
}
.amenities-glass {
  width: 100%;
  background: rgba(12, 26, 40, 0.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.amenities-group {
  padding: 0 2rem 0 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.amenities-group:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 2rem;
}
.amenities-group:not(:first-child):not(:last-child) {
  padding: 0 2rem;
}
.amenities-group-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 1.25rem;
  white-space: nowrap;
}
.amenities-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.amenities-list li {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.4;
}
.amenities-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--bronze);
  font-size: 1.5rem;
  line-height: 1;
  top: 0.02em;
}

@media (max-width: 1000px) {
  .amenities-glass {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .amenities-group,
  .amenities-group:last-child,
  .amenities-group:not(:first-child):not(:last-child) {
    padding: 0;
    border-right: none;
  }
}
@media (max-width: 900px) {
  .amenities-glass { padding: 2rem; }
  .amenities-inner { padding: 4vh 4vw; }
}
@media (max-width: 600px) {
  .amenities {
    align-items: flex-start;
  }
  .amenities-inner {
    padding: 5rem 1.25rem 3rem;
    gap: 1.25rem;
  }
  .amenities-glass {
    grid-template-columns: 1fr 1fr;
    padding: 1.25rem;
    gap: 1.5rem 1.25rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(12, 26, 40, 0.72);
  }
  .amenities-list { gap: 0.6rem; }
  .amenities-list li { font-size: 0.9rem; }
  .amenities-group-title { font-size: 0.6rem; margin-bottom: 0.75rem; }
}

/* =============================================
   4. PLACE — updated layout
   ============================================= */
.place-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 0 2.5rem 5vw;
  align-items: start;
}
.place-about > p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.place-distances { display: flex; flex-direction: column; gap: 2rem; }
.place-dist-group { display: flex; flex-direction: column; gap: 0.5rem; }
.place-dist-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.5rem;
  display: block;
}
.place-dist-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}
.place-dist-time {
  color: var(--blue);
  font-weight: 500;
  min-width: 90px;
  flex-shrink: 0;
}

/* =============================================
   5. LISBON
   ============================================= */
.lisbon {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lisbon-img {
  position: absolute;
  inset: 0;
}
.lisbon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.lisbon-inner {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: 8vw;
  text-align: right;
}
.lisbon-eyebrow {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
  display: block;
}
.lisbon-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--blue);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.lisbon-heading em { font-style: italic; }
.lisbon-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 540px;
  margin-left: auto;
}
.lisbon-landmarks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.lisbon-lm {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.lisbon-lm-time {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--bronze);
  min-width: 50px;
  text-align: right;
}
.lisbon-lm-name {
  font-size: 0.88rem;
  color: var(--blue);
}

/* =============================================
   6. TRIPTYCH
   ============================================= */
.triptych {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6vw 2.5rem 4vw;
  min-height: 100vh;
}
.triptych-header { margin-bottom: 2.5rem; }
.triptych-eyebrow {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
}
.triptych-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  flex: 1;
}
.triptych-card { display: flex; flex-direction: column; }
.triptych-img {
  flex: 1;
  overflow: hidden;
  max-height: 52vh;
}
.triptych-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.triptych-card:hover .triptych-img img { transform: scale(1.03); }
.triptych-text {
  padding: 1.5rem 0 0;
}
.triptych-time {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.3rem;
}
.triptych-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 300;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
.triptych-text p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 260px;
}
.triptych-night {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
  margin-top: 2rem;
}
.triptych-night-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--blue);
  flex-shrink: 0;
}
.triptych-night p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}


/* =============================================
   FOOTER — minimal
   ============================================= */
.footer {
  background: var(--blue);
  padding: 3rem 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(247,243,238,0.9);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.footer-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.3);
}
.footer-contact {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(247,243,238,0.7);
  transition: color 0.3s;
}
.footer-wa:hover { color: var(--bronze); }
.footer-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.25);
}

/* Nav logo No. suffix */
.nav-logo-no {
  font-style: normal;
  font-size: 0.75em;
  opacity: 0.6;
}

/* Photo credit */
.photo-credit {
  position: absolute;
  bottom: 0.75rem;
  right: 1.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.2);
  margin: 0;
  z-index: 2;
}
.photo-credit a {
  color: rgba(247,243,238,0.3);
  text-decoration: none;
}
.photo-credit a:hover { color: rgba(247,243,238,0.6); }

/* =============================================
   NAV — HAMBURGER (mobile)
   ============================================= */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(280px, 80vw);
  height: 100%;
  z-index: 600;
  background: var(--blue-dk);
  display: flex;
  flex-direction: column;
  padding: 5rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-drawer.is-open {
  transform: translateX(0);
}
.nav-drawer-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.3rem;
  transition: color 0.2s;
}
.nav-drawer-close:hover { color: #fff; }
.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-drawer-link {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.nav-drawer-link:hover { color: #fff; }

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 590;
  background: rgba(0,0,0,0.45);
}
.nav-backdrop.is-visible { display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .lisbon-inner { margin-right: 3vw; }
  .place-body { grid-template-columns: 1fr; }
  .map-legend { width: 180px; padding: 1.5rem 1rem; }
}

@media (max-width: 900px) {
  .apt { display: block; }
  .apt-left { position: relative; height: 65vw; max-height: 520px; }
  .apt-panel { min-height: auto; padding: 4rem 2rem; }
  .apt-panel p { max-width: 100%; }
  .book-cols { grid-template-columns: 1fr; gap: 3rem; }
  .rooftop-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 360px; }
  .triptych-grid { grid-template-columns: 1fr; gap: 2rem; }
  .triptych-img { max-height: 40vw; }
  .lisbon { height: auto; min-height: 100vh; }
  .lisbon-inner { margin: auto 2.5rem; text-align: left; }
  .lisbon-landmarks { align-items: flex-start; }
  .lisbon-lm { flex-direction: row; }
  .lisbon-lm-time { text-align: left; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .footer-contact { align-items: flex-start; text-align: left; }

  /* Kitchen + bedrooms — photo 2/3, text 1/3 */
  .room-split {
    grid-template-columns: 1fr;
    grid-template-rows: 66vh 1fr;
    height: auto;
    min-height: 100vh;
  }
  .room-split-photo { height: 66vh; }
  .room-split-text { padding: 1.8rem 2rem; }
  .room-body { max-width: 100%; }
  .room-split-text .room-heading { font-size: clamp(1.6rem, 6vw, 2.4rem); margin-bottom: 0.75rem; }
  .room-split-text .room-eyebrow { margin-bottom: 0.4rem; }
  .room-split-text .room-body { font-size: 0.85rem; }
  .room-split-text .room-list { display: none; }

  /* Bedroom panels */
  .room-split--master,
  .room-split--second {
    grid-template-columns: 1fr;
    grid-template-rows: 66vh 1fr;
    height: auto;
    min-height: 100vh;
  }
  .room-split--master .room-split-text { order: 2; }
  .room-split--master .room-split-photo { order: 1; height: 66vh; }
  .room-split--master .room-split-photo img { object-position: 20% 30%; }
  .room-split--second .room-split-photo { height: 66vh; }
  .room-split--second .room-split-photo img { object-position: 30% 30%; }
}

@media (max-width: 600px) {
  .nav { padding: 1.2rem 1.5rem; justify-content: flex-end; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-body { padding: 0 1.5rem 4rem; }
  .hero-meta { right: 1.5rem; }
  .apt-panel { padding: 3rem 1.5rem; }
  .place-header { padding: 0 1.5rem 4vw; }
  #area-map { flex-direction: column; max-height: none; }
  .place-map-layout { flex-direction: column; }
  .place-map-img-wrap { flex: 0 0 50vh; }
  .place-map-legend {
    flex: none;
    padding: 2rem 1.5rem;
    white-space: normal;
  }
  .place-map-legend .place-heading {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    white-space: nowrap;
  }
  .place-map-legend .place-sub { font-size: 0.75rem; margin-bottom: 0; }
  .place-poi-list { margin-top: 0.7rem; }
  .place-poi-item { padding: 0.22rem 0; }
  .place-poi-num { font-size: 0.6rem; }
  .place-poi-name { font-size: 0.6rem; }
  .place-poi-drive { font-size: 0.48rem; letter-spacing: 0.08em; }
  .place-poi-uber  { font-size: 0.48rem; letter-spacing: 0.06em; }
  .map-legend { width: 100%; flex-direction: row; flex-wrap: wrap; padding: 1.2rem 1.5rem; gap: 0.5rem; }
  .map-legend-list { flex-direction: row; flex-wrap: wrap; gap: 0.6rem 1.2rem; }
  .map-legend-header { width: 100%; margin-bottom: 0.8rem; }
  .rooftop-inner { padding: 0 1.5rem; }
  .triptych { padding: 8vw 1.5rem 4vw; }
  .triptych-night { flex-direction: column; gap: 0.5rem; }
  .f-row { grid-template-columns: 1fr; gap: 0; }
  .book-right .f-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  /* Book — single-screen mobile layout */
  .book-desktop-only { display: none; }
  .book-left-body { display: none; }
  .book { align-items: center; }
  .book-inner { padding: 2rem 1.5rem 3.5rem; }
  .book-cols { grid-template-columns: 1fr; gap: 1rem; }
  .book-left { gap: 0; }
  .book-heading { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 1.25rem; }
  .book-right { padding: 1.25rem; }
  .f-group { margin-bottom: 0.85rem; }
  .f-channel-row { gap: 0.4rem; }
  .f-channel-btn { padding: 0.75rem 0.4rem; font-size: 0.56rem; gap: 0.3rem; }
  .f-trust { margin-top: 0.6rem; }
  .f-mobile-only { display: block; }
  .footer { padding: 2.5rem 1.5rem; }

  .room-full-copy { padding: 0 1.5rem 3.5rem; }
  .room-split-text { padding: 2.5rem 1.5rem; }
  .room-beds-header { padding: 3rem 1.5rem 2rem; }
  .room-beds-photos { padding: 0 1.5rem 2.5rem; }
}
