/* ============================================================
   Corner House Lovech — dark editorial system
   Warm near-black, ivory type, brass accents. Asymmetric,
   type-led layouts with full-bleed photography.
   ============================================================ */

:root {
  /* surfaces */
  --bg:      #0E0D0C;
  --bg-2:    #15130F;
  --bg-3:    #1C1916;
  --paper:   #F2EDE4;
  --paper-2: #E7E0D3;

  /* ink */
  --ink:     #F6F2EA;
  --ink-2:   #BEB5A7;
  --muted:   #8A8175;
  --on-paper:   #14120F;
  --on-paper-2: #4E4840;

  /* accent */
  --brass:   #C9A96A;
  --line:    rgba(246,242,234,.13);
  --line-2:  rgba(246,242,234,.26);
  --line-d:  rgba(20,18,15,.14);

  --wrap: 1400px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --rad: 2px;

  --ease:     cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --f-display: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--brass); color: #0E0D0C; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brass); color: #0E0D0C; padding: .8rem 1.2rem; }
.skip:focus { left: 0; }

/* ── layout primitives ─────────────────────────────────────── */

.wrap { width: min(100% - (var(--pad) * 2), var(--wrap)); margin-inline: auto; }
.wrap.narrow { max-width: 900px; }
.bleed { width: 100%; padding-inline: var(--pad); }
.center { text-align: center; }
.ta-r { text-align: right; }

.sec { padding: clamp(5rem, 11vh, 9rem) 0; position: relative; }
.sec-tight { padding: clamp(3rem, 6vh, 5rem) 0; }

/* Inverted blocks — ivory paper on the dark spine. */
.sec-paper { background: var(--paper); color: var(--on-paper-2); }
.sec-paper h1, .sec-paper h2, .sec-paper h3, .sec-paper h4 { color: var(--on-paper); }
.sec-paper .kicker { color: #8a6f36; }
.sec-tint { background: var(--bg-2); }

/* ── type ──────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.035em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

.h1 { font-size: clamp(2.6rem, 6.6vw, 6rem); }
.h2 { font-size: clamp(1.9rem, 4.2vw, 3.7rem); }
.h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); letter-spacing: -.025em; }

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

.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--ink-2); line-height: 1.65; }
.sec-paper .lead { color: var(--on-paper-2); }

.kicker {
  display: flex; align-items: center; gap: .75rem;
  margin: 0 0 1.3rem;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass);
}
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; flex: none; }

/* Oversized index numerals that anchor each section. */
/* Oversized index numeral, set as a watermark the heading sits clear of. */
.num {
  display: block; font-family: var(--f-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: .8; letter-spacing: -.05em;
  color: var(--line); margin: 0 0 1.3rem;
  user-select: none; pointer-events: none;
}
.sec-paper .num { color: rgba(20,18,15,.09); }

.hex { width: 13px; height: 15px; display: inline-block; flex: none; background: currentColor;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); }

/* ── buttons ───────────────────────────────────────────────── */

.btn {
  --bg-b: transparent; --fg-b: var(--ink); --bd-b: var(--line-2);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1.05rem 2.1rem;
  background: var(--bg-b); color: var(--fg-b);
  border: 1px solid var(--bd-b); border-radius: var(--rad);
  font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  transition: color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
}
.btn > * { position: relative; z-index: 2; }
/* Fill wipes up from the bottom edge. */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--ink); transform: translateY(101%);
  transition: transform .5s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--bg); border-color: var(--ink); }

.btn-solid { --bg-b: var(--brass); --fg-b: #14120F; --bd-b: var(--brass); font-weight: 600; }
.btn-solid::before { background: var(--ink); }
.btn-solid:hover { color: #14120F; border-color: var(--ink); }

.sec-paper .btn { --fg-b: var(--on-paper); --bd-b: var(--line-d); }
.sec-paper .btn::before { background: var(--on-paper); }
.sec-paper .btn:hover { color: var(--paper); border-color: var(--on-paper); }
.sec-paper .btn-solid { --fg-b: #14120F; --bd-b: var(--brass); }

.btn-sm { padding: .68rem 1.25rem; font-size: .66rem; letter-spacing: .16em; }
.btn-lg { padding: 1.25rem 2.4rem; font-size: .78rem; }
.btn-block { display: flex; width: 100%; }

.link-u {
  display: inline-block; color: var(--brass);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .45s var(--ease-out);
}
.link-u:hover { background-size: 0 1px; }

/* ── header ────────────────────────────────────────────────── */

.hdr {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr-in {
  width: 100%; padding-inline: var(--pad);
  display: flex; align-items: center; gap: 1.5rem;
  height: 96px; transition: height .45s var(--ease);
}
.hdr.solid {
  background: rgba(14,13,12,.86);
  backdrop-filter: saturate(1.3) blur(16px); -webkit-backdrop-filter: saturate(1.3) blur(16px);
  border-bottom-color: var(--line);
}
.hdr.solid .hdr-in { height: 72px; }

.brand { flex: none; position: relative; display: block; }
.brand-img { width: 176px; height: auto; transition: width .45s var(--ease); }
.hdr.solid .brand-img { width: 152px; }
.brand-dark { display: none; }          /* dark theme uses the light mark everywhere */

.nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: clamp(.6rem, 1.7vw, 2rem);
  list-style: none; margin: 0; padding: 0; }
.nav-list > li > a, .nav-sub-btn {
  position: relative; display: inline-flex; align-items: center; gap: .35rem;
  padding: .5rem 0; background: none; border: 0; cursor: pointer;
  font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-2); transition: color .35s var(--ease);
}
.nav-list > li > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: .15rem;
  height: 1px; background: var(--brass); transition: right .4s var(--ease);
}
.nav-list > li > a:hover::after, .nav-list > li > a[aria-current]::after { right: 0; }
.nav-list > li > a:hover, .nav-sub-btn:hover { color: var(--ink); }
.nav-sub-btn svg { width: 9px; height: 6px; transition: transform .35s var(--ease); }
.nav-sub-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.has-sub { position: relative; }
.sub {
  position: absolute; top: calc(100% + .8rem); left: 50%; translate: -50% 0;
  min-width: 240px; padding: .5rem; margin: 0; list-style: none;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--rad);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .32s var(--ease), transform .32s var(--ease), visibility .32s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub, .sub.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub a { display: block; padding: .65rem .9rem; font-size: .85rem; color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease); }
