/* ==========================================================================
   COLIBRI CENTRO — Modern Baja Mexicana
   Shell: sun-faded cream. Sections switch palette via inline custom props
   (--bg --fg --accent --accent2 --soft) set from site/data.js THEMES.
   ========================================================================== */

/* Self-hosted fonts (Latin subset, incl. Spanish accents). Bricolage + Instrument are variable. */
@font-face { font-family: "Bricolage Grotesque"; font-style: normal; font-weight: 400 800; font-stretch: 75% 100%; font-display: swap; src: url(/assets/fonts/bricolage-grotesque.woff2) format("woff2"); }
@font-face { font-family: "Instrument Sans"; font-style: normal; font-weight: 400 700; font-display: swap; src: url(/assets/fonts/instrument-sans.woff2) format("woff2"); }
@font-face { font-family: "Caveat Brush"; font-style: normal; font-weight: 400; font-display: swap; src: url(/assets/fonts/caveat-brush.woff2) format("woff2"); }

:root {
  --cream: #F5ECDD; --ivory: #FBF6EC; --ink: #161A2B; --wood: #8A5A34;
  --display: "Bricolage Grotesque", "Arial Narrow", system-ui, sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --script: "Caveat Brush", "Comic Sans MS", cursive;
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1320px;
  --radius: 6px;
  --header-h: 68px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0; background: var(--bg, var(--cream)); color: var(--fg, var(--ink));
  font-family: var(--body); font-size: clamp(16px, 1.05vw + 11px, 18px); line-height: 1.6;
  text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
picture.pic { display: block; }
picture.pic img { width: 100%; height: 100%; object-fit: cover; }
/* frames with a fixed shape: the photo fills them */
.hero-main > .pic, .hero-circle > .pic, .media-main > .pic, .media-sub > .pic, .zone-pic .pic, .suite-pics .pic, .room-hero-pic > .pic, .loc-photo .pic { height: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { text-decoration-thickness: .14em; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul[class], ol[class], nav ul, nav ol { list-style: none; padding: 0; margin: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--accent, #D4562A); outline-offset: 3px; border-radius: 2px; }
.sr, .hide-visually { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: var(--radius); font-weight: 700; }
.skip:focus { top: 12px; }
main:focus { outline: none; }

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

/* ---------- Type ---------- */
.display, .mega, .h-mega, .h-xl {
  font-family: var(--display); font-weight: 800; font-stretch: 75%;
  font-variation-settings: "opsz" 96; text-transform: uppercase;
  line-height: .88; letter-spacing: -.005em; text-wrap: balance;
}
.h-mega { font-size: clamp(3rem, 9vw, 7.5rem); }
.h-xl { font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
.h-lg { font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; line-height: .95; font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
.mega { font-size: clamp(4rem, 14vw, 9.5rem); color: var(--fg); }
.mega .mega-word { display: block; }
.mega .mega-kind { display: block; font-size: .42em; line-height: 1; letter-spacing: .02em; color: var(--accent); margin-top: .1em; }
.mega-xl { font-size: clamp(4.2rem, 15vw, 13rem); }
.lede { font-size: clamp(1.12rem, 1.1vw + .8rem, 1.45rem); line-height: 1.45; max-width: 38ch; }
.script { font-family: var(--script); font-size: clamp(1.5rem, 2.2vw, 2.1rem); line-height: 1.1; color: var(--accent); transform: rotate(-3deg); transform-origin: left; display: inline-block; }
.eyebrow, .eyebrow-plain { display: flex; align-items: center; gap: .55em; font-family: var(--body); font-weight: 700; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.eyebrow-bird { width: 2.1em; height: auto; color: var(--accent); --art-2: var(--fg); --eye: var(--bg); flex: none; }
p + p { margin-top: 1em; }

/* ---------- Buttons ---------- */
.btn {
  --b-bg: var(--fg); --b-fg: var(--bg); --b-sh: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .75em 1.35em; border: 2px solid var(--b-bg); border-radius: var(--radius);
  background: var(--b-bg); color: var(--b-fg); font-family: var(--body); font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  box-shadow: 4px 4px 0 var(--b-sh); transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--b-sh); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--b-sh); }
.btn-ghost { background: transparent; color: var(--fg); box-shadow: none; }
.btn-ghost:hover { box-shadow: 4px 4px 0 var(--accent); }
.btn-accent { --b-bg: var(--accent); --b-fg: var(--bg); --b-sh: var(--fg); }
.btn-big { min-height: 56px; font-size: 1rem; padding: .85em 1.6em; }
.btn-small { min-height: 40px; padding: .5em 1em; font-size: .8rem; box-shadow: 3px 3px 0 var(--b-sh); }
.actions { display: flex; flex-wrap: wrap; gap: 14px 18px; margin-top: 1.8rem; align-items: center; }
.link-arrow { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .9rem; margin-top: 1.2rem; }
.link-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--ivory) 94%, transparent); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 2px solid var(--ink); --bg: var(--ivory); --fg: var(--ink); --accent: #D4562A; color: var(--ink); }
.header-inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo-bird { width: 46px; height: auto; color: #1D4FB8; --art-2: #D4562A; --eye: var(--ivory); transition: transform .5s var(--ease); }
.logo:hover .logo-bird { transform: translate(-3px, -3px) rotate(-6deg); }
.logo-word { display: flex; flex-direction: column; font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; line-height: .82; font-size: 1.35rem; letter-spacing: .01em; }
.main-nav ul { display: flex; gap: clamp(10px, 1.4vw, 24px); }
.main-nav a { text-decoration: none; font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap; }
.main-nav a:hover, .main-nav a[aria-current="page"] { border-color: #D4562A; }
.menu-btn { display: none; width: 48px; height: 48px; border: 2px solid var(--ink); border-radius: var(--radius); background: transparent; cursor: pointer; position: relative; }
.menu-lines, .menu-lines::before, .menu-lines::after { position: absolute; left: 11px; right: 11px; height: 2.5px; background: var(--ink); transition: transform .25s var(--ease), opacity .2s; }
.menu-lines { top: 50%; margin-top: -1px; }
.menu-lines::before { content: ""; left: 0; right: 0; top: -7px; }
.menu-lines::after { content: ""; left: 0; right: 0; top: 7px; }
.menu-btn[aria-expanded="true"] .menu-lines { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-lines::before { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-lines::after { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-h) 0 0; background: var(--ivory); overflow-y: auto; padding: 24px var(--gutter) 40px; border-top: 2px solid var(--ink); }
.mobile-menu ul { display: grid; gap: 2px; }
.mobile-menu li a { display: block; font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: clamp(2.2rem, 11vw, 3.4rem); line-height: 1.02; text-decoration: none; padding: 2px 0; }
.mobile-menu li a[aria-current="page"] { color: #D4562A; }
.mobile-menu-foot { margin-top: 28px; display: grid; gap: 14px; justify-items: start; }
.mobile-menu .script { color: #D4562A; }
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 480px) { .hide-sm { display: none; } .logo-word { font-size: 1.15rem; } .logo-bird { width: 38px; } }

/* ---------- Bands (themed sections) ---------- */
.band { position: relative; background: var(--bg); color: var(--fg); padding: clamp(72px, 10vw, 150px) 0; }
.band:has(> .edge) { padding-bottom: calc(clamp(72px, 10vw, 150px) + 40px); }
.edge { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(28px, 4vw, 64px); pointer-events: none; z-index: 2; }
.art { color: var(--accent); --art-2: var(--fg); --eye: var(--bg); }
.split-head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(20px, 5vw, 80px); align-items: start; margin-bottom: clamp(40px, 6vw, 80px); }
.split-head .lede { max-width: 32ch; }
@media (max-width: 860px) { .split-head { grid-template-columns: 1fr; align-items: start; } }

/* ---------- Hero ---------- */
.hero { background: var(--bg); color: var(--fg); padding: clamp(28px, 5vw, 64px) 0 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.25fr); gap: clamp(24px, 4vw, 64px); align-items: center; }
.hero-title { font-size: clamp(4.4rem, 12.5vw, 11.5rem); line-height: .8; margin: 0 0 .15em -.04em; color: var(--ink); }
.hero-title span { display: block; }
.hero-title span:last-child { color: var(--accent); }
.hero-sub { font-family: var(--display); font-weight: 700; font-stretch: 85%; font-size: clamp(1.4rem, 2.3vw, 2rem); line-height: 1.1; margin-bottom: .8rem; }
.hero-text { max-width: 44ch; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 1.6rem; font-weight: 700; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: #2FA35C; box-shadow: 0 0 0 0 rgba(47,163,92,.6); flex: none; }
@media (prefers-reduced-motion: no-preference) { .pulse { animation: pulse 2.4s infinite; } }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(47,163,92,0); } 100% { box-shadow: 0 0 0 0 rgba(47,163,92,0); } }
.hero-media { position: relative; padding: 0 0 clamp(40px, 6vw, 80px) clamp(0px, 3vw, 40px); }
.hero-main { border-radius: 999px 999px var(--radius) var(--radius); overflow: hidden; aspect-ratio: 4 / 4.3; border: 3px solid var(--ink); box-shadow: 12px 12px 0 #1D4FB8; }
.hero-circle { position: absolute; left: -2%; bottom: 2%; width: clamp(120px, 32%, 260px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 3px solid var(--ink); box-shadow: 6px 6px 0 #DC6430; }
.hero-caption { position: absolute; right: 4%; bottom: 0; color: #1D4FB8; font-size: clamp(1.6rem, 2.6vw, 2.4rem); }
.hero-sun { position: absolute; top: -2%; right: -3%; width: clamp(80px, 13%, 130px); color: #EDB637; --art-2: #DC6430; }
.hero-cactus { position: absolute; left: 28%; bottom: -6px; width: clamp(40px, 7%, 70px); color: #12773A; --art-2: #DC6430; }
.hero-wave { position: absolute; left: 6%; top: 10%; width: clamp(70px, 14%, 140px); color: #1D4FB8; --art-2: #8FDCD2; }
@media (prefers-reduced-motion: no-preference) {
  .hero-sun { animation: spin 60s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-media { order: 0; padding: 0 0 36px; }
  .hero-main { aspect-ratio: 4 / 3.4; border-radius: 180px 180px var(--radius) var(--radius); box-shadow: 8px 8px 0 #1D4FB8; }
  .hero-circle { width: 34%; left: -8px; bottom: 0; }
  .hero-title { font-size: clamp(4rem, 22vw, 7rem); }
}
.eco-strip { display: flex; overflow-x: auto; scrollbar-width: none; margin-top: clamp(40px, 6vw, 72px); border-top: 2px solid var(--ink); }
.eco-strip::-webkit-scrollbar { display: none; }
.eco-strip li { flex: 1 0 auto; display: flex; align-items: center; gap: 10px; padding: 16px 22px; background: var(--bg); color: var(--fg); font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: 1.25rem; white-space: nowrap; }
.eco-art { width: 34px; height: 34px; }

/* ---------- Intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 6vw, 96px); align-items: start; }
.intro-copy > * + * { margin-top: 1.2rem; }
.eco-words { display: flex; flex-wrap: wrap; gap: .1em .45em; font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: clamp(1.8rem, 3.3vw, 2.9rem); line-height: 1; }
.eco-words li { color: var(--c); }
@media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } }

/* ---------- Stay header + room index ---------- */
.ways { display: grid; gap: .7rem; margin-top: 1.4rem; }
.ways li { padding-left: 1.5em; position: relative; }
.ways li::before { content: ""; position: absolute; left: 0; top: .55em; width: .8em; height: .8em; background: var(--accent); border-radius: 50%; }
.room-index { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.room-index a { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; min-height: 150px; padding: 16px; background: var(--bg); color: var(--fg); text-decoration: none; border-radius: var(--radius); border: 2px solid var(--ink); font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: 1.45rem; line-height: .95; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.room-index a:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--ink); }
.ri-art { width: 52px; height: 52px; }
@media (max-width: 860px) { .room-index { grid-template-columns: repeat(2, 1fr); } .room-index a:last-child { grid-column: span 2; } .room-index a { min-height: 110px; } }

/* ---------- Room bands ---------- */
.room-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 96px); align-items: center; }
.flip .room-media { order: 2; }
.room-media { position: relative; padding-bottom: 12%; }
.media-main { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 4.6; }
.room-band:nth-of-type(4n+1) .media-main { border-radius: 999px 999px var(--radius) var(--radius); }
.media-sub { position: absolute; right: -6%; bottom: 0; width: 46%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 6px solid var(--bg); }
.flip .media-sub { right: auto; left: -6%; border-radius: var(--radius); aspect-ratio: 4/5; }
.room-art { position: absolute; top: -6%; left: -4%; width: clamp(80px, 22%, 170px); height: auto; }
.flip .room-art { left: auto; right: -4%; }
.room-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; font-weight: 700; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.floor-tag { display: inline-flex; align-items: center; gap: 8px; }
.floor-num { display: inline-grid; place-items: center; width: 1.9em; height: 1.9em; border: 2px solid currentColor; border-radius: 50%; font-family: var(--display); font-size: 1.05em; letter-spacing: 0; }
.room-copy .script { margin: .4rem 0 .9rem; }
.room-copy .lede { margin-top: .5rem; }
.quick { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 1.5rem; }
.quick li { font-weight: 600; font-size: .92rem; padding: .35em .8em; border: 2px solid currentColor; border-radius: 999px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 2px solid currentColor; }
.quick-grid li { border: 0; border-bottom: 2px solid currentColor; border-radius: 0; padding: 14px 4px; font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: clamp(1.1rem, 1.6vw, 1.45rem); }
@media (max-width: 560px) { .quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 860px) {
  .room-grid { grid-template-columns: 1fr; }
  .flip .room-media { order: 0; }
  .media-main { aspect-ratio: 4 / 3.8; }
  .media-sub { width: 40%; right: -8px; }
  .flip .media-sub { left: -8px; }
}

/* ---------- PRIVATE vs SHARED ---------- */
.badge { display: inline-flex; align-items: center; gap: .45em; padding: .3em .7em .3em .55em; border-radius: 4px; font-family: var(--body); font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; line-height: 1.2; vertical-align: middle; white-space: nowrap; }
.badge svg { width: 1.35em; height: 1.35em; flex: none; }
.badge-private { background: var(--fg); color: var(--bg); border: 2px solid var(--fg); }
.badge-shared { background: transparent; color: var(--fg); border: 2px dashed currentColor; }
.ps { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ps-col { padding: 22px; border-radius: var(--radius); border: 2px solid currentColor; }
.ps-col:last-child { border-style: dashed; }
.ps-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: 1.5rem; line-height: 1; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: .35em .8em; border-radius: 4px; font-weight: 600; font-size: .92rem; }
.chip-private { background: var(--fg); color: var(--bg); }
.chip-shared { border: 2px dashed currentColor; padding: calc(.35em - 2px) calc(.8em - 2px); }
.ps-compact { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 2px solid color-mix(in srgb, currentColor 30%, transparent); }
.ps-row { display: grid; grid-template-columns: 7.2rem 1fr; gap: 10px; align-items: start; }
.ps-row .badge { justify-content: center; }
.ps-compact .chip { font-size: .85rem; padding: .25em .65em; }
.ps-compact .chip-shared { padding: calc(.25em - 2px) calc(.65em - 2px); }
@media (max-width: 700px) { .ps { grid-template-columns: 1fr; } .ps-row { grid-template-columns: 1fr; } .ps-row .badge { justify-self: start; } }

/* ---------- Ocean Suite feature (home) ---------- */
.suite-feature { padding-bottom: 0; overflow: hidden; }
.suite-head .lede { margin-top: 1.2rem; max-width: 30ch; }
.suite-hero { position: relative; margin: clamp(32px, 5vw, 60px) 0; }
.suite-hero .pic { aspect-ratio: 21 / 9; }
@media (max-width: 700px) { .suite-hero .pic { aspect-ratio: 4 / 3; } }
.suite-tag { position: absolute; right: var(--gutter); bottom: -.6em; font-size: clamp(2rem, 4vw, 3.4rem); color: var(--accent2); }
.suite-row { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 80px); padding-bottom: clamp(56px, 8vw, 110px); align-items: start; }
.suite-facts > p { margin-top: 1.4rem; max-width: 46ch; }
.suite-pics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.suite-pics > div { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; }
.suite-pics > div:nth-child(2) { margin-top: 18%; }
.suite-manta { position: absolute; right: var(--gutter); bottom: 20px; width: clamp(90px, 14vw, 180px); opacity: .9; }
@media (max-width: 860px) { .suite-row { grid-template-columns: 1fr; } .suite-manta { display: none; } }
.suite-rooms { display: grid; grid-template-columns: 1fr 1fr; }
.suite-room { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg); color: var(--fg); text-decoration: none; min-height: 340px; }
.sr-pic { overflow: hidden; }
.sr-pic .pic { height: 100%; transition: transform .8s var(--ease); }
.suite-room:hover .sr-pic .pic { transform: scale(1.04); }
.sr-copy { position: relative; padding: clamp(20px, 3vw, 40px); display: flex; flex-direction: column; justify-content: flex-end; gap: 10px; }
.sr-word { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.sr-art { position: absolute; top: 18px; right: 18px; width: 64px; height: 90px; }
@media (max-width: 860px) { .suite-rooms { grid-template-columns: 1fr; } .suite-room { min-height: 260px; } }

/* ---------- Come home / collage ---------- */
.collage { position: relative; display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(60px, 7vw, 100px); gap: 14px; }
.collage figure { position: relative; border-radius: var(--radius); overflow: hidden; }
.collage .pic { height: 100%; }
.collage figcaption { position: absolute; left: 10px; bottom: 10px; display: flex; align-items: center; gap: 8px; background: var(--bg); color: var(--fg); padding: 6px 10px 6px 6px; border-radius: 4px; font-weight: 700; font-size: .85rem; }
.c1 { grid-column: 1 / 8; grid-row: 1 / 6; border-radius: 999px 999px var(--radius) var(--radius) !important; }
.c2 { grid-column: 8 / 13; grid-row: 1 / 4; }
.c3 { grid-column: 8 / 11; grid-row: 4 / 7; }
.c4 { grid-column: 11 / 13; grid-row: 4 / 7; }
.c-script { position: absolute; left: 4%; bottom: -1.2em; font-size: clamp(1.8rem, 3vw, 2.8rem); z-index: 3; color: var(--accent); }
@media (max-width: 860px) {
  .collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .collage figure { aspect-ratio: 4 / 3; }
  .c1 { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 4 / 3.6 !important; }
  .c2 { grid-column: 1 / 3; grid-row: auto; }
  .c3, .c4 { grid-column: auto; grid-row: auto; aspect-ratio: 1 !important; }
  .c-script { position: static; margin-top: 10px; }
}
.around { margin-top: clamp(60px, 8vw, 110px); display: grid; grid-template-columns: 1fr 3fr; gap: 24px; border-top: 2px solid currentColor; padding-top: 24px; }
.around-list { display: flex; flex-wrap: wrap; gap: 10px 26px; font-family: var(--display); font-weight: 700; font-stretch: 80%; text-transform: uppercase; font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.15; }
.around-list li::after { content: " ✺"; color: var(--accent); font-size: .7em; }
@media (max-width: 860px) { .around { grid-template-columns: 1fr; } }

/* ---------- House diagram ---------- */
.house { position: relative; max-width: 620px; margin: 0 auto; }
.house-body { position: relative; }
.roof { position: relative; height: 70px; margin: 0 6%; background: var(--ink); clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.roof-bird { position: absolute; left: 50%; top: 18px; width: 58px; transform: translateX(-50%) scale(.72); transform-origin: top; color: #EDB637; --art-2: #DC6430; --eye: var(--ink); }
.floors { border: 3px solid var(--ink); border-top-width: 0; background: var(--ink); display: grid; gap: 3px; }
.floor { display: grid; grid-template-columns: 76px 1fr; background: var(--ink); gap: 3px; }
.floor-label { display: grid; place-items: center; background: var(--ivory); color: var(--ink); padding: 8px 4px; }
.floor-label .floor-tag { flex-direction: column; gap: 4px; font-weight: 700; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; text-align: center; line-height: 1.1; }
.units { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.unit { position: relative; display: flex; flex-direction: column; justify-content: flex-end; gap: 6px; min-height: 128px; padding: 14px; background: var(--bg); color: var(--fg); text-decoration: none; overflow: hidden; transition: filter .2s; }
.unit:hover { filter: brightness(1.08) saturate(1.05); }
.unit-name { font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: clamp(1.15rem, 2.2vw, 1.6rem); line-height: .95; }
.unit-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .8rem; font-weight: 600; line-height: 1.25; }
.unit-sub .badge { font-size: .6rem; padding: .2em .5em .2em .4em; }
.unit-art { position: absolute; top: 10px; right: 10px; width: 44px; height: 44px; opacity: .95; }
.unit.is-here { outline: 4px solid #EDB637; outline-offset: -4px; }
.here { position: absolute; top: 10px; left: 10px; background: #EDB637; color: var(--ink); font-weight: 800; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; padding: 3px 7px; border-radius: 3px; }
.ground { height: 10px; background: repeating-linear-gradient(90deg, var(--ink) 0 12px, transparent 12px 18px); margin: 6px -4%; }
.unit-yard { margin: 14px 0 0 auto; width: 60%; min-height: 96px; border-radius: 0 0 60px 60px; border: 3px solid var(--ink); }
.house figcaption { margin-top: 18px; font-size: .92rem; }
.entry { display: flex; align-items: center; gap: 10px; }
.entry-arrow { width: 56px; flex: none; color: var(--accent); }
@media (max-width: 520px) {
  .floor { grid-template-columns: 50px 1fr; }
  .floor-label .floor-tag { font-size: 0; gap: 0; }
  .floor-label .floor-num { font-size: 1rem; }
  .unit { min-height: 118px; padding: 10px; }
  .unit-art { width: 32px; height: 32px; }
  .unit-yard { width: 80%; }
}
.house-teaser-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.house-teaser-grid .lede { margin: 1.2rem 0; }
@media (max-width: 860px) { .house-teaser-grid { grid-template-columns: 1fr; } }

/* ---------- Location ---------- */
.location { padding: 0; }
.loc-photo .pic { height: clamp(360px, 70vh, 720px); }
.loc-grid { position: relative; margin-top: clamp(-260px, -18vw, -120px); padding-bottom: clamp(64px, 8vw, 120px); }
.loc-card { position: relative; max-width: 680px; background: var(--bg); color: var(--fg); padding: clamp(24px, 4vw, 56px); border-radius: var(--radius); border: 3px solid var(--ink); box-shadow: 10px 10px 0 #EDB637; }
.loc-card .lede { margin: 1rem 0 1.4rem; }
.loc-facts { display: grid; gap: 12px; margin-bottom: 1.6rem; }
.loc-facts div { display: grid; grid-template-columns: 6rem 1fr; gap: 12px; padding-top: 12px; border-top: 2px solid color-mix(in srgb, currentColor 20%, transparent); }
.loc-facts dt { font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; padding-top: .2em; }

/* ---------- Things rail ---------- */
.things-rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(220px, 24vw, 300px); gap: 14px; overflow-x: auto; padding: 4px var(--gutter) 22px; scroll-snap-type: x mandatory; scroll-padding: 0 var(--gutter); }
@media (min-width: 1320px) { .things-rail { padding-left: calc((100vw - var(--max)) / 2 + var(--gutter)); scroll-padding-left: calc((100vw - var(--max)) / 2 + var(--gutter)); } }
.things-rail li { scroll-snap-align: start; }
.things-rail a { position: relative; display: flex; flex-direction: column; justify-content: flex-end; aspect-ratio: 3 / 4; padding: 20px; background: var(--bg); color: var(--fg); text-decoration: none; border-radius: var(--radius); overflow: hidden; transition: transform .25s var(--ease); }
.things-rail a:hover { transform: translateY(-6px) rotate(-1deg); }
.tr-art { position: absolute; top: 16%; left: 50%; transform: translateX(-50%); width: 62%; max-height: 50%; }
.tr-title { font-size: clamp(1.9rem, 3vw, 2.6rem); }
.tr-tag { position: absolute; top: 14px; left: 14px; background: var(--fg); color: var(--bg); font-weight: 800; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }

/* ---------- Blog cards ---------- */
.post-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 1000px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: var(--bg); color: var(--fg); border-radius: var(--radius); overflow: hidden; }
.post-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; }
.post-cover { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--soft); }
.post-cover .pic { height: 100%; opacity: .92; transition: transform .8s var(--ease); }
.post-card:hover .post-cover .pic { transform: scale(1.04); }
.post-art { position: absolute; inset: 18% 22%; width: 56%; height: 64%; }
.post-cover .pic + .post-art { inset: auto 14px 14px auto; width: 64px; height: 64px; }
.post-body { padding: 18px 20px 24px; display: grid; gap: 8px; }
.post-kicker { font-weight: 700; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.post-title { font-family: var(--display); font-weight: 800; font-stretch: 80%; font-size: clamp(1.35rem, 1.8vw, 1.7rem); line-height: 1.02; text-transform: uppercase; }
.post-card-big { grid-column: 1 / -1; }
.post-card-big .post-card-link { display: grid; grid-template-columns: 1.3fr 1fr; }
.post-card-big .post-cover { aspect-ratio: auto; min-height: 360px; }
.post-card-big .post-body { align-content: end; padding: clamp(24px, 4vw, 48px); }
.post-card-big .post-title { font-size: clamp(2rem, 4vw, 3.6rem); }
.post-dek { font-size: 1.1rem; max-width: 40ch; }
@media (max-width: 760px) { .post-card-big .post-card-link { grid-template-columns: 1fr; } .post-card-big .post-cover { min-height: 240px; } }

/* ---------- Waitlist ---------- */
.wl-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.wl-copy { position: relative; }
.wl-copy .script { color: var(--accent); margin-bottom: .6rem; }
.wl-copy .lede { margin: 1.4rem 0 1rem; }
.wl-bird { width: clamp(120px, 18vw, 220px); margin-top: 32px; color: var(--fg); --art-2: var(--accent); --eye: var(--bg); }
@media (prefers-reduced-motion: no-preference) {
  .wl-bird { animation: hover 5s ease-in-out infinite; }
  @keyframes hover { 50% { transform: translate(6px, -8px) rotate(-2deg); } }
}
.wl-form { background: var(--bg); color: var(--fg); border: 3px solid var(--ink); border-radius: var(--radius); padding: clamp(20px, 3.4vw, 40px); box-shadow: 10px 10px 0 var(--ink); }
@media (max-width: 900px) { .wl-grid { grid-template-columns: 1fr; } .wl-bird { display: none; } .wl-form { box-shadow: 6px 6px 0 var(--ink); } }
.waitlist { display: grid; gap: 18px; --accent: #C44A20; }
.field { display: grid; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-row .field-sm { max-width: none; }
.field-row:has(.field-sm) { grid-template-columns: 1fr 9rem; }
@media (max-width: 560px) { .field-row, .field-row:has(.field-sm) { grid-template-columns: 1fr; } }
.field label, .field legend { font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.opt { font-weight: 500; letter-spacing: .04em; text-transform: none; opacity: .75; margin-left: .3em; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; background: #fff; color: var(--ink); border: 2px solid var(--ink); border-radius: var(--radius); font-size: 16px; }
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid #1D4FB8; outline-offset: 1px; }
.field [aria-invalid="true"] { border-color: #B3261E; box-shadow: 0 0 0 2px #B3261E; }
fieldset.field { border: 0; padding: 0; margin: 0; }
fieldset.field legend { margin-bottom: 8px; padding: 0; }
.stay-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.field .stay-chip { position: relative; font-size: 1rem; letter-spacing: 0; text-transform: none; font-weight: 600; }
.stay-chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.stay-chip span { display: inline-flex; min-height: 42px; align-items: center; padding: 8px 14px; border: 2px solid var(--ink); border-radius: 999px; font-weight: 600; font-size: .92rem; background: #fff; color: var(--ink); cursor: pointer; transition: background .15s, color .15s; }
.stay-chip input:checked + span { background: var(--ink); color: var(--ivory); }
.stay-chip input:checked + span::before { content: "✓ "; white-space: pre; }
.stay-chip input:focus-visible + span { outline: 3px solid #1D4FB8; outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; }
.waitlist .btn { --b-bg: var(--ink); --b-fg: var(--ivory); --b-sh: #DC6430; }
.fine { font-size: .85rem; opacity: .85; max-width: 32ch; }
.form-error { background: #FBE3DF; color: #7A160F; border-left: 4px solid #B3261E; padding: 10px 14px; border-radius: 4px; font-weight: 600; }
.waitlist.is-sending button[type="submit"] { opacity: .7; pointer-events: none; }
.success { display: grid; gap: 14px; justify-items: start; padding: 10px 0; }
.success:focus { outline: none; }
.success .display { font-size: clamp(2.4rem, 5vw, 4rem); }
.success-bird { width: 110px; color: #1D4FB8; --art-2: #DC6430; --eye: var(--ivory); }

/* ---------- Reserve dialog ---------- */
.reserve-dialog { width: min(720px, calc(100vw - 24px)); max-height: calc(100dvh - 24px); padding: 0; border: 3px solid var(--ink); border-radius: var(--radius); background: var(--bg); color: var(--fg); box-shadow: 12px 12px 0 #DC6430; }
.reserve-dialog::backdrop { background: rgba(22, 26, 43, .72); }
.rd-inner { position: relative; padding: clamp(22px, 4vw, 44px); }
.rd-head { margin-bottom: 22px; padding-right: 40px; }
.rd-head .display { font-size: clamp(2.4rem, 6vw, 3.6rem); margin: .2rem 0 .8rem; }
.rd-head .script { color: #C44A20; }
.rd-close { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border: 2px solid var(--ink); border-radius: 50%; background: var(--bg); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.rd-close:hover { background: var(--ink); color: var(--ivory); }
@media (prefers-reduced-motion: no-preference) {
  .reserve-dialog[open] { animation: pop .28s var(--ease); }
  @keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 860px) {
  .sticky-cta { position: fixed; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); z-index: 40; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 10px 10px 16px; background: var(--ink); color: var(--cream); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(0,0,0,.25); transform: translateY(140%); transition: transform .35s var(--ease); --bg: var(--ink); --fg: var(--cream); --accent: #EDB637; }
  .sticky-cta.is-on { transform: none; }
  .sticky-cta p { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
  .sticky-cta .btn { --b-fg: var(--ink); box-shadow: none; }
  body { padding-bottom: 0; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); color: var(--fg); padding: clamp(56px, 8vw, 110px) 0 28px; }
.foot-top { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end; padding-bottom: 48px; border-bottom: 2px solid color-mix(in srgb, var(--fg) 25%, transparent); }
.foot-brand { display: grid; gap: 16px; }
.foot-bird { width: 96px; color: var(--accent); --art-2: #DC6430; --eye: var(--bg); }
.foot-word { font-size: clamp(4rem, 13vw, 10rem); line-height: .8; }
.foot-line { font-size: 1.1rem; }
.foot-cta-text { margin-bottom: 1.4rem; max-width: 36ch; }
.foot-cta .btn { --b-fg: var(--ink); --b-sh: var(--cream); }
.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 44px 0; }
.foot-h { font-weight: 800; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.foot-col ul { display: grid; gap: 8px; }
.foot-col a { text-decoration: none; }
.foot-col a:hover { text-decoration: underline; }
address { font-style: normal; line-height: 1.5; }
.foot-map { display: inline-block; margin-top: 10px; font-weight: 700; }
.foot-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 22px; border-top: 2px solid color-mix(in srgb, var(--fg) 25%, transparent); font-size: .85rem; opacity: .85; }
.foot-owners { text-decoration: none; opacity: .7; }
@media (max-width: 860px) { .foot-top { grid-template-columns: 1fr; } .foot-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) { .site-footer { padding-bottom: 96px; } }

/* ---------- Inner-page hero ---------- */
.page-hero { position: relative; background: var(--bg); color: var(--fg); padding: clamp(40px, 6vw, 90px) 0 clamp(48px, 7vw, 100px); overflow: hidden; }
.page-hero .h-mega, .page-hero .mega { margin: .1em 0 .3em; }
.page-hero .lede { max-width: 44ch; }
.page-hero-art { position: absolute; right: var(--gutter); top: 30px; width: clamp(90px, 16vw, 220px); opacity: .95; }
@media (max-width: 700px) { .page-hero-art { width: 80px; top: 12px; opacity: .5; } }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .6; }
.crumbs a { text-decoration: none; opacity: .8; }
.crumbs a:hover { text-decoration: underline; opacity: 1; }

/* ---------- Room page ---------- */
.room-hero { position: relative; background: var(--bg); color: var(--fg); padding-top: clamp(20px, 4vw, 48px); overflow: hidden; }
.room-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 72px); align-items: end; }
.room-hero-copy { padding-bottom: clamp(40px, 6vw, 90px); }
.room-hero-copy .mega { font-size: clamp(4.6rem, 16vw, 12rem); margin: .05em 0 .1em; }
.room-hero-pic { position: relative; }
.room-hero-pic .pic { aspect-ratio: 4 / 4.2; border-radius: 999px 999px 0 0; overflow: hidden; }
.room-hero-art { position: absolute; left: -8%; top: 8%; width: clamp(80px, 18%, 170px); }
@media (max-width: 860px) {
  .room-hero-grid { grid-template-columns: 1fr; }
  .room-hero-pic { order: -1; }
  .room-hero-pic .pic { aspect-ratio: 4 / 3.4; border-radius: 160px 160px 0 0; }
  .room-hero-copy { padding-bottom: 40px; }
  .room-hero-art { left: auto; right: 0; top: -10px; width: 90px; }
}
.facts-bar { background: var(--fg); color: var(--bg); }
.facts-bar ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.facts-bar li { flex: 1 1 auto; text-align: center; padding: 18px 18px; font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: clamp(1.05rem, 1.7vw, 1.45rem); line-height: 1; border-right: 2px solid color-mix(in srgb, var(--bg) 25%, transparent); }
.facts-bar li:last-child { border-right: 0; }
@media (max-width: 700px) { .facts-bar ul { display: grid; grid-template-columns: 1fr 1fr; } .facts-bar li { border-bottom: 2px solid color-mix(in srgb, var(--bg) 25%, transparent); } }

.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-flow: dense; gap: 12px; }
.gallery-grid .g-item { position: relative; border-radius: var(--radius); overflow: hidden; grid-column: span 2; aspect-ratio: 4 / 5; cursor: zoom-in; }
.gallery-grid .g-item.g-wide { grid-column: span 4; aspect-ratio: auto; }
.gallery-grid .g-item.g-tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-grid .g-item:first-child { grid-column: span 4; grid-row: span 2; aspect-ratio: auto; }
.g-item .pic { height: 100%; transition: transform .8s var(--ease); }
.g-item:hover .pic { transform: scale(1.03); }
.g-btn { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; background: none; cursor: zoom-in; }
@media (max-width: 760px) {
  .gallery-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter) 10px; }
  .gallery-grid .g-item, .gallery-grid .g-item:first-child { flex: 0 0 84%; aspect-ratio: 4 / 5; scroll-snap-align: center; }
}
.swipe-hint { display: none; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-top: 10px; opacity: .8; }
@media (max-width: 760px) { .swipe-hint { display: block; } }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 96px); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.amen { columns: 2; column-gap: 28px; margin-top: 1.2rem; }
.amen li { break-inside: avoid; padding: 10px 0 10px 28px; position: relative; border-bottom: 2px solid color-mix(in srgb, currentColor 16%, transparent); font-weight: 600; }
.amen li::before { content: ""; position: absolute; left: 0; top: 17px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
@media (max-width: 560px) { .amen { columns: 1; } }
.note { margin-top: 1.4rem; padding: 14px 18px; border-left: 5px solid var(--accent); background: color-mix(in srgb, var(--fg) 8%, transparent); border-radius: 0 var(--radius) var(--radius) 0; font-weight: 600; }
.why { position: relative; overflow: hidden; }
.why-grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.why-art { width: clamp(140px, 24vw, 320px); }
.why .lede { max-width: 46ch; margin-top: 1.2rem; }
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } .why-art { width: 140px; } }
.access-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 6vw, 96px); align-items: center; }
@media (max-width: 860px) { .access-grid { grid-template-columns: 1fr; } }
.common { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 32px; }
.common figure { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.4; }
.common .pic { height: 100%; }
.common figcaption { position: absolute; left: 10px; bottom: 10px; display: flex; align-items: center; gap: 8px; background: var(--bg); color: var(--fg); padding: 6px 10px 6px 6px; border-radius: 4px; font-weight: 700; font-size: .85rem; }
@media (max-width: 760px) { .common { grid-template-columns: 1fr 1fr; } .common figure:first-child { grid-column: span 2; } }
.next-rooms { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 28px; }
.next-rooms a { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; min-height: 120px; padding: 16px; background: var(--bg); color: var(--fg); text-decoration: none; border-radius: var(--radius); border: 2px solid var(--ink); font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: 1.5rem; line-height: .95; }
.next-rooms a:hover { box-shadow: 5px 5px 0 var(--ink); transform: translate(-3px, -3px); }
.next-rooms .art { width: 44px; height: 44px; flex: none; }
@media (max-width: 760px) { .next-rooms { grid-template-columns: 1fr 1fr; } }

/* ---------- Ocean Suite page ---------- */
.zone { position: relative; }
.zone-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(28px, 6vw, 96px); align-items: center; }
.zone-grid.flip > :first-child { order: 2; }
@media (max-width: 860px) { .zone-grid { grid-template-columns: 1fr; } .zone-grid.flip > :first-child { order: 0; } }
.zone-where { font-weight: 700; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1rem; }
.zone .mega { font-size: clamp(4rem, 12vw, 9rem); }
.zone-pic { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 4.6; }
.zone-pic.arch { border-radius: 999px 999px var(--radius) var(--radius); }
.zone-art { position: absolute; width: clamp(90px, 14vw, 190px); }
.balcony { position: relative; background: var(--bg); color: var(--fg); }
.balcony-pic .pic { height: min(92vh, 900px); }
@media (max-width: 700px) { .balcony-pic .pic { height: 70vh; } }
.balcony-card { position: relative; margin-top: clamp(-200px, -14vw, -100px); }
.balcony-card .inner { max-width: 620px; background: var(--bg); color: var(--fg); padding: clamp(24px, 4vw, 48px); border-radius: var(--radius); border: 3px solid var(--fg); box-shadow: 10px 10px 0 var(--accent2); }

/* ---------- House page ---------- */
.floor-sec { border-top: 3px solid var(--fg); padding-top: clamp(28px, 4vw, 48px); margin-top: clamp(40px, 6vw, 80px); }
.floor-sec:first-child { margin-top: 0; }
.floor-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.floor-head .floor-num { width: 2.2em; height: 2.2em; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.floor-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.floor-card { display: grid; grid-template-rows: auto 1fr; background: var(--bg); color: var(--fg); border-radius: var(--radius); overflow: hidden; text-decoration: none; border: 2px solid var(--ink); }
.floor-card .pic { aspect-ratio: 4 / 3; }
.floor-card div { padding: 16px 18px 20px; display: grid; gap: 8px; align-content: start; }
.floor-card .fc-name { font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: 1.8rem; line-height: .95; }
.matrix-wrap { overflow-x: auto; margin-top: 28px; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--ivory); color: var(--ink); }
.matrix { width: 100%; border-collapse: collapse; min-width: 720px; font-size: .95rem; }
.matrix th, .matrix td { padding: 14px 14px; text-align: left; vertical-align: top; border-bottom: 2px solid #E4D8C2; }
.matrix thead th { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; background: var(--ink); color: var(--cream); }
.matrix tbody th { font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: 1.3rem; line-height: 1; white-space: nowrap; }
.matrix tbody th a { text-decoration: none; }
.matrix tbody th span { display: inline-block; width: 12px; height: 12px; border-radius: 50%; margin-right: 8px; vertical-align: middle; border: 1.5px solid var(--ink); }
.matrix td .badge { --fg: var(--ink); --bg: var(--ivory); margin: 0 6px 4px 0; }
.matrix .muted { opacity: .55; }

/* ---------- Things to do page ---------- */
.jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.jump a { padding: .45em .95em; border: 2px solid currentColor; border-radius: 999px; font-weight: 700; font-size: .88rem; text-decoration: none; }
.jump a:hover { background: var(--fg); color: var(--bg); }
.thing { display: grid; grid-template-columns: 180px 1fr; gap: clamp(20px, 4vw, 56px); align-items: center; padding: clamp(40px, 6vw, 80px) 0; }
.thing-art { width: 100%; max-height: 160px; }
.thing h2 { font-size: clamp(2.8rem, 7vw, 5.6rem); }
.thing p { max-width: 58ch; margin-top: 1rem; font-size: 1.1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.2rem; }
.tags li { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3em .7em; border: 2px solid currentColor; border-radius: 4px; }
.seasonal { display: inline-block; margin-left: .4em; vertical-align: middle; font-family: var(--body); font-size: .8rem; letter-spacing: .12em; padding: .35em .7em; background: var(--fg); color: var(--bg); border-radius: 4px; }
@media (max-width: 700px) { .thing { grid-template-columns: 1fr; } .thing-art { width: 110px; } }

/* ---------- La Paz page ---------- */
.lp-hero { position: relative; color: #fff; min-height: min(86vh, 820px); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.lp-hero .pic { position: absolute; inset: 0; }
.lp-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,26,43,0) 30%, rgba(22,26,43,.85) 100%); }
.lp-hero .wrap { position: relative; z-index: 1; padding-bottom: clamp(40px, 6vw, 80px); }
.lp-hero .h-mega { font-size: clamp(3.2rem, 10vw, 8.4rem); color: #fff; }
.lp-hero .lede { color: #fff; margin-top: 1rem; }
.lp-sec-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: clamp(28px, 6vw, 96px); align-items: start; }
.lp-sec-grid .h-mega { position: sticky; top: calc(var(--header-h) + 24px); }
@media (max-width: 860px) { .lp-sec-grid { grid-template-columns: 1fr; } .lp-sec-grid .h-mega { position: static; } }
.list-cols { columns: 2; column-gap: 28px; }
.list-cols li { break-inside: avoid; padding: 9px 0; border-bottom: 2px solid color-mix(in srgb, currentColor 16%, transparent); font-weight: 600; }
@media (max-width: 560px) { .list-cols { columns: 1; } }
.sub-h { font-weight: 800; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; margin: 2rem 0 .6rem; color: var(--accent); }
.sub-h:first-child { margin-top: 0; }
.pull { font-family: var(--display); font-weight: 700; font-stretch: 85%; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.1; }

/* ---------- Blog post ---------- */
.post-hero { background: var(--bg); color: var(--fg); padding: clamp(40px, 6vw, 90px) 0 clamp(40px, 6vw, 80px); position: relative; overflow: hidden; }
.post-hero h1 { font-size: clamp(2.8rem, 7.5vw, 6.4rem); max-width: 16ch; margin: .2em 0 .35em; }
.post-hero .lede { max-width: 48ch; }
.post-meta { margin-top: 1.4rem; font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; opacity: .9; }
.post-hero-art { position: absolute; right: var(--gutter); bottom: 20px; width: clamp(100px, 18vw, 240px); }
@media (max-width: 700px) { .post-hero-art { width: 90px; opacity: .45; } }
.post-cover-img .pic { max-height: 70vh; aspect-ratio: 16 / 8; }
.prose { max-width: 70ch; margin: 0 auto; font-size: clamp(1.05rem, .5vw + .9rem, 1.2rem); line-height: 1.7; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-family: var(--display); font-weight: 800; font-stretch: 80%; text-transform: uppercase; font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: .98; margin-top: 1.8em; }
.prose h3 { font-family: var(--display); font-weight: 800; font-stretch: 85%; font-size: 1.45rem; line-height: 1.1; margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose li::marker { color: #C44A20; font-weight: 800; }
.prose blockquote { border-left: 6px solid #DC6430; padding: .2em 0 .2em 1.1em; font-family: var(--display); font-weight: 700; font-stretch: 85%; font-size: 1.5rem; line-height: 1.25; }
.prose a { color: #1A46A8; font-weight: 600; }
.post-end { max-width: 70ch; margin: 3rem auto 0; padding-top: 1.6rem; border-top: 2px solid var(--ink); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.faq-nav { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 6px; }
.faq-nav a { text-decoration: none; font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; padding: 8px 0; border-bottom: 2px solid color-mix(in srgb, currentColor 15%, transparent); }
.faq-nav a:hover { color: #C44A20; }
@media (max-width: 860px) { .faq-layout { grid-template-columns: 1fr; } .faq-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; } .faq-nav a { border: 2px solid currentColor; border-radius: 999px; padding: .35em .9em; } }
.faq-group + .faq-group { margin-top: clamp(48px, 6vw, 80px); }
.faq-group > h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
.qa { border-top: 2px solid var(--ink); }
.qa:last-child { border-bottom: 2px solid var(--ink); }
.qa summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 2px; cursor: pointer; font-weight: 700; font-size: clamp(1.05rem, 1.2vw + .6rem, 1.25rem); line-height: 1.3; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 36px; height: 36px; border: 2px solid var(--ink); border-radius: 50%; font-size: 1.4rem; font-weight: 500; transition: transform .25s var(--ease), background .2s; }
.qa[open] summary::after { transform: rotate(45deg); background: var(--ink); color: var(--cream); }
.qa summary:hover { color: #C44A20; }
.qa .a { padding: 0 2px 22px; max-width: 64ch; }
.qa .a > * + * { margin-top: .8em; }
.qa .a ul { padding-left: 1.2em; }
.qa .a a { font-weight: 700; }

/* ---------- Gallery page ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filters button { min-height: 44px; padding: .5em 1.1em; border: 2px solid var(--ink); border-radius: 999px; background: transparent; font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.filters button[aria-pressed="true"] { background: var(--ink); color: var(--cream); }
.masonry { columns: 3 300px; column-gap: 14px; }
.masonry .m-item { break-inside: avoid; margin-bottom: 14px; border-radius: var(--radius); overflow: hidden; position: relative; }
.masonry .m-item[hidden] { display: none; }
.m-item .pic img { height: auto; }
.m-item:nth-child(5n+1) { border-radius: 999px 999px var(--radius) var(--radius); }
.m-item:nth-child(7n+3) { border-radius: 50%; aspect-ratio: 1; }
.m-item:nth-child(7n+3) .pic, .m-item:nth-child(7n+3) .pic img { height: 100%; aspect-ratio: 1; }
.m-cap { position: absolute; left: 10px; bottom: 10px; background: var(--ivory); color: var(--ink); padding: 4px 9px; border-radius: 4px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.m-item:nth-child(7n+3) .m-cap { left: 50%; transform: translateX(-50%); bottom: 14%; }

/* ---------- Lightbox ---------- */
.lightbox { width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; margin: 0; padding: 0; border: 0; background: rgba(12, 14, 24, .96); color: #fff; }
.lightbox::backdrop { background: rgba(12, 14, 24, .9); }
.lb-stage { position: absolute; inset: 56px 12px 72px; display: grid; place-items: center; }
.lb-stage img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: 4px; }
.lb-cap { position: absolute; left: 16px; right: 16px; bottom: 18px; text-align: center; font-size: .92rem; }
.lb-btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 2px solid #fff; background: rgba(0,0,0,.35); color: #fff; font-size: 1.5rem; cursor: pointer; display: grid; place-items: center; }
.lb-btn:hover { background: #fff; color: var(--ink); }
.lb-close { top: 10px; right: 12px; width: 44px; height: 44px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; top: 20px; left: 18px; font-weight: 700; letter-spacing: .12em; font-size: .8rem; }

/* ---------- Misc ---------- */
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }
.stack > * + * { margin-top: 1.2rem; }
.cta-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cta-strip .h-xl { max-width: 16ch; }
.contact-frame { width: 100%; height: 760px; border: 3px solid var(--ink); border-radius: var(--radius); background: #fff; }
.four04 .h-mega { font-size: clamp(5rem, 20vw, 16rem); }

/* ---------- Reveal motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .js [data-reveal].in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
@media print { .site-header, .sticky-cta, .reserve-dialog, .edge { display: none !important; } }

/* ---------- Motif placement on zone sections ---------- */
.facts-bar ul { list-style: none; margin: 0; padding: 0; }
.zone > .zone-art { right: var(--gutter); top: clamp(24px, 4vw, 56px); width: clamp(110px, 14vw, 200px); }
.zone-grid > div { position: relative; }
.zone-grid > div > .zone-art { right: -3%; bottom: -8%; width: clamp(70px, 9vw, 130px); }
@media (max-width: 860px) { .zone > .zone-art { width: 90px; opacity: .6; } .zone-grid > div > .zone-art { right: 8px; bottom: -24px; } }

/* ==========================================================================
   Illustrated emblems (one per space). Circular, transparent, used like stickers.
   ========================================================================== */
picture.illo { display: block; aspect-ratio: 1; }
picture.illo img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 14px rgba(20, 20, 30, .18)); }
.room-badge, .room-hero-badge, .hero-stamp, .hero-bird, .collage-badge, .suite-manta, .zone-art, .wl-bird, .foot-bird, .inline-badge, .house-illo, .page-hero-art, .post-hero-art, .why-art { transition: transform .6s var(--ease); }
@media (prefers-reduced-motion: no-preference) {
  .room-band:hover .room-badge, .room-hero:hover .room-hero-badge, .hero:hover .hero-stamp { transform: rotate(0deg) scale(1.03); }
}

/* hero */
.hero-stamp { position: absolute; left: -4%; bottom: -2%; width: clamp(140px, 36%, 280px); transform: rotate(-6deg); z-index: 2; }
.hero-bird { position: absolute; right: -3%; top: -4%; width: clamp(90px, 20%, 160px); transform: rotate(8deg); z-index: 2; }
.hero-main { box-shadow: 12px 12px 0 #0169AA; }
@media (max-width: 860px) { .hero-stamp { width: 38%; left: -10px; bottom: 0; } .hero-bird { width: 24%; right: -6px; top: -10px; } }
.eco-strip li { padding: 12px 20px 12px 12px; }
.eco-art { width: 44px; height: 44px; flex: none; }

/* room bands + index tiles */
.room-badge { position: absolute; top: -7%; left: -6%; width: clamp(110px, 34%, 210px); transform: rotate(-7deg); z-index: 3; }
.flip .room-badge { left: auto; right: -6%; transform: rotate(7deg); }
@media (max-width: 860px) { .room-badge { top: -26px; left: -8px; width: 30%; } .flip .room-badge { right: -8px; } }
.ri-art { width: 76px; height: 76px; margin: -4px 0 0 -4px; }
.room-index a { gap: 10px; }
.nr-art { width: 56px; height: 56px; flex: none; }

/* room page */
.room-hero-badge { position: absolute; left: -9%; top: 6%; width: clamp(120px, 30%, 220px); transform: rotate(-8deg); z-index: 2; }
@media (max-width: 860px) { .room-hero-badge { left: auto; right: 8px; top: auto; bottom: -34px; width: 34%; } }
.why-art { width: clamp(200px, 30vw, 420px); transform: rotate(-4deg); }
@media (max-width: 700px) { .why-art { width: 64vw; margin: 0 auto; } }

/* ocean suite */
.suite-manta { position: absolute; right: var(--gutter); bottom: 12px; width: clamp(120px, 16vw, 220px); opacity: 1; transform: rotate(6deg); }
@media (max-width: 860px) { .suite-manta { display: block; position: static; width: 44vw; margin: 8px auto 0; } }
.sr-art { position: absolute; top: 16px; right: 16px; width: 88px; height: 88px; }
.zone > .zone-art { position: absolute; right: var(--gutter); top: clamp(20px, 4vw, 48px); width: clamp(110px, 14vw, 200px); transform: rotate(8deg); }
.zone-grid > div > .zone-art { position: absolute; right: -4%; bottom: -8%; width: clamp(96px, 12vw, 180px); transform: rotate(-6deg); }
@media (max-width: 860px) { .zone > .zone-art { width: 84px; opacity: 1; top: 12px; } .zone-grid > div > .zone-art { right: 6px; bottom: -28px; width: 30%; } }

/* sections, heroes, footer */
.collage-badge { position: absolute; right: -2%; bottom: -8%; width: clamp(110px, 16%, 180px); transform: rotate(8deg); z-index: 4; }
@media (max-width: 860px) { .collage-badge { position: static; width: 38vw; margin: 12px 0 0 auto; } }
.wl-bird { width: clamp(150px, 20vw, 240px); margin-top: 28px; transform: rotate(-6deg); }
@media (prefers-reduced-motion: no-preference) { .wl-bird { animation: hover 6s ease-in-out infinite; } }
@media (max-width: 900px) { .wl-bird { display: none; } }
.inline-badge { width: clamp(110px, 12vw, 160px); margin: 0 0 18px; transform: rotate(-5deg); }
.lp-sec-grid > div:first-child { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.lp-sec-grid > div:first-child .h-mega { position: static; }
@media (max-width: 860px) { .lp-sec-grid > div:first-child { position: static; } }
.house-illo { width: clamp(150px, 20vw, 260px); margin: 0 0 12px; transform: rotate(-4deg); }
.page-hero-art { position: absolute; right: var(--gutter); top: 24px; width: clamp(96px, 17vw, 240px); transform: rotate(6deg); opacity: 1; }
@media (max-width: 700px) { .page-hero-art { width: 84px; top: 10px; opacity: 1; } }
.post-hero-art { position: absolute; right: var(--gutter); bottom: 24px; width: clamp(96px, 17vw, 240px); transform: rotate(6deg); }
@media (max-width: 700px) { .post-hero-art { width: 84px; opacity: 1; } }
.foot-bird { width: 104px; transform: rotate(-6deg); }
.post-illo { position: absolute; inset: 12% 22%; width: 56%; height: auto; }
.post-cover .pic + .post-illo { inset: auto 12px 12px auto; width: 84px; }

/* house diagram units */
.unit-art { position: absolute; top: 8px; right: 8px; width: 52px; height: 52px; }
.unit-yard .unit-art { top: 10px; right: 14px; }
@media (max-width: 520px) { .unit-art { width: 38px; height: 38px; } }
@media (max-width: 860px) { .sr-art { width: 56px; height: 56px; top: 12px; right: 12px; } .sr-copy { padding-top: 76px; } }

/* Homepage hero: illustrated header + real-photo stamp */
@media (min-width: 861px) { .hero-grid { grid-template-columns: minmax(0, .85fr) minmax(0, 1.35fr); } }
.hero-illustration { aspect-ratio: 1672 / 941; border-radius: 28px; box-shadow: 12px 12px 0 #0169AA; }
.hero-photo { position: absolute; left: -5%; bottom: 0; width: clamp(130px, 30%, 250px); aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 5px solid var(--cream); box-shadow: 0 10px 26px rgba(20, 20, 30, .25); transform: rotate(-5deg); z-index: 2; }
.hero-photo .pic { height: 100%; }
.hero-media { padding-bottom: clamp(60px, 9vw, 120px); }
@media (max-width: 860px) {
  .hero-illustration { aspect-ratio: 1672 / 941; border-radius: 18px; box-shadow: 6px 6px 0 #0169AA; }
  .hero-photo { width: 34%; left: 8px; bottom: 6px; }
}

.suite-living { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.suite-living .pic { height: 100%; }
.common-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .common-4 { grid-template-columns: 1fr 1fr; } .common-4 figure:first-child { grid-column: auto; } }
.floor-cards-1 { grid-template-columns: minmax(0, 420px); }
@media (max-width: 520px) { .floor-cards-1 { grid-template-columns: 1fr; } }

/* Stay page: Ocean Suite trio */
.suite-trio { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; }
.st-item { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; }
.st-main { aspect-ratio: auto; }
.st-item .pic { height: 100%; transition: transform .8s var(--ease); }
.st-item:hover .pic { transform: scale(1.04); }
.st-cap { position: absolute; left: 12px; bottom: 12px; background: var(--bg); color: var(--fg); padding: 5px 10px; border-radius: 4px; font-weight: 700; font-size: .85rem; }
@media (max-width: 760px) { .suite-trio { grid-template-columns: 1fr 1fr; } .st-main { grid-column: 1 / -1; aspect-ratio: 4 / 3; } }

/* Ocean Suite facts: one row on desktop */
@media (min-width: 861px) {
  .facts-bar ul { flex-wrap: nowrap; }
  .facts-bar li { flex: 1 1 0; padding: 16px 10px; font-size: clamp(.95rem, 1.3vw, 1.35rem); white-space: nowrap; }
}

/* Things to do: illustrated cards */
.act-group .h-xl { margin-bottom: clamp(24px, 3vw, 40px); }
.act-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(16px, 2vw, 28px); }
.act-card { display: grid; align-content: start; gap: 8px; padding: 20px; background: var(--ivory); border: 2px solid var(--ink); border-radius: var(--radius); scroll-margin-top: calc(var(--header-h) + 20px); }
.act-group[style*="FBF4E6"] .act-card { background: #fff; }
.act-illo { width: min(220px, 78%); margin: 0 auto 6px; transition: transform .5s var(--ease); }
.act-card:hover .act-illo { transform: rotate(-4deg) scale(1.04); }
.act-title { font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: clamp(1.5rem, 2.2vw, 1.9rem); line-height: 1; }
.act-title .seasonal { font-size: .7rem; vertical-align: middle; background: var(--ink); color: var(--cream); }
.act-link { font-weight: 700; font-size: .9rem; margin-top: 4px; }

/* Homepage "Go outside" rail with illustrations */
.things-rail a { background: var(--ivory); color: var(--ink); border: 2px solid var(--ink); justify-content: flex-end; }
.tr-illo { position: absolute; top: 8%; left: 50%; transform: translateX(-50%); width: 78%; }
.things-rail a:hover .tr-illo img { transform: rotate(-4deg); transition: transform .4s var(--ease); }
.tr-tag { background: var(--ink); color: var(--cream); }

/* Come home: keep the Oasis sticker off the photo captions */
.collage-badge { right: auto; left: 46%; bottom: -14%; }

/* hero no longer ends in the ecosystem strip */
.hero { padding-bottom: clamp(48px, 7vw, 96px); }

.jump-light a { color: #fff; border-color: rgba(255,255,255,.7); }
.jump-light a:hover { background: #fff; color: var(--ink); }
.act-group h3.h-xl { margin-bottom: clamp(24px, 3vw, 40px); }

/* Blog categories */
.cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cat-chip { display: inline-flex; align-items: center; min-height: 40px; padding: .4em 1em; border: 2px solid var(--ink); border-radius: 999px; font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--ink); }
.cat-chip:hover { background: rgba(0,0,0,.06); }
.cat-chip[aria-current="page"] { background: var(--ink); color: var(--cream); }
.eyebrow-plain a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.act-card { position: relative; }
.act-link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
@media (max-width: 700px) {
  .cat-chips { flex-wrap: nowrap; overflow-x: auto; margin-inline: -16px; padding: 0 16px 6px; scrollbar-width: none; }
  .cat-chips::-webkit-scrollbar { display: none; }
  .cat-chip { flex: none; }
}

/* Homepage "Go outside": compact grid of illustrated tiles (no sideways scrolling) */
.things-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 8px; }
.things-grid a { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; padding: 16px 10px 14px; background: var(--ivory); color: var(--ink); border: 2px solid var(--ink); border-radius: var(--radius); text-align: center; text-decoration: none; transition: transform .25s var(--ease); }
.things-grid a:hover { transform: translateY(-4px); }
.tg-illo { width: min(120px, 80%); }
.tg-title { font-family: var(--display); font-stretch: 75%; font-weight: 800; font-size: 1.15rem; line-height: 1.15; text-transform: uppercase; letter-spacing: .02em; }
.things-grid .tr-tag { top: 8px; left: 8px; font-size: .58rem; }
@media (max-width: 900px) { .things-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .things-grid { gap: 8px; } .things-grid a { padding: 12px 6px 10px; gap: 6px; } .tg-title { font-size: .82rem; } .things-grid .tr-tag { top: 5px; left: 5px; font-size: .5rem; padding: 2px 5px; } }

/* Mobile menu: full screen below the header (lives outside the header so the
   header's backdrop-filter can't trap it) */
.mobile-menu { position: fixed; inset: var(--header-h) 0 0; z-index: 60; border-top: 0; padding-top: 20px; }
.mobile-menu li a { font-size: clamp(2rem, 9.5vw, 3rem); }
.mobile-menu .mm-sub { display: grid; gap: 0; margin: 2px 0 10px 4px; padding-left: 14px; border-left: 3px solid #D4562A; }
.mobile-menu .mm-sub a { font-family: var(--body); font-stretch: 100%; text-transform: none; font-weight: 600; font-size: 1.15rem; line-height: 1.3; padding: 6px 0; }
.mm-small { display: flex; gap: 22px; margin-top: 18px; font-weight: 700; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
body:has(.mobile-menu:not([hidden])) .sticky-cta { display: none; }

/* iOS Safari: date inputs have an intrinsic min width and collapse when empty */
input[type="date"] { -webkit-appearance: none; appearance: none; min-width: 0; width: 100%; display: block; min-height: 52px; }
input[type="date"]::-webkit-date-and-time-value { text-align: left; }
.field, .field-row > * { min-width: 0; }

/* "At a glance" table becomes one card per stay on small screens */
@media (max-width: 760px) {
  .matrix-wrap { overflow: visible; border: 0; background: transparent; }
  .matrix { min-width: 0; display: block; }
  .matrix thead { display: none; }
  .matrix tbody { display: grid; gap: 14px; }
  .matrix tr { display: block; background: var(--ivory); color: var(--ink); border: 2px solid var(--ink); border-radius: var(--radius); padding: 14px 16px 6px; }
  .matrix tbody th { display: block; padding: 0 0 10px; border-bottom: 2px solid #E4D8C2; font-size: 1.5rem; white-space: normal; }
  .matrix td { display: grid; grid-template-columns: 7.5rem 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid #E4D8C2; font-size: .95rem; }
  .matrix td:last-child { border-bottom: 0; }
  .matrix td::before { content: attr(data-label); font-weight: 700; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; padding-top: 4px; }
  .matrix td .badge { margin: 0 6px 6px 0; }
}
.lp-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; }
.lp-head-row .inline-badge { flex: none; margin: 0; }
.lp-sec-grid .inline-badge, .lp-head-row .inline-badge { width: clamp(130px, 15vw, 210px); }
/* The menu sits outside the header, so pin its colors instead of inheriting the page theme */
.mobile-menu { --bg: var(--ivory); --fg: var(--ink); --accent: #D4562A; background: var(--ivory); color: var(--ink); }
.mobile-menu a { color: var(--ink); }
.mobile-menu a[aria-current="page"] { color: #B8431C; }
.mobile-menu .btn { --b-bg: var(--ink); --b-fg: var(--cream); --b-sh: #D4562A; background: var(--ink); color: var(--cream); }
.post-card-soon .post-card-link { position: relative; cursor: default; }

.soon-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--ink); color: var(--cream); font-weight: 800; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; padding: 4px 9px; border-radius: 3px; }
.act-soon { font-weight: 700; font-size: .85rem; margin-top: 4px; opacity: .7; }
.back-link { display: inline-flex; align-items: center; gap: .45em; margin-bottom: .7rem; padding: .35em .9em; border: 2px solid currentColor; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; }
.back-link:hover { background: color-mix(in srgb, currentColor 12%, transparent); }
.back-link span { transition: transform .2s var(--ease); }
.back-link:hover span { transform: translateX(-3px); }

/* Compact footer on phones */
@media (max-width: 700px) {
  .site-footer { padding: 36px 0 92px; }
  .foot-top { gap: 22px; padding-bottom: 26px; }
  .foot-brand { gap: 8px; }
  .foot-bird { display: none; }
  .foot-word { font-size: 2.6rem; line-height: .9; }
  .foot-word br { display: none; }
  .foot-line { font-size: .95rem; }
  .foot-cta .eyebrow-plain { margin-bottom: .5rem; }
  .foot-cta-text { display: none; }
  .foot-col-stay { display: none; }
  .foot-cols { grid-template-columns: 1fr 1fr; gap: 22px 16px; padding: 26px 0; font-size: .95rem; }
  .foot-col-find { grid-column: 1 / -1; }
  .foot-h { margin-bottom: 8px; }
  .foot-col ul { gap: 4px; }
  .foot-base { padding-top: 16px; font-size: .78rem; align-items: center; }
}
.post-cover-soon { display: grid; place-items: center; background: #8E8E8A; aspect-ratio: 4 / 3; }
.post-cover-soon span { color: #fff; font-family: var(--display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: .02em; }

/* Language switcher (header dropdown + row in the mobile menu) */
.lang-switch { position: relative; flex: none; }
.lang-switch summary { list-style: none; display: inline-flex; align-items: center; gap: 4px; min-height: 40px; padding: 0 10px; border: 2px solid var(--ink); border-radius: var(--radius); font-weight: 800; font-size: .78rem; letter-spacing: .1em; cursor: pointer; user-select: none; }
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-switch summary::after { content: ""; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-1px, -1px); margin-left: 3px; }
.lang-switch[open] summary::after { transform: rotate(-135deg) translate(-1px, -1px); }
.lang-switch ul { position: absolute; right: 0; top: calc(100% + 6px); z-index: 80; min-width: 150px; padding: 6px; background: var(--ivory); color: var(--ink); border: 2px solid var(--ink); border-radius: var(--radius); box-shadow: 4px 4px 0 var(--ink); }
.lang-switch li a { display: block; padding: 9px 12px; border-radius: 4px; font-weight: 600; text-decoration: none; color: var(--ink); }
.lang-switch li a:hover { background: var(--cream); }
.lang-switch li a[aria-current] { color: #B8431C; font-weight: 800; }
.mm-langs { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.mm-langs a { padding: .45em 1em; border: 2px solid var(--ink); border-radius: 999px; font-weight: 700; font-size: .9rem; text-decoration: none; }
.mm-langs a[aria-current] { background: var(--ink); color: var(--cream); }
@media (max-width: 420px) { .header-inner { gap: 10px; } .lang-switch summary { padding: 0 8px; } }
.next-rooms a { min-width: 0; }
.next-rooms a span { min-width: 0; overflow-wrap: anywhere; hyphens: auto; }
@media (max-width: 520px) { .next-rooms a { font-size: 1.2rem; padding: 12px; } .nr-art { width: 44px; height: 44px; } }
.lang-switch ul { list-style: none; margin: 0; }
.lang-switch li { list-style: none; }
@media (min-width: 861px) { .collage-out .c3 { grid-column: 8 / 13; } }
@media (max-width: 860px) {
  .collage-out .c3 { grid-column: 1 / 3; aspect-ratio: 4 / 3 !important; }
  .collage figcaption { left: 8px; bottom: 8px; right: auto; max-width: calc(100% - 16px); flex-wrap: wrap; font-size: .8rem; }
}