.sub a:hover { background: rgba(246,242,234,.06); color: var(--brass); }
.nav-foot { display: none; }

.hdr-right { display: flex; align-items: center; gap: .8rem; flex: none; }

.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .35rem; padding: .5rem .7rem;
  background: none; border: 1px solid var(--line-2); border-radius: var(--rad);
  font-size: .7rem; font-weight: 600; letter-spacing: .14em; color: var(--ink-2); cursor: pointer;
  transition: all .35s var(--ease);
}
.lang-btn:hover { color: var(--brass); border-color: var(--brass); }
.lang-btn svg { width: 9px; height: 6px; }
.lang-list {
  position: absolute; top: calc(100% + .5rem); right: 0; min-width: 155px;
  padding: .4rem; margin: 0; list-style: none;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--rad);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.lang.is-open .lang-list { opacity: 1; visibility: visible; transform: none; }
.lang-list a { display: block; padding: .55rem .8rem; font-size: .85rem; color: var(--ink-2); }
.lang-list a:hover { color: var(--brass); }
.lang-list a[aria-current] { color: var(--brass); font-weight: 600; }

.burger { display: none; width: 44px; height: 44px; padding: 0; background: none; border: 0;
  cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.burger span { display: block; width: 24px; height: 1px; background: var(--ink);
  transition: transform .4s var(--ease), opacity .3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(8,7,6,.7);
  opacity: 0; transition: opacity .4s var(--ease); }
.nav-scrim.is-on { opacity: 1; }

/* ── intro curtain + progress ──────────────────────────────── */

.curtain { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center;
  background: var(--bg); transition: opacity .8s var(--ease), visibility .8s; }
.curtain-mark { width: 200px; opacity: 0; animation: markIn .9s var(--ease-out) .1s forwards; }
.curtain-bar { position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: var(--brass); animation: barRun 1.1s var(--ease) forwards; }
@keyframes markIn { to { opacity: 1; } }
@keyframes barRun { to { width: 100%; } }
.curtain.is-gone { opacity: 0; visibility: hidden; }
.curtain[hidden] { display: none; }

.progress { position: fixed; top: 0; left: 0; z-index: 110; height: 2px; width: 100%;
  background: var(--brass); transform: scaleX(0); transform-origin: 0 50%; pointer-events: none; }

/* ============================================================
   HERO — split screen: type panel left, photography right
   ============================================================ */

.hero {
  position: relative; min-height: 100svh;
  display: grid; grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  background: var(--bg);
  overflow: hidden;
}

.hero-panel {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem var(--pad) 7rem;
  border-right: 1px solid var(--line);
}
.hero-title { font-size: clamp(2.8rem, 5.4vw, 5.6rem); margin: 0 0 1.4rem; color: var(--ink); }
.hero-sub { max-width: 34ch; color: var(--ink-2); font-size: clamp(1rem, 1.15vw, 1.12rem); margin: 0 0 2.4rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }

/* Photography column */
.hero-stage { position: relative; overflow: hidden; background: var(--bg-2); }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.3s var(--ease);
}
.hero-slide.is-on { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-on img { animation: kb 16s var(--ease-out) forwards; }
.hero-slide:nth-child(even).is-on img { animation-name: kb2; }
@keyframes kb  { from { transform: scale(1.14) translate3d(1.5%,1%,0); } to { transform: scale(1.01); } }
@keyframes kb2 { from { transform: scale(1.01); } to { transform: scale(1.14) translate3d(-1.5%,-1%,0); } }

.hero-stage::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, rgba(14,13,12,.7), transparent 28%),
              linear-gradient(0deg, rgba(14,13,12,.62), transparent 45%);
}

/* Vertical slide index down the seam */
.hero-index {
  position: absolute; z-index: 5; left: calc(42% - 1px); top: 50%; translate: -50% -50%;
  display: flex; flex-direction: column; gap: .9rem;
}
.hero-index button {
  position: relative; width: 44px; height: 1px; padding: 0; border: 0; cursor: pointer;
  background: var(--line-2); transition: background .35s var(--ease);
}
.hero-index button::after {
  content: ""; position: absolute; inset: 0; background: var(--brass);
  transform: scaleX(0); transform-origin: 0 50%;
}
.hero-index button.is-on::after { animation: fill 7s linear forwards; }
@keyframes fill { to { transform: scaleX(1); } }
.hero-index button:hover { background: var(--ink-2); }

/* Caption + counter along the bottom of the photo */
.hero-foot {
  position: absolute; z-index: 5; right: var(--pad); bottom: 2.2rem; left: calc(42% + 2.5rem);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.hero-cap {
  margin: 0; max-width: 36ch;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(246,242,234,.72);
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.hero-cap.is-in { opacity: 1; transform: none; }
.hero-count { margin: 0; display: flex; align-items: baseline; gap: .4rem; flex: none;
  font-family: var(--f-display); color: rgba(246,242,234,.5); }
.hero-count b { font-size: 2rem; font-weight: 300; color: var(--ink); line-height: 1; }
.hero-count span { width: 18px; height: 1px; background: var(--brass); align-self: center; }
.hero-count i { font-style: normal; font-size: .95rem; }

.hero-scroll {
  position: absolute; z-index: 5; left: var(--pad); bottom: 2.2rem;
  display: flex; align-items: center; gap: .7rem;
  font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
}
.hero-scroll span { width: 1px; height: 34px; background: var(--line-2); position: relative; overflow: hidden; }
.hero-scroll span::after { content: ""; position: absolute; inset: 0; background: var(--brass);
  animation: scrollline 2.3s var(--ease) infinite; }
@keyframes scrollline { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-panel { order: 2; border-right: 0; border-top: 1px solid var(--line); padding: 3.5rem var(--pad); }
  .hero-stage { order: 1; height: 62svh; min-height: 380px; }
  .hero-index { left: auto; right: var(--pad); top: auto; bottom: 1.4rem; translate: none;
    flex-direction: row; }
  .hero-index button { width: 26px; }
  .hero-foot { left: var(--pad); bottom: auto; top: 1.6rem; }
  .hero-scroll { display: none; }
  .hero-stage::after { background: linear-gradient(0deg, rgba(14,13,12,.55), transparent 50%); }
}

/* ============================================================
   DOCKED BOOKING BAR
   ============================================================ */

.dock {
  position: relative; z-index: 60;
  background: var(--bg-3); border-block: 1px solid var(--line);
  scroll-margin-top: 80px;
}
.dock-in {
  width: 100%; padding: 1.1rem var(--pad);
  display: flex; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap;
}
.dock-title {
  margin: 0; flex: none;
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 300; color: var(--ink);
  line-height: 1.2;
}
.dock-title small { display: block; font-family: var(--f-body); font-size: .66rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--brass); margin-bottom: .2rem; }

.avail { flex: 1 1 560px; }
.presets { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.preset {
  padding: .35rem .85rem; background: transparent; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 100px;
  font-size: .72rem; cursor: pointer; transition: all .3s var(--ease);
}
.preset:hover { border-color: var(--brass); color: var(--brass); }
.preset.is-on { background: var(--brass); border-color: var(--brass); color: #14120F; font-weight: 600; }

.avail-row { display: grid; grid-template-columns: 1fr 1fr auto auto; gap: .7rem; align-items: end; }
.fld { position: relative; display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.fld > span { display: flex; align-items: center; gap: .5rem;
  font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.fld > span i { color: var(--brass); font-style: normal; }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: .78rem .9rem; font: inherit; font-size: .92rem;
  color: var(--ink); background: rgba(246,242,234,.04);
  border: 1px solid var(--line); border-radius: var(--rad);
  transition: border-color .3s var(--ease), background .3s var(--ease);
  color-scheme: dark;
}
.fld textarea { resize: vertical; line-height: 1.6; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--brass); background: rgba(246,242,234,.07);
}
.fld-narrow { max-width: 104px; }
.avail-go { height: 46px; }

.nights-pill {
  padding: .12rem .55rem; border-radius: 100px;
  background: rgba(201,169,106,.16); color: var(--brass);
  font-size: .64rem; font-weight: 700; letter-spacing: .06em;
  opacity: 0; transform: scale(.9); transition: opacity .35s var(--ease), transform .35s var(--ease-out);
}
.nights-pill.is-in { opacity: 1; transform: none; }
.nights-pill.bump { animation: bump .5s var(--ease-out); }
@keyframes bump { 40% { transform: scale(1.15); } 100% { transform: none; } }

.avail-out:empty { display: none; }
.avail-out { margin-top: 1rem; }

.res {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: .85rem;
  padding: .95rem 1.1rem; border: 1px solid var(--line); border-left: 2px solid currentColor;
  background: rgba(246,242,234,.03);
  opacity: 0; transform: translateY(10px); animation: riseIn .5s var(--ease-out) forwards;
}
@keyframes riseIn { to { opacity: 1; transform: none; } }
.res-free { color: #7FA37F; }
.res-booked, .res-error { color: #C2695C; }
.res-unknown { color: var(--brass); }
.res-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: none; margin-top: .55rem; }
.res-t { margin: 0; font-weight: 600; color: var(--ink); }
.res-d { margin: 0; font-size: .87rem; color: var(--muted); flex: 1 1 240px; }
.res-total { margin: 0; font-size: .87rem; color: var(--ink-2); }
.res-total strong { font-family: var(--f-display); font-size: 1.3rem; color: var(--ink); }
.res-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-left: auto; }
.res-note { margin: .9rem 0 .5rem; font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); }
.res-units { display: flex; flex-wrap: wrap; gap: .4rem; }
.res-unit {
  display: inline-flex; align-items: baseline; gap: .45rem;
  padding: .45rem .85rem; border: 1px solid var(--line); border-radius: 100px;
  font-size: .8rem; color: var(--ink-2);
  opacity: 0; transform: translateY(8px); animation: riseIn .45s var(--ease-out) forwards;
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.res-unit b { color: var(--brass); font-weight: 600; }
.res-unit:hover { background: var(--brass); border-color: var(--brass); color: #14120F; }
.res-unit:hover b { color: #14120F; }

.skel { display: grid; gap: .5rem; flex: 1; }
.skel-row { height: 12px; border-radius: 2px;
  background: linear-gradient(90deg, rgba(246,242,234,.05), rgba(246,242,234,.12), rgba(246,242,234,.05));
  background-size: 200% 100%; animation: shimmer 1.2s linear infinite; }
.skel-row:nth-child(1) { width: 38%; }
.skel-row:nth-child(2) { width: 82%; }
.skel-row:nth-child(3) { width: 60%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.spin { display: inline-block; width: 14px; height: 14px; border: 2px solid var(--line-2);
  border-top-color: var(--brass); border-radius: 50%; animation: spin .7s linear infinite;
  vertical-align: -2px; margin-right: .5rem; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 860px) {
  .dock-in { flex-direction: column; align-items: stretch; }
  .avail-row { grid-template-columns: 1fr 1fr; }
  .fld-narrow { max-width: none; }
  .avail-go { grid-column: 1 / -1; }
}

/* ============================================================
   EDITORIAL BLOCKS
   ============================================================ */

/* Asymmetric intro: text column, image bleeding past the grid. */
.ed {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem); align-items: center;
}
.ed-rev { direction: rtl; }
.ed-rev > * { direction: ltr; }
.ed-text { max-width: 52ch; }
.ed-media { position: relative; }
.ed-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ed-media figcaption {
  margin-top: .9rem; font-size: .66rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.ed-inset {
  position: absolute; right: -8%; bottom: -12%; width: 46%;
  border: 8px solid var(--bg); box-shadow: 0 30px 70px rgba(0,0,0,.55);
}
.sec-paper .ed-inset { border-color: var(--paper); }
.ed-inset img { aspect-ratio: 3/4; }

/* Big stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr);
  list-style: none; margin: 3rem 0 0; padding: 2.4rem 0 0;
  border-top: 1px solid var(--line); gap: 1.5rem; }
.sec-paper .stats { border-color: var(--line-d); }
.stats li { display: flex; flex-direction: column; gap: .3rem; }
.stats strong { font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem); line-height: 1; color: var(--brass); }
.stats span { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

/* ── ROOM RAIL — horizontal scroller ───────────────────────── */

.rail-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 2.6rem;
}
.rail-head .h2 { margin: 0; }
.rail-nav { display: flex; gap: .5rem; flex: none; }
.rail-btn {
  width: 50px; height: 50px; display: grid; place-items: center;
  background: none; border: 1px solid var(--line-2); border-radius: 50%;
  color: var(--ink); cursor: pointer; transition: all .35s var(--ease);
}
.rail-btn:hover { background: var(--brass); border-color: var(--brass); color: #14120F; }
.rail-btn[disabled] { opacity: .3; pointer-events: none; }
.rail-btn svg { width: 20px; height: 20px; }

.rail {
  display: flex; gap: clamp(.9rem, 1.6vw, 1.6rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem; margin-inline: calc(var(--pad) * -1);
  padding-inline: var(--pad);
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail > * { scroll-snap-align: start; flex: 0 0 clamp(270px, 25vw, 360px); }

/* ── unit card ─────────────────────────────────────────────── */

.card { position: relative; display: flex; flex-direction: column; background: none; }
.card-media {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3/4; background: var(--bg-2); margin-bottom: 1.2rem;
}
.card-media img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,13,12,.75), transparent 45%);
}
.card-badge {
  position: absolute; z-index: 2; top: 1rem; left: 1rem;
  padding: .3rem .7rem; background: rgba(14,13,12,.7); color: var(--brass);
  font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.card-count {
  position: absolute; z-index: 2; bottom: 1rem; right: 1rem;
  font-size: .64rem; letter-spacing: .12em; color: rgba(246,242,234,.72);
  opacity: 0; transform: translateY(6px); transition: all .4s var(--ease);
}
.card:hover .card-count { opacity: 1; transform: none; }
.card-no {
  position: absolute; z-index: 2; bottom: .9rem; left: 1rem; margin: 0;
  font-family: var(--f-display); font-size: 1.9rem; color: var(--ink); line-height: 1;
}
.card-body { display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.25rem; margin: 0 0 .9rem; line-height: 1.3; }
.card-title a { transition: color .3s var(--ease); }
.card:hover .card-title a { color: var(--brass); }
.card-specs { list-style: none; margin: 0 0 1.2rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .3rem .9rem; font-size: .78rem; color: var(--muted); }
.card-specs li { display: flex; gap: .35rem; }
.card-specs li + li::before { content: "·"; color: var(--line-2); }
.card-specs span { display: none; }
.card-foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.sec-paper .card-foot { border-color: var(--line-d); }
.card-price { margin: 0; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); }
.card-price strong { font-family: var(--f-display); font-size: 1.6rem; font-weight: 400;
  color: var(--ink); margin: 0 .25rem; letter-spacing: 0; }
.sec-paper .card-price strong { color: var(--on-paper); }
.card-price em { font-style: normal; }
.card-go { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass);
  transition: transform .35s var(--ease); }
.card:hover .card-go { transform: translateX(5px); }

.grid-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.8rem); }

/* ── STICKY LANDMARKS ──────────────────────────────────────── */

.sticky-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.sticky-media { position: sticky; top: 120px; }
.sticky-media .frame { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); }
.sticky-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .7s var(--ease); }
.sticky-media img.is-on { opacity: 1; }
.sticky-list { display: flex; flex-direction: column; }
.sticky-i {
  padding: clamp(2rem, 4vw, 3.2rem) 0; border-bottom: 1px solid var(--line);
  transition: opacity .5s var(--ease);
}
.sec-paper .sticky-i { border-color: var(--line-d); }
.sticky-i:first-child { padding-top: 0; }
.sticky-i h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0 0 .5rem;
  transition: color .4s var(--ease); }
.sticky-i.is-active h3 { color: var(--brass); }
.sticky-i .dist { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 .9rem;
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.sticky-i .dist b { color: var(--brass); font-weight: 600; }
.sticky-i p { margin: 0; font-size: .95rem; }

@media (max-width: 900px) {
  .sticky-wrap { grid-template-columns: 1fr; }
  .sticky-media { position: static; }
  .sticky-media .frame { aspect-ratio: 3/2; }
}

/* ── pull quote ────────────────────────────────────────────── */

.pull { padding: clamp(5rem, 10vw, 9rem) 0; text-align: center; position: relative; overflow: hidden; }
.pull q { display: block; quotes: none; max-width: 22ch; margin-inline: auto;
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(2rem, 5vw, 4.2rem); line-height: 1.15; color: var(--ink); }
.pull cite { display: block; margin-top: 2rem; font-style: normal;
  font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brass); }

/* ── marquee ───────────────────────────────────────────────── */

.marq { overflow: hidden; padding: 1.5rem 0; border-block: 1px solid var(--line); --marq-speed: 52s; }
.marq-track { display: flex; width: max-content; gap: 3rem; animation: marq var(--marq-speed) linear infinite; }
.marq:hover .marq-track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
.marq-i { display: inline-flex; align-items: center; gap: 1rem; white-space: nowrap;
  font-family: var(--f-display); font-size: clamp(1.2rem, 2.2vw, 1.9rem); color: var(--muted); }
.marq-i .hex { color: var(--brass); }
.marq-i b { font-weight: 300; color: var(--ink-2); }
.marq-i em { font-family: var(--f-body); font-style: normal; font-size: .64rem;
  letter-spacing: .2em; color: var(--brass); }

/* ── three ways / feature trio ─────────────────────────────── */

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
.sec-paper .trio { background: var(--line-d); border-color: var(--line-d); }
.trio-i { padding: clamp(2rem, 3.5vw, 3rem); background: var(--bg);
  transition: background .4s var(--ease); }
.sec-paper .trio-i { background: var(--paper); }
.trio-i:hover { background: var(--bg-2); }
.sec-paper .trio-i:hover { background: var(--paper-2); }
.trio-n { display: block; font-family: var(--f-display); font-size: 2.6rem;
  color: var(--line-2); line-height: 1; margin-bottom: .7rem; }
.sec-paper .trio-n { color: rgba(20,18,15,.18); }
.trio-i h3 { font-size: 1.35rem; margin: 0 0 .5rem; }
.trio-i p { margin: 0 0 1rem; font-size: .92rem; }
.trio-i p:last-child { margin: 0; }
.trio-i a:not(.btn) { color: var(--brass); }

/* ── amenity strip ─────────────────────────────────────────── */

.strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); }
.strip-i { display: flex; flex-direction: column; align-items: center; gap: .7rem;
  padding: 2rem 1rem; background: var(--bg); text-align: center; }
.strip-i svg { width: 24px; height: 24px; color: var(--brass); }
.strip-i span { font-size: .72rem; letter-spacing: .06em; color: var(--muted); }

/* ── gallery mosaic ────────────────────────────────────────── */

.mosaic { display: grid; grid-template-columns: repeat(12, 1fr); gap: .6rem; }
.mosaic-i { position: relative; margin: 0; overflow: hidden; cursor: zoom-in; background: var(--bg-2); }
.mosaic-i img { width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out), opacity .4s var(--ease); }
.mosaic-i:hover img { transform: scale(1.05); opacity: .85; }
.mosaic-i:nth-child(1) { grid-column: span 5; aspect-ratio: 4/5; }
.mosaic-i:nth-child(2) { grid-column: span 7; aspect-ratio: 16/10; }
.mosaic-i:nth-child(3) { grid-column: span 4; aspect-ratio: 1; }
.mosaic-i:nth-child(4) { grid-column: span 4; aspect-ratio: 1; }
.mosaic-i:nth-child(5) { grid-column: span 4; aspect-ratio: 1; }
.mosaic-i:nth-child(6) { grid-column: span 12; aspect-ratio: 21/7; }

/* ── CTA ───────────────────────────────────────────────────── */

.cta { position: relative; padding: clamp(6rem, 12vw, 11rem) 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(14,13,12,.72); }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-in { position: relative; z-index: 2; max-width: 760px; }
.cta p { color: var(--ink-2); margin-bottom: 2.2rem; }
.cta .hero-cta { justify-content: center; }

@media (max-width: 980px) {
  .ed, .trio { grid-template-columns: 1fr; }
  .ed-rev { direction: ltr; }
  .ed-inset { position: static; width: 100%; border: 0; margin-top: 1rem; box-shadow: none; }
  .ed-inset img { aspect-ratio: 16/9; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .mosaic-i { grid-column: span 6 !important; aspect-ratio: 4/3 !important; }
  .rail-head { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}
@media (max-width: 560px) {
  .mosaic-i { grid-column: span 12 !important; }
}

/* ============================================================
   INNER PAGES
   ============================================================ */

.phead { position: relative; padding: 13rem 0 5rem; overflow: hidden; }
.phead-bg { position: absolute; inset: 0; }
.phead-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,13,12,.9), rgba(14,13,12,.62) 55%, rgba(14,13,12,.8)); }
.phead-bg img { width: 100%; height: 100%; object-fit: cover;
  animation: phz 16s var(--ease) forwards; }
@keyframes phz { from { transform: scale(1.1); } to { transform: scale(1); } }
.phead-in { position: relative; z-index: 2; }
.phead-title { font-size: clamp(2.4rem, 6vw, 5rem); margin: 0 0 .6rem; }
.phead-lead { max-width: 60ch; color: var(--ink-2); margin: 0; font-size: 1.02rem; }
.crumbs { display: flex; gap: .5rem; align-items: center; margin-bottom: 1.2rem;
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.crumbs a:hover { color: var(--brass); }

.sec-head { max-width: 760px; margin: 0 0 clamp(2.5rem, 5vw, 4rem); }
.sec-head-c { margin-inline: auto; text-align: center; }
.sec-head-c .kicker { justify-content: center; }
.sec-lead { color: var(--muted); margin: 0; font-size: 1rem; }
.sec-paper .sec-lead { color: var(--on-paper-2); }

/* unit detail */
.unit-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.unit-gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; }
.unit-shot { margin: 0; overflow: hidden; cursor: zoom-in; background: var(--bg-2); }
.unit-shot.is-lead { grid-column: 1 / -1; }
.unit-shot img { width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform 1.1s var(--ease-out); }
.unit-shot:hover img { transform: scale(1.05); }
.pano { margin-top: 2rem; }
.pano-i { position: relative; margin: 0; overflow: hidden; cursor: zoom-in; }
.pano-i img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
.pano-i figcaption { position: absolute; inset: auto 0 0; padding: .9rem 1.1rem;
  background: linear-gradient(transparent, rgba(14,13,12,.85)); color: var(--ink);
  font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; }
.unit-about { margin-top: 2.8rem; }

.feat { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .55rem 1.6rem; }
.feat li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; }
.feat svg { width: 14px; height: 14px; flex: none; margin-top: .45rem; color: var(--brass); }

.note { margin-top: 2rem; padding: 1.2rem 1.4rem;
  background: rgba(201,169,106,.08); border-left: 2px solid var(--brass); }
.note strong { display: block; color: var(--ink); margin-bottom: .2rem; }
.note p { margin: 0; font-size: .92rem; }

.unit-side, .bside { position: sticky; top: 110px; }
.ubox { padding: 1.7rem; border: 1px solid var(--line); background: var(--bg-2); }
.ubox + .ubox { margin-top: 1rem; }
.ubox-price { margin: 0 0 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line);
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.ubox-price strong { display: block; margin: .25rem 0; font-family: var(--f-display);
  font-size: 2.8rem; font-weight: 300; color: var(--ink); letter-spacing: 0; line-height: 1; }
.ubox-price em { font-style: normal; }
.ubox-specs { margin: 0 0 1.4rem; }
.ubox-specs div { display: flex; justify-content: space-between; gap: 1rem;
  padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: .86rem; }
.ubox-specs dt { color: var(--muted); margin: 0; }
.ubox-specs dd { margin: 0; color: var(--ink); }
.ubox-h { font-family: var(--f-body); font-size: .64rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin: 0 0 .9rem; }
.ubox .avail-row { grid-template-columns: 1fr 1fr; }
.ubox .fld-narrow { max-width: none; }
.ubox .avail-go { grid-column: 1 / -1; }
.ubox .presets { display: none; }
.ubox .btn-block { margin-top: 1.1rem; }
.ubox-or { margin: .9rem 0 0; font-size: .82rem; color: var(--muted); text-align: center; }
.ubox-or a { color: var(--brass); }
.ubox-booking { display: block; margin-top: .7rem; text-align: center;
  font-size: .76rem; color: var(--muted); }
.ubox-booking:hover { color: var(--brass); }

/* prices */
.note-line { font-size: .9rem; color: var(--muted); padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line); }
.table-wrap { overflow-x: auto; margin-bottom: 3.5rem; }
.ptable { width: 100%; border-collapse: collapse; min-width: 620px; }
.ptable th { text-align: left; padding: .8rem 1rem .8rem 0; border-bottom: 1px solid var(--line-2);
  font-size: .62rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.ptable td { padding: 1.2rem 1rem 1.2rem 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.ptable td:first-child { color: var(--ink); }
.ptable td small { display: block; color: var(--muted); font-size: .78rem; }
.ptable td a:not(.btn):hover { color: var(--brass); }
.ptable .price { font-family: var(--f-display); font-size: 1.7rem; color: var(--brass); white-space: nowrap; }
.ptable tr.muted td { color: var(--muted); }
.ptable tr.muted .price { font-size: .95rem; font-family: var(--f-body); color: var(--muted); }

.kids { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); margin-top: 1.5rem; }
.kids div { padding: 1.6rem; background: var(--bg); }
.kids strong { display: block; font-family: var(--f-display); font-size: 1.4rem;
  color: var(--brass); margin-bottom: .2rem; }
.kids p { margin: 0; font-size: .9rem; }

.amen { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem); }
.amen-col h3 { font-size: 1.1rem; padding-bottom: .6rem;
  border-bottom: 1px solid var(--line-2); margin-bottom: 1rem; }
.amen-col .feat { grid-template-columns: 1fr; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); }
.acc { background: var(--bg); padding: 0 1.4rem; }
.acc summary { padding: 1.2rem 0; cursor: pointer; list-style: none;
  font-family: var(--f-display); font-size: 1.2rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-family: var(--f-body); font-size: 1.2rem;
  color: var(--brass); transition: transform .3s var(--ease); flex: none; }
.acc[open] summary::after { transform: rotate(45deg); }
.acc > p, .acc > ul { padding-bottom: 1.3rem; margin: 0; font-size: .91rem; }
.dashed { list-style: none; padding: 0 0 1.3rem; margin: 0; }
.dashed li { position: relative; padding-left: 1.1rem; margin-bottom: .5rem; font-size: .9rem; }
.dashed li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }

/* gallery */
.tabs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 2.5rem; }
.tab { padding: .55rem 1.25rem; background: none; border: 1px solid var(--line);
  border-radius: 100px; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: all .3s var(--ease); }
.tab:hover { color: var(--brass); border-color: var(--brass); }
.tab.is-on { background: var(--brass); border-color: var(--brass); color: #14120F; font-weight: 600; }
.gal { columns: 4; column-gap: .6rem; }
.gal-i { break-inside: avoid; margin: 0 0 .6rem; overflow: hidden; cursor: zoom-in; background: var(--bg-2); }
.gal-i img { width: 100%; transition: transform .9s var(--ease-out), opacity .4s var(--ease); }
.gal-i:hover img { transform: scale(1.04); opacity: .85; }
.gal-i.is-hidden { display: none; }

/* contacts */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 4rem); }
.ccol .h3 { font-size: 1.2rem; margin-top: 2.2rem; }
.ccol .h3:first-child { margin-top: 0; }
.c-address { font-style: normal; line-height: 1.9; color: var(--ink-2); }
.c-sub { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brass); margin: -.3rem 0 .9rem; }
.c-list { list-style: none; margin: 0 0 1.4rem; padding: 0; }
.c-list li { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.c-list a { color: var(--ink-2); display: inline-block; transition: all .25s var(--ease); }
.c-list a:hover { color: var(--brass); transform: translateX(4px); }
.c-map { display: block; border: 1px solid var(--line); overflow: hidden; }
.c-map img { width: 100%; transition: transform .8s var(--ease-out); }
.c-map:hover img { transform: scale(1.04); }
.c-map span { display: block; padding: .8rem 1rem; font-size: .76rem; color: var(--brass); }
.map-embed { overflow: hidden; border: 1px solid var(--line); line-height: 0; }
.map-embed iframe { width: 100%; height: clamp(320px, 45vh, 540px); border: 0; filter: grayscale(.4) invert(.9) hue-rotate(180deg); }
.qr { margin: 1.5rem auto; border: 6px solid var(--paper); }

/* booking form */
.book-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.bstep { border: 0; padding: 0; margin: 0 0 2.6rem; }
.bstep legend { display: flex; align-items: center; gap: .8rem; padding: 0; margin-bottom: 1.3rem;
  font-family: var(--f-display); font-size: 1.5rem; color: var(--ink); }
.bstep legend span { display: grid; place-items: center; width: 30px; height: 30px; flex: none;
  background: var(--brass); color: #14120F; border-radius: 50%;
  font-family: var(--f-body); font-size: .76rem; font-weight: 700; }
.brow { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .8rem; }
.bform .fld { margin-bottom: .8rem; }
.chk { display: flex; align-items: flex-start; gap: .7rem; font-size: .87rem; cursor: pointer; }
.chk input { width: 17px; height: 17px; margin-top: .2rem; accent-color: var(--brass); flex: none; }
.bavail:empty { display: none; }
.bavail { margin-top: .4rem; }
.bmsg { padding: 1rem 1.2rem; margin-bottom: 1.2rem; font-size: .92rem; border-left: 2px solid; }
.bmsg-err { background: rgba(194,105,92,.1); border-color: #C2695C; color: #E2A79D; }
.bmsg-ok { background: rgba(127,163,127,.1); border-color: #7FA37F; color: #BBD3BB; }
.bmsg-ok strong { display: block; font-size: 1.05rem; color: var(--ink); margin-bottom: .3rem; }
.bmsg code { font-family: ui-monospace, monospace; font-weight: 600; color: var(--brass); }
.bor { margin-top: 1.2rem; font-size: .86rem; color: var(--muted); text-align: center; }
.bor a { color: var(--brass); }
.bsum-empty { color: var(--muted); font-size: .88rem; margin: 0; }
.bsum-row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0;
  border-bottom: 1px solid var(--line); font-size: .88rem; }
.bsum-row b { color: var(--ink); }
.bsum-total { margin-top: .8rem; padding-top: .9rem; border-top: 1px solid var(--line-2);
  display: flex; justify-content: space-between; align-items: baseline; }
.bsum-total strong { font-family: var(--f-display); font-size: 2rem; color: var(--brass); }

/* error page */
.errpage { padding-top: 14rem; }
.err-code { font-family: var(--f-display); font-size: clamp(6rem, 18vw, 12rem);
  line-height: 1; color: var(--line); margin: 0; }

/* ── footer ────────────────────────────────────────────────── */

.ftr { border-top: 1px solid var(--line); padding: clamp(4rem, 7vw, 6rem) 0 0; }
.ftr-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3.5rem; }
.ftr-brand img { width: 190px; margin-bottom: 1.3rem; }
.ftr-brand p { font-size: .9rem; max-width: 32ch; color: var(--muted); }
.ftr-social { display: flex; gap: .55rem; margin-top: 1.4rem; }
.ftr-social a { display: grid; place-items: center; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: 50%; color: var(--ink-2);
  transition: all .35s var(--ease); }
.ftr-social a:hover { background: var(--brass); border-color: var(--brass); color: #14120F;
  transform: translateY(-3px); }
.ftr-social svg { width: 18px; height: 18px; }
.ftr-col h3 { font-family: var(--f-body); font-size: .64rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.2rem; }
.ftr-col ul { list-style: none; margin: 0; padding: 0; }
.ftr-col li { margin-bottom: .55rem; }
.ftr-col a { font-size: .89rem; color: var(--muted); transition: all .25s var(--ease); }
.ftr-col a:hover { color: var(--brass); padding-left: 4px; }
.ftr-col address { font-style: normal; font-size: .89rem; line-height: 1.85;
  color: var(--muted); margin-bottom: 1rem; }
.ftr-contact { margin-bottom: 1.3rem; }
.ftr-ota { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--line-2); margin-bottom: .5rem; }
.ftr-otas { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .84rem; color: var(--muted); }
.ftr-otas a:hover { color: var(--brass); }
.ftr-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem;
  padding: 1.6rem 0; border-top: 1px solid var(--line); font-size: .78rem; color: var(--muted); }
.ftr-base p { margin: 0; }

/* ── lightbox ──────────────────────────────────────────────── */

.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8,7,6,.97);
  display: grid; place-items: center; opacity: 0; transition: opacity .3s var(--ease); }
.lightbox[hidden] { display: none; }
.lightbox.is-on { opacity: 1; }
.lb-fig { margin: 0; max-width: 92vw; max-height: 84vh; }
.lb-fig img { max-width: 92vw; max-height: 84vh; width: auto; height: auto; }
.lb-close, .lb-nav { position: absolute; background: none; border: 0; color: var(--ink-2);
  cursor: pointer; line-height: 1; transition: color .25s var(--ease), transform .25s var(--ease); }
.lb-close { top: 1.4rem; right: 1.6rem; font-size: 2.4rem; }
.lb-nav { top: 50%; translate: 0 -50%; font-size: 3.2rem; padding: 1rem; }
.lb-prev { left: .6rem; } .lb-next { right: .6rem; }
.lb-close:hover, .lb-nav:hover { color: var(--brass); }
.lb-count { position: absolute; bottom: 1.4rem; left: 50%; translate: -50% 0; margin: 0;
  color: var(--muted); font-size: .78rem; letter-spacing: .14em; }
body.lb-open { overflow: hidden; }

/* ── motion ────────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in { opacity: 1; transform: none;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal-img { clip-path: inset(0 0 100% 0); }
.reveal-img.is-in { clip-path: inset(0 0 0 0); transition: clip-path 1.2s var(--ease-out); }

.split-t .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .06em; }
.split-t .w > i { display: inline-block; font-style: inherit; transform: translateY(118%);
  transition: transform 1.05s var(--ease-out); }
.split-t.is-in .w > i { transform: none; }

/* ── responsive ────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .unit-grid, .book-grid { grid-template-columns: 1fr; }
  .unit-side, .bside { position: static; }
  .ubox .avail-row { grid-template-columns: 1fr 1fr auto; }
  .ubox .avail-go { grid-column: auto; }
  .gal { columns: 3; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; z-index: 95; width: min(88vw, 400px);
    background: var(--bg-2); padding: 7rem var(--pad) 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .45s var(--ease);
    display: flex; flex-direction: column; border-left: 1px solid var(--line);
  }
  .nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-list > li > a, .nav-sub-btn { padding: 1.1rem 0; width: 100%;
    justify-content: space-between; font-size: .95rem; letter-spacing: .08em; text-transform: none; }
  .nav-list > li > a::after { display: none; }
  .sub { position: static; translate: none; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: none; padding: 0 0 .8rem .6rem; display: none; }
  .sub.is-open { display: block; }
  .has-sub:hover .sub { display: none; }
  .has-sub:hover .sub.is-open { display: block; }
  .nav-foot { display: block; margin-top: auto; padding-top: 2rem; }
  .nav-tel { display: block; text-align: center; padding: 1rem; background: var(--brass);
    color: #14120F; font-weight: 600; letter-spacing: .12em; }
  .burger { display: flex; }
  .hdr-cta { display: none; }
  .hdr-in { height: 74px; }
  .kids, .trio { grid-template-columns: 1fr; }
  .phead { padding: 9rem 0 3.5rem; }
}

@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .brow { grid-template-columns: 1fr; }
  .unit-gal { grid-template-columns: 1fr; }
  .gal { columns: 2; }
  .stats { grid-template-columns: 1fr 1fr; }
  .grid-cards { grid-template-columns: 1fr; }
  .res-actions { margin-left: 0; width: 100%; }
}

@media (max-width: 460px) { .gal { columns: 1; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important;
    animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .split-t .w > i { opacity: 1; transform: none; }
  .reveal-img { clip-path: none; }
  .curtain { display: none !important; }
  .marq-track { animation: none; }
  .progress { display: none; }
}

@media print {
  .hdr, .ftr, .dock, .lightbox, .btn, .hero-index { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ── two-up variant of the trio grid ───────────────────────── */
.trio-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .trio-2 { grid-template-columns: 1fr; } }

/* ── landmark rows (attractions page) ──────────────────────── */
.land { display: flex; flex-direction: column; }
.land-i {
  display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) 0; border-bottom: 1px solid var(--line);
  scroll-margin-top: 120px;
}
.sec-paper .land-i { border-color: var(--line-d); }
.land-i:first-child { padding-top: 0; }
.land-i:nth-child(even) .land-media { order: 2; }
.land-media { margin: 0; overflow: hidden; cursor: zoom-in; background: var(--bg-2); }
.land-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover;
  transition: transform 1.1s var(--ease-out), opacity .4s var(--ease); }
.land-media:hover img { transform: scale(1.05); opacity: .9; }
.land-body h3 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); margin: 0 0 .5rem; }
.land-dist { margin: 0 0 .9rem; font-size: .66rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); }
.land-dist strong { color: var(--brass); font-weight: 600; }
.land-body p:last-child { margin: 0; font-size: .95rem; }
@media (max-width: 860px) {
  .land-i { grid-template-columns: 1fr; }
  .land-i:nth-child(even) .land-media { order: 0; }
}

/* ── misc containers referenced by the templates ───────────── */
.unit-main { min-width: 0; }
.bsum { min-width: 0; }
.c-park { font-size: .92rem; color: var(--ink-2); }
.brand-light { display: block; }

/* ============================================================
   MONTSERRAT TUNING
   The display face is now a bold sans, so every element that
   leaned on the old serif needs its own weight and tracking.
   ============================================================ */

.hero-count b,
.card-price strong,
.ubox-price strong,
.bsum-total strong,
.ptable .price,
.stats strong,
.trio-n,
.err-code,
.dock-title,
.acc summary,
.bstep legend,
.marq-i,
.kids strong {
  font-weight: 700;
  letter-spacing: -.03em;
}

.stats strong { font-size: clamp(1.9rem, 2.8vw, 2.7rem); }
.err-code { font-weight: 800; letter-spacing: -.06em; }
.trio-n { font-weight: 800; font-size: 2rem; letter-spacing: -.04em; }
.num { font-variant-numeric: tabular-nums; }
.hero-count b { font-size: 1.6rem; }
.card-price strong { font-size: 1.4rem; }
.ubox-price strong { font-size: 2.2rem; }
.ptable .price { font-size: 1.35rem; }
.bsum-total strong { font-size: 1.6rem; }
.kids strong { font-size: 1.15rem; }
.dock-title { font-size: 1.15rem; font-weight: 700; }
.acc summary { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; }
.bstep legend { font-size: 1.15rem; font-weight: 700; }
.marq-i { font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 600; letter-spacing: -.01em; }
.marq-i b { font-weight: 600; }

/* A bold sans quote wants to be smaller and tighter than a serif one. */
.pull q { font-weight: 700; font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  letter-spacing: -.035em; max-width: 26ch; }

.phead-title { font-weight: 700; letter-spacing: -.035em; }
.card-title { font-weight: 600; letter-spacing: -.02em; font-size: 1.05rem; }
.card-no { font-weight: 800; font-size: 1.5rem; letter-spacing: -.04em; }
.sticky-i h3, .land-body h3 { font-weight: 700; }
.curtain-mark { width: 190px; }

/* ============================================================
   HEADER — no more overflow between tablet and laptop widths
   ============================================================ */

/* Nothing may ever spill out of the bar. */
.hdr-in { max-width: 100%; }
.nav { min-width: 0; }
.nav-list { flex-wrap: nowrap; }

/* Montserrat is wider than the old face, so the bar tightens earlier.
   Below 1200px the nav moves into the drawer entirely (see the media
   block further down), which is what fixes 1024 / 1100 / 1180. */
@media (min-width: 1201px) and (max-width: 1520px) {
  .hdr-in { gap: 1rem; }
  .nav-list { gap: clamp(.55rem, 1.1vw, 1.1rem); }
  .nav-list > li > a, .nav-sub-btn { font-size: .64rem; letter-spacing: .1em; }
  .brand-img { width: 148px; }
  .hdr.solid .brand-img { width: 134px; }
  .hdr-cta { padding: .6rem 1rem; font-size: .62rem; letter-spacing: .12em; }
  .lang-btn { padding: .45rem .55rem; font-size: .66rem; }
}

/* Drawer navigation up to 1200px, not 980px. */
@media (max-width: 1200px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; z-index: 95; width: min(88vw, 400px);
    background: var(--bg-2); padding: 7rem var(--pad) 2rem; overflow-y: auto;
    transform: translateX(100%); transition: transform .45s var(--ease);
    display: flex; flex-direction: column; border-left: 1px solid var(--line);
    margin-left: 0;
  }
  .nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; flex-wrap: wrap; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-list > li > a, .nav-sub-btn { padding: 1.1rem 0; width: 100%;
    justify-content: space-between; font-size: .95rem; letter-spacing: .06em;
    text-transform: none; color: var(--ink); }
  .nav-list > li > a::after { display: none; }
  .sub { position: static; translate: none; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: none; padding: 0 0 .8rem .6rem; display: none;
    min-width: 0; }
  .sub.is-open { display: block; }
  .has-sub:hover .sub { display: none; }
  .has-sub:hover .sub.is-open { display: block; }
  .nav-foot { display: block; margin-top: auto; padding-top: 2rem; }
  .nav-tel { display: block; text-align: center; padding: 1rem; background: var(--brass);
    color: #14120F; font-weight: 700; letter-spacing: .12em; }
  .burger { display: flex; margin-left: auto; }
  .hdr-cta { display: none; }
  .hdr-in { height: 74px; }
  .hdr.solid .hdr-in { height: 66px; }
  .brand-img, .hdr.solid .brand-img { width: 150px; }
}
