/* ============================================================
   Serene Boutique Hotel · public site
   Light theme only. Brand red from the logo is the single accent.
   Shape rule: buttons are pills, cards 16px, inputs 10px.
   ============================================================ */

@font-face {
  font-family: 'Outfit';
  src: url('/fonts/outfit-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-display: swap;
}
@font-face { font-family: 'Cormorant'; src: url('/fonts/cormorant-latin.woff2') format('woff2'); font-weight: 300 700; font-display: swap; }
@font-face {
  font-family: 'Geist';
  src: url('/fonts/geist-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f3efe7;
  --bg-2: #ebe6dc;
  --ink: #1b1b1b;
  --ink-2: #5a5a5a;
  --ink-3: #8b8b8b;
  --line: #ddd6c9;
  --red: #c1121f;
  --red-deep: #9b0d16;
  --red-soft: #fdeceb;
  --ok: #1f7a45;
  --ok-soft: #e4f3ea;
  --shadow: 0 30px 60px -28px rgba(27, 27, 27, .35);

  --display: 'Outfit', 'Segoe UI', system-ui, sans-serif;
  --sans: 'Geist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif: 'Cormorant', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --r-card: 16px;
  --r-input: 10px;
  --r-pill: 999px;

  --pad: clamp(20px, 5vw, 72px);
  --max: 1240px;
  --nav-h: 68px;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --t-fast: .18s;
  --t: .32s;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.55; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.lede { font-size: 17px; color: var(--ink-2); max-width: 56ch; margin-top: 14px; }
.section { padding: clamp(72px, 9vw, 130px) var(--pad); max-width: var(--max); margin: 0 auto; }
.head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: 16px; top: -60px; padding: 10px 14px; background: var(--ink); color: #fff; border-radius: var(--r-pill); z-index: 100; }
.skip:focus { top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: var(--r-pill); border: 1px solid transparent;
  font-weight: 600; font-size: 15px; line-height: 1; white-space: nowrap;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  touch-action: manipulation;
}
.btn:active { transform: scale(.97); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--red); }
.btn-line { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-line:hover { border-color: var(--ink); }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--red-soft); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 30px; font-size: 16px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn .btn-busy { display: none; width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; }
.btn.busy .btn-busy { display: inline-block; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40; height: var(--nav-h);
  display: flex; align-items: center; gap: 32px; padding: 0 var(--pad);
  background: transparent; border-bottom: 1px solid transparent; transition: border-color var(--t), background var(--t);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(243, 239, 231, .96); }
.brand { display: flex; align-items: center; gap: 12px; }
.mark { position: relative; width: 44px; height: 42px; overflow: hidden; flex-shrink: 0; }
/* The logo file is the full lock-up; this crops to the flower mark (measured from the image). */
.mark img { position: absolute; width: 166.9%; max-width: none; left: -33.25%; top: -1.6%; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: .04em; color: var(--red); text-transform: uppercase; }
.brand-text small { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-top: 3px; font-weight: 500; }
.nav-links { display: flex; gap: 28px; margin-left: auto; font-size: 14px; font-weight: 500; color: var(--ink-2); }
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform var(--t) var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.burger { display: none; margin-left: auto; width: 44px; height: 44px; background: none; border: 0; flex-direction: column; justify-content: center; align-items: center; gap: 6px; }
.burger span { width: 22px; height: 2px; background: var(--ink); transition: transform var(--t) var(--ease); }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.menu[hidden] { display: none; }
.menu { position: fixed; inset: var(--nav-h) 0 0; z-index: 39; background: var(--bg); display: flex; flex-direction: column; padding: 20px var(--pad); }
.menu > a { font-family: var(--display); font-size: 30px; font-weight: 600; padding: 16px 0; border-bottom: 1px solid var(--line); }
.menu > a.btn { font-family: var(--sans); font-size: 16px; border: 0; margin-top: 22px; align-self: flex-start; padding: 16px 28px; }

/* ---------- rooms dropdown ---------- */
.nav-rooms { position: relative; display: flex; align-items: center; }
.nav-rooms > a::before { content: ''; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-1px, -3px); margin-left: 7px; float: right; margin-top: 8px; }
.rooms-menu { position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px); min-width: 300px; background: #fbf9f5; border: 1px solid var(--line); border-radius: var(--r-card); padding: 8px; box-shadow: 0 30px 60px -28px rgba(27,27,27,.4); opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility 0s linear var(--t); z-index: 45; }
.rooms-menu::before { content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.nav-rooms.open .rooms-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); transition-delay: 0s; }
.rooms-menu-item { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 10px; color: var(--ink); transition: background var(--t-fast); }
.rooms-menu-item:hover { background: var(--bg); }
.rooms-menu-item img { width: 72px; height: 54px; object-fit: cover; border-radius: 8px; flex-shrink: 0; background: var(--bg-2); }
.rooms-menu-item span { display: flex; flex-direction: column; gap: 2px; }
.rooms-menu-item strong { font-family: var(--display); font-weight: 600; font-size: 15px; }
.rooms-menu-item small { font-size: 12px; color: var(--ok); font-weight: 600; }
.rooms-menu-all { display: block; text-align: center; padding: 10px; margin-top: 4px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--red); }
.menu-rooms { display: flex; flex-direction: column; }
.menu-rooms .menu-sub { font-size: 20px; font-weight: 500; padding: 10px 0 10px 18px; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.menu-rooms .menu-sub::before { content: '/ '; color: var(--red); }

/* ---------- hero · the living postcard ---------- */
.hero { position: relative; height: 100dvh; min-height: 600px; max-height: 1080px; margin-top: calc(-1 * var(--nav-h)); background: var(--ink); overflow: hidden; isolation: isolate; }
.scene { position: absolute; inset: 0; perspective: 1400px; transform-style: preserve-3d; overflow: hidden; }
.layer { position: absolute; inset: -5%; will-change: transform; }
.layer-bg { z-index: 1; }
.layer-bg picture { display: contents; }
.scene-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; opacity: 0; transition: opacity .9s var(--ease); transform-origin: 50% 50%; }
.scene-img.on { opacity: 1; }
.layer-light { z-index: 2; pointer-events: none; }
.light { position: absolute; top: -22%; right: -8%; width: 62%; aspect-ratio: 1; border-radius: 50%; opacity: .5;
  background: radial-gradient(circle, rgba(255, 236, 200, .5) 0%, rgba(255, 226, 180, .2) 30%, rgba(255, 220, 170, 0) 62%); }
.layer-motes { z-index: 3; inset: 0; pointer-events: none; }
.layer-shade { z-index: 4; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 46% 42% at 26% 52%, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,0) 22%, rgba(0,0,0,0) 78%, rgba(0,0,0,.22) 100%); }

.hero-inner { position: absolute; z-index: 6; left: 0; right: 0; top: 50%; transform: translateY(-46%); max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); color: #fff; pointer-events: none; }
.hero-inner > * { pointer-events: auto; }
.hero-title { font-size: clamp(42px, 5.8vw, 86px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; max-width: 12ch; margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero-sub { font-size: clamp(16px, 1.25vw, 19px); max-width: 44ch; color: rgba(255,255,255,.94); margin: 0; text-shadow: 0 1px 14px rgba(0,0,0,.45); }

/* portals: photographs floating in the same space, label beside each */
.portals { position: absolute; inset: 0; z-index: 5; pointer-events: none; transform-style: preserve-3d; }
.portal { position: absolute; display: flex; align-items: center; gap: 16px; pointer-events: none; will-change: transform; transform-style: preserve-3d; }
.portal-card { display: block; position: relative; flex: 0 0 auto; width: var(--w); aspect-ratio: var(--ar, 3 / 4); padding: 0; border: 0; border-radius: 10px; overflow: hidden; background: var(--ink); pointer-events: auto; cursor: pointer;
  box-shadow: 0 30px 60px -22px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.55);
  transition: transform .7s var(--ease), box-shadow .7s var(--ease), opacity .7s var(--ease); }
.portal-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.portal-label { display: flex; flex-direction: column; gap: 6px; color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.5); pointer-events: none; transition: transform .7s var(--ease); white-space: nowrap; }
.portal-label strong { font-family: var(--display); font-weight: 500; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; }
.portal-label em { font-style: normal; font-size: 14px; color: rgba(255,255,255,.9); position: relative; padding-bottom: 3px; }
.portal-label em::after { content: ' →'; }
.portal-label em::before { content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%; background: rgba(255,255,255,.7); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.portal:hover .portal-card, .portal-card:focus-visible { transform: translateZ(60px) scale(1.05); box-shadow: 0 50px 90px -26px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.8); }
.portal:hover .portal-card img { transform: scale(1.06); }
.portal:hover .portal-label { transform: translateX(6px); }
.portal:hover .portal-label em::before { transform: scaleX(1); }
.portals.hovering .portal:not(:hover) .portal-card { transform: translateZ(-30px) scale(.97); opacity: .85; }
.portal.walking .portal-card, .portal.walking .portal-label { opacity: 0; }
.portal-card:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.p1 { left: 22%; top: 12%; --w: clamp(120px, 10vw, 170px); }
.p2 { right: 12%; top: 17%; --w: clamp(130px, 12vw, 205px); --ar: 1 / 1; }
.p3 { left: 6%; bottom: 9%; --w: clamp(150px, 14.5vw, 250px); --ar: 4 / 3; }
.p4 { right: 12%; bottom: 12%; --w: clamp(120px, 10.5vw, 180px); --ar: 4 / 5; }

.walker { position: absolute; z-index: 7; border-radius: 10px; overflow: hidden; pointer-events: none; transform-origin: 50% 50%; will-change: transform; box-shadow: 0 50px 90px -26px rgba(0,0,0,.7); }
.walker img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }

@media (prefers-reduced-motion: no-preference) {
  .scene-img.on { animation: sceneDrift 46s ease-in-out infinite alternate; }
  @keyframes sceneDrift { from { transform: scale(1.05) translate(0, 0); } to { transform: scale(1.1) translate(-1%, 0.6%); } }
  @media (max-width: 860px) {
    .scene-img.on { animation: sceneDriftMobile 46s ease-in-out infinite alternate; }
    @keyframes sceneDriftMobile { from { transform: scale(1.02) translate(0, 0); } to { transform: scale(1.07) translate(-0.6%, 0); } }
  }
  .light { animation: lightDrift 38s ease-in-out infinite alternate; }
  @keyframes lightDrift { from { transform: translate(0, 0); opacity: .4; } 50% { opacity: .6; } to { transform: translate(-14%, 10%); opacity: .45; } }
  .hero-title { animation: softIn 1s var(--ease) .2s both; }
  .hero-sub { animation: softIn 1s var(--ease) .38s both; }
  .portal { animation: softIn 1.1s var(--ease) both; }
  .p1 { animation-delay: .5s; } .p2 { animation-delay: .65s; } .p3 { animation-delay: .8s; } .p4 { animation-delay: .95s; }
}

.bar {
  position: relative; z-index: 2; max-width: var(--max); margin: 28px auto 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow);
  width: calc(100% - 2 * var(--pad));
}
.bar label { display: flex; flex-direction: column; gap: 6px; padding: 18px 22px; background: #fff; }
.bar label span { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.bar input, .bar select { border: 0; background: transparent; font: 500 17px var(--sans); color: var(--ink); padding: 0; outline: 0; min-height: 28px; width: 100%; min-width: 0; }
.bar .btn { border-radius: 0; height: 100%; padding-inline: 34px; }

/* ---------- intro + tonight ---------- */
.intro { max-width: var(--max); margin: 0 auto; padding: clamp(56px, 8vw, 110px) var(--pad) 0; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 80px); align-items: center; }
.intro-text { font-family: var(--display); font-weight: 400; font-size: clamp(24px, 2.6vw, 36px); line-height: 1.25; letter-spacing: -0.015em; margin: 0; }
.tonight { border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px 24px; display: flex; flex-direction: column; gap: 6px; background: var(--bg-2); }
.tonight-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.tonight strong { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: -0.01em; }
.room-map { list-style: none; margin: 10px 0 0; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.room-map li {
  position: relative; width: 56px; height: 56px; border-radius: var(--r-input); background: #fff; border: 1px solid var(--line);
  color: var(--ok); display: grid; place-items: center; font-weight: 600; font-size: 14px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast);
}
.room-map li.booked { color: var(--ink-3); background: var(--line); text-decoration: line-through; }
.room-map li:hover { transform: translateY(-3px); box-shadow: 0 10px 20px -12px rgba(0,0,0,.3); }
.room-map li .tip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--ink); color: #fff; font-size: 12px; font-weight: 500; white-space: nowrap; padding: 6px 10px; border-radius: 8px;
  opacity: 0; pointer-events: none; text-decoration: none; transition: opacity var(--t-fast), transform var(--t-fast) var(--ease);
}
.room-map li:hover .tip, .room-map li:focus-within .tip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- rooms · editorial showcase ---------- */
.rx { --ivory: #f3efe7; --ivory-2: #ebe6dc; --stone: #d9d2c5; --ink-warm: #1f1c19; --ink-warm-2: #5d5750; --wine: #8f1420; --wine-deep: #6f0e18;
  position: relative; background: var(--ivory); color: var(--ink-warm); padding: clamp(72px, 9vw, 130px) 0 0; overflow: hidden; isolation: isolate; }
.rx::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.48 0 0 0 0 0.44 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E"); }
.rx::after { content: ''; position: absolute; top: 0; bottom: 0; right: clamp(20px, 14vw, 190px); width: 1px; background: var(--stone); pointer-events: none; opacity: .8; }
.rx-inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); z-index: 1; }
.rx-head { max-width: 560px; margin-bottom: clamp(28px, 3.5vw, 44px); }
.rx-eyebrow { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-warm-2); margin: 0 0 6px; }
.rx-title { font-family: var(--serif); font-weight: 300; font-size: clamp(56px, 7.6vw, 104px); line-height: .92; letter-spacing: .01em; text-transform: uppercase; margin: 0 0 14px; color: var(--ink-warm); }
.rx-lede { font-size: 15px; line-height: 1.65; color: var(--ink-warm-2); margin: 0; max-width: 46ch; }

.rx-feature { position: relative; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 3fr); align-items: end; margin-bottom: 22px; }
.rx-photo { grid-column: 1 / span 2; grid-row: 1; width: 79%; aspect-ratio: 16 / 9.8; border-radius: 6px; overflow: hidden; background: var(--ivory-2); position: relative; transform-style: preserve-3d; will-change: transform; }
.rx-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.02); transition: opacity .75s cubic-bezier(.65, 0, .15, 1), transform 1.1s cubic-bezier(.22, 1, .36, 1); }
.rx-img.on { opacity: 1; transform: scale(1); }
.rx-panel { grid-column: 2; grid-row: 1; position: relative; z-index: 2; align-self: end; margin: 0 0 -8% -34%; background: rgba(250, 247, 241, .96); padding: clamp(24px, 2.4vw, 36px) clamp(24px, 2.6vw, 40px) clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(0,0,0,.05); box-shadow: 0 24px 50px -30px rgba(31, 28, 25, .35); transition: opacity .5s cubic-bezier(.65, 0, .15, 1), transform .7s cubic-bezier(.22, 1, .36, 1); }
.rx-panel.out { opacity: 0; transform: translateY(18px); }
.rx-index { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-warm-2); margin: 0 0 12px; }
.rx-index .rx-sep { opacity: .5; }
.rx-num { display: inline-block; height: 1.2em; overflow: hidden; vertical-align: bottom; }
.rx-num span { display: block; transition: transform .6s cubic-bezier(.65, 0, .15, 1), opacity .6s; }
.rx-num.roll span { transform: translateY(-100%); opacity: 0; }
.rx-avail { margin-left: auto; color: var(--wine); letter-spacing: .18em; white-space: nowrap; }
.rx-avail.full { color: var(--ink-warm-2); }
.rx-name { font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 2.8vw, 40px); line-height: 1.05; letter-spacing: -0.005em; margin: 0 0 8px; }
.rx-tagline { font-size: 15px; color: var(--ink-warm-2); margin: 0 0 16px; }
.rx-specs { font-size: 14px; color: var(--ink-warm); margin: 0; padding: 12px 0; border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.rx-specs i, .rx-amenities i { font-style: normal; color: var(--stone); margin: 0 10px; }
.rx-amenities { font-size: 13px; color: var(--ink-warm-2); line-height: 1.7; margin: 12px 0 22px; }
.rx-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.rx-btn { display: inline-flex; align-items: center; gap: 12px; padding: 15px 22px; background: var(--wine); color: #fff; border: 0; border-radius: 3px;
  font: 600 11px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; cursor: pointer; transition: background var(--t-fast), transform var(--t-fast) var(--ease); }
.rx-btn:hover { background: var(--wine-deep); }
.rx-btn:active { transform: scale(.98); }
.rx-btn span { font-size: 14px; transition: transform var(--t) var(--ease); }
.rx-btn:hover span { transform: translateX(3px); }
.rx-btn:disabled { background: var(--stone); color: var(--ink-warm-2); cursor: not-allowed; }
.rx-btn-line { background: transparent; color: var(--ink-warm); border: 1px solid var(--ink-warm); padding: 14px 21px; }
.rx-btn-line:hover { background: var(--ink-warm); color: #f3efe7; }
.rx-btn-light { background: transparent; color: #f3efe7; border: 1px solid rgba(243,239,231,.6); padding: 14px 21px; }
.rx-btn-light:hover { background: #f3efe7; color: var(--ink-warm); }
.rx-link { display: inline-flex; align-items: center; gap: 8px; font: 600 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--ink-warm); border-bottom: 1px solid var(--stone); padding-bottom: 4px; transition: border-color var(--t-fast); }
.rx-link:hover { border-color: var(--ink-warm); }
.rx-link span { font-size: 13px; }

.rx-selector { display: flex; align-items: flex-end; gap: clamp(28px, 4vw, 56px); border-top: 1px solid var(--stone); padding: 6px 0 0; width: 79%; margin-bottom: clamp(64px, 8vw, 110px); }
.rx-tab { display: flex; align-items: baseline; gap: 12px; padding: 14px 0 12px; background: none; border: 0; border-bottom: 2px solid transparent; margin-bottom: -1px; color: var(--ink-warm-2); cursor: pointer; transition: color var(--t), border-color var(--t); }
.rx-tab b { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1; color: var(--stone); transition: color var(--t); }
.rx-tab span { font-size: 14px; letter-spacing: .02em; }
.rx-tab[aria-selected="true"] { color: var(--ink-warm); border-bottom-color: var(--wine); }
.rx-tab[aria-selected="true"] b, .rx-tab:hover b { color: var(--ink-warm); }
.rx-tab:hover { color: var(--ink-warm); }

.rx-suite { position: relative; z-index: 1; margin: 0; min-height: clamp(420px, 46vw, 640px); display: grid; align-items: center; background: #1d1916; color: #f3efe7; overflow: hidden; }
.rx-suite-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%; }
.rx-suite-panel { position: relative; z-index: 1; width: min(560px, 46%); margin-left: calc((100vw - min(var(--max), 100vw)) / 2 + var(--pad)); padding: clamp(36px, 4vw, 64px) clamp(28px, 3.5vw, 56px); background: rgba(24, 20, 17, .74); border-right: 1px solid rgba(243, 239, 231, .12); }
.rx-index-light { color: rgba(243, 239, 231, .7); }
.rx-index-light .rx-avail { color: #e8b4b8; }
.rx-suite-title { font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 4.4vw, 64px); line-height: 1.02; margin: 0 0 18px; }
.rx-specs-light { color: rgba(243, 239, 231, .9); border-color: rgba(243, 239, 231, .18); }
.rx-specs-light i { color: rgba(243, 239, 231, .35); }
.rx-suite-desc { font-size: 15px; line-height: 1.65; color: rgba(243, 239, 231, .82); margin: 16px 0 24px; max-width: 42ch; }
.rx-link-light { color: #f3efe7; border-color: rgba(243, 239, 231, .35); }
.rx-link-light:hover { border-color: #f3efe7; }

@media (prefers-reduced-motion: reduce) { .rx-img, .rx-panel, .rx-num span { transition: none; } }

@media (max-width: 1024px) {
  .rx-photo { width: 100%; aspect-ratio: 16 / 10; }
  .rx-feature { grid-template-columns: 1fr; }
  .rx-photo { grid-column: 1; }
  .rx-panel { grid-column: 1; grid-row: 2; margin: 0; border-top: 0; }
  .rx-selector { width: 100%; }
  .rx-suite-panel { width: min(560px, 60%); }
}
@media (max-width: 860px) {
  .rx { padding-top: 64px; }
  .rx::after { display: none; }
  .rx-title { font-size: clamp(48px, 16vw, 72px); }
  .rx-photo { aspect-ratio: 4 / 3; border-radius: 4px; }
  .rx-panel { padding: 22px 20px 24px; }
  .rx-avail { margin-left: 0; }
  .rx-index { flex-wrap: wrap; row-gap: 4px; }
  .rx-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .rx-actions .rx-btn { width: 100%; justify-content: center; }
  .rx-selector { gap: 22px; overflow-x: auto; scrollbar-width: none; margin-bottom: 56px; }
  .rx-selector::-webkit-scrollbar { display: none; }
  .rx-tab { flex: 0 0 auto; }
  .rx-tab b { font-size: 20px; }
  .rx-suite { display: block; min-height: 0; background: var(--ivory); color: var(--ink-warm); }
  .rx-suite-img { position: static; aspect-ratio: 4 / 3; height: auto; }
  .rx-suite-panel { width: auto; margin: 0; padding: 28px var(--pad) 40px; background: transparent; border: 0; }
  .rx-index-light { color: var(--ink-warm-2); }
  .rx-index-light .rx-avail { color: var(--wine); }
  .rx-specs-light { color: var(--ink-warm); border-color: var(--stone); }
  .rx-specs-light i { color: var(--stone); }
  .rx-suite-desc { color: var(--ink-warm-2); }
  .rx-link-light { color: var(--ink-warm); border-color: var(--stone); }
  .rx-btn-light { color: var(--ink-warm); border-color: var(--ink-warm); }
  .rx-btn-light:hover { background: var(--ink-warm); color: #f3efe7; }
}

/* ---------- booking ---------- */
.book { max-width: none; background: var(--bg-2); }
.book-inner { max-width: var(--max); margin: 0 auto; }
.book-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 3vw, 48px); align-items: start; }
.book-form { background: #fbf9f5; border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(22px, 3vw, 36px); }
.field-group { border: 0; padding: 0; margin: 0 0 22px; }
.field-group legend, .field > span { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.field > span small { color: var(--ink-3); font-weight: 400; margin-left: 6px; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg-opt { position: relative; }
.seg-opt input { position: absolute; inset: 0; opacity: 0; margin: 0; }
.seg-opt label {
  display: flex; flex-direction: column; gap: 3px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-input);
  cursor: pointer; background: #fff; transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast) var(--ease);
}
.seg-opt label strong { font-weight: 600; }
.seg-opt label span { font-size: 13px; color: var(--ink-2); }
.seg-opt label em { font-style: normal; font-size: 12px; color: var(--ok); font-weight: 600; }
.seg-opt input:checked + label { border-color: var(--red); background: var(--red-soft); box-shadow: inset 0 0 0 1px var(--red); }
.seg-opt input:focus-visible + label { outline: 2px solid var(--red); outline-offset: 2px; }
.seg-opt.full label { opacity: .5; cursor: not-allowed; }
.seg-opt.full label em { color: var(--ink-3); }
.seg-opt:not(.full) label:active { transform: scale(.98); }

.field { display: block; margin-bottom: 18px; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-input);
  font: inherit; color: var(--ink); background: #fff; outline: 0; transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.field ::placeholder { color: var(--ink-3); }
.field .err { display: none; font-style: normal; font-size: 13px; color: var(--red-deep); margin-top: 6px; }
.field.invalid input, .field.invalid select { border-color: var(--red); }
.field.invalid .err { display: block; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; }
.form-alert { background: var(--red-soft); color: var(--red-deep); padding: 12px 16px; border-radius: var(--r-input); margin-bottom: 18px; font-size: 14px; }
.form-alert ul { margin: 0; padding-left: 18px; }
.form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 8px; }
.form-note { margin: 0; font-size: 13px; color: var(--ink-3); }

.summary { position: sticky; top: calc(var(--nav-h) + 24px); background: var(--red); color: #fff; border-radius: var(--r-card); padding: 28px 30px; }
.summary-title { font-family: var(--display); font-size: 26px; font-weight: 600; margin-bottom: 16px; }
.summary-rows { margin: 0 0 18px; }
.summary-rows div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.22); font-size: 15px; }
.summary-rows dt { color: rgba(255,255,255,.78); }
.summary-rows dd { margin: 0; font-weight: 600; text-align: right; }
.summary-rows dd.tick { animation: tick .6s var(--ease); }
.summary-rows dd.empty { color: rgba(255,255,255,.6); font-weight: 400; }
@keyframes tick { 0% { transform: translateY(-4px); opacity: .3; } 100% { transform: none; opacity: 1; } }
.summary-note { font-size: 14px; color: rgba(255,255,255,.82); margin: 0 0 6px; }
.summary-note a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.5); }
.summary .check { margin-bottom: 6px; }
.summary .ref { font-family: var(--display); font-size: 36px; font-weight: 700; letter-spacing: .02em; margin: -6px 0 14px; }
.summary .btn { margin-top: 16px; }
.summary-state[hidden] { display: none; }

/* ---------- the stay · editorial ---------- */
.st { --ivory: #f3efe7; --ivory-2: #ebe6dc; --stone: #d9d2c5; --ink-warm: #1f1c19; --ink-warm-2: #5d5750; --wine: #8f1420; --beige: #b09a7a;
  position: relative; background: var(--ivory); color: var(--ink-warm); padding: clamp(80px, 10vw, 150px) 0; overflow: hidden; isolation: isolate; }
.st::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.48 0 0 0 0 0.44 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E"); }
.st-arcs { position: absolute; top: -40px; right: -60px; width: clamp(240px, 26vw, 420px); color: var(--stone); opacity: .7; pointer-events: none; }
.st-leaf { position: absolute; right: clamp(10px, 4vw, 70px); bottom: -30px; width: clamp(120px, 12vw, 190px); color: var(--beige); opacity: .28; pointer-events: none; }
.st-inner { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: minmax(0, 52fr) minmax(0, 48fr); gap: clamp(36px, 5vw, 88px); align-items: center; }
.st-photo { margin: 0; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--ivory-2); transform-style: preserve-3d; will-change: transform; box-shadow: 0 30px 60px -40px rgba(31, 28, 25, .45); }
.st-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s cubic-bezier(.22, 1, .36, 1); }
.st-photo:hover img { transform: scale(1.03); }
.st-eyebrow { display: flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-warm-2); margin: 0 0 18px; }
.st-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--wine); }
.st-title { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 6.4vw, 88px); line-height: .95; letter-spacing: -0.01em; margin: 0 0 22px; }
.st-lede { font-size: 17px; line-height: 1.6; color: var(--ink-warm-2); margin: 0 0 32px; max-width: 44ch; }
.st-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--stone); }
.st-row { border-bottom: 1px solid var(--stone); position: relative; }
.st-row::before { content: ''; position: absolute; inset: 0 -14px; background: rgba(176, 154, 122, .1); opacity: 0; transition: opacity .4s var(--ease); pointer-events: none; border-radius: 4px; }
.st-row:hover::before { opacity: 1; }
.st-toggle { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 0 14px; width: 100%; padding: 22px 0; background: none; border: 0; text-align: left; color: inherit; cursor: default; }
.st-n { display: none; }
.st-icon { color: var(--beige); opacity: 0; transform: translateX(-6px); transition: opacity .45s var(--ease), transform .45s var(--ease); line-height: 0; }
.st-row:hover .st-icon, .st-toggle:focus-visible .st-icon { opacity: 1; transform: none; }
.st-name { font-family: var(--serif); font-weight: 500; font-size: clamp(22px, 1.9vw, 28px); white-space: nowrap; line-height: 1.1; color: var(--ink-warm); transition: color .35s; }
.st-panel { padding: 0 0 0 58px; }
.st-panel p { margin: -8px 0 22px; font-size: 15px; line-height: 1.6; color: var(--ink-warm-2); max-width: 46ch; }
@media (min-width: 861px) {
  .st-toggle { grid-template-columns: 44px 1fr; }
  .st-row { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); align-items: center; gap: 24px; }
  .st-panel { padding: 0; }
  .st-panel p { margin: 0; }
}
@media (max-width: 860px) {
  .st { padding: 64px 0 72px; }
  .st-arcs { display: none; }
  .st-inner { grid-template-columns: 1fr; gap: 28px; }
  .st-copy { display: contents; }
  .st-eyebrow { order: 0; } .st-title { order: 1; } .st-lede { order: 2; margin-bottom: 4px; }
  .st-photo { order: 3; aspect-ratio: 4 / 5; border-radius: 16px; box-shadow: none; }
  .st-list { order: 4; margin-top: 8px; }
  .st-row::before { display: none; }
  .st-toggle { grid-template-columns: auto 1fr auto; gap: 0 14px; padding: 18px 0; cursor: pointer; }
  .st-n { display: block; font-size: 12px; letter-spacing: .18em; color: var(--ink-warm-2); }
  .st-n::after { content: ' —'; }
  .st-icon { display: none; }
  .st-name { font-size: 22px; }
  .st-toggle::after { content: ''; width: 9px; height: 9px; border-right: 1.5px solid var(--ink-warm-2); border-bottom: 1.5px solid var(--ink-warm-2); transform: rotate(45deg) translate(-2px, -2px); transition: transform .4s var(--ease); }
  .st-toggle[aria-expanded="true"]::after { transform: rotate(-135deg) translate(-2px, -2px); }
  .st-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); padding: 0; }
  .st-panel > p { overflow: hidden; margin: 0; opacity: 0; transition: opacity .35s var(--ease), padding .45s var(--ease); }
  .st-row.open .st-panel { grid-template-rows: 1fr; }
  .st-row.open .st-panel > p { opacity: 1; padding-bottom: 20px; }
}
@media (prefers-reduced-motion: reduce) { .st-photo img, .st-icon, .st-panel, .st-panel > p { transition: none; } }

/* ---------- gallery ---------- */
.masonry { columns: 3; column-gap: 16px; }
.shot { display: block; width: 100%; padding: 0; border: 0; background: var(--bg-2); border-radius: var(--r-card); overflow: hidden; margin-bottom: 16px; break-inside: avoid; }
.shot img { width: 100%; transition: transform .9s var(--ease); }
.shot:hover img { transform: scale(1.04); }

.lightbox { border: 0; padding: 0; background: transparent; max-width: 100vw; max-height: 100dvh; width: 100vw; height: 100dvh; }
.lightbox::backdrop { background: rgba(15, 15, 15, .92); }
.lightbox img { position: absolute; inset: 0; margin: auto; max-width: min(92vw, 1400px); max-height: 86dvh; width: auto; height: auto; object-fit: contain; border-radius: var(--r-card); }
.lb-close, .lb-nav { position: absolute; z-index: 1; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; transition: background var(--t-fast); }
.lb-close:hover, .lb-nav:hover { background: var(--red); }
.lb-close { top: 18px; right: 18px; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
.contact-grid h2 { margin-bottom: 22px; }
.rows { margin: 0; }
.rows div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.rows dt { color: var(--ink-3); font-size: 14px; padding-top: 2px; }
.rows dd { margin: 0; font-size: 17px; }
.rows a { border-bottom: 1px solid var(--line); transition: border-color var(--t-fast); }
.rows a:hover { border-color: var(--red); }
.map { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-2); border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map { position: relative; }
.map-links { position: absolute; left: 14px; bottom: 14px; display: flex; gap: 8px; z-index: 1; }

/* ---------- room detail page ---------- */
.page-room .nav { position: sticky; }
.page-room main { opacity: 0; transition: opacity .5s var(--ease); }
.page-room.ready main { opacity: 1; }
.room-page { max-width: var(--max); margin: 0 auto; padding: 36px var(--pad) 40px; }
.crumb { display: flex; gap: 10px; font-size: 13px; color: var(--ink-3); margin: 0 0 18px; }
.crumb a { color: var(--ink-2); }
.crumb a:hover { color: var(--red); }
.room-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.room-title-row h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 700; letter-spacing: -0.03em; }
.room-title-row .lede { margin-top: 8px; }
.room-title-row .chip { margin-top: 14px; flex-shrink: 0; }
.room-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-auto-rows: 260px; gap: 12px; margin-bottom: clamp(40px, 5vw, 64px); }
.room-gallery.single { grid-template-columns: 1fr; grid-auto-rows: 480px; }
.g-shot { padding: 0; border: 0; background: var(--bg-2); border-radius: var(--r-card); overflow: hidden; cursor: zoom-in; }
.g-shot.g-main { grid-row: span 2; }
.g-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.g-shot:hover img { transform: scale(1.03); }
.room-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.room-block { margin-bottom: clamp(36px, 4vw, 56px); }
.room-block h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 16px; }
.room-desc { font-size: 17px; color: var(--ink-2); max-width: 62ch; }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 24px; margin: 22px 0 0; }
.spec-grid div { padding: 12px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; font-size: 15px; }
.spec-grid dt { color: var(--ink-3); }
.spec-grid dd { margin: 0; font-weight: 600; text-align: right; }
.tick-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; font-size: 15px; color: var(--ink-2); }
.tick-list li { padding-left: 24px; position: relative; }
.tick-list li::before { content: ''; position: absolute; left: 0; top: 5px; width: 12px; height: 7px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }
.facility-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.facility-grid li { background: var(--bg-2); border-radius: var(--r-card); padding: 18px 20px; }
.facility-grid h3 { font-size: 17px; margin-bottom: 6px; }
.facility-grid p { margin: 0; font-size: 14px; color: var(--ink-2); }
.know-list { margin: 0; }
.know-list div { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); font-size: 15px; }
.know-list dt { color: var(--ink-3); }
.know-list dd { margin: 0; }
.room-side { position: sticky; top: calc(var(--nav-h) + 24px); }
.side-card { background: #fbf9f5; border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 28px; box-shadow: 0 30px 60px -32px rgba(27,27,27,.25); }
.side-title { font-family: var(--display); font-size: 24px; font-weight: 600; margin: 0 0 6px; }
.side-avail { font-size: 14px; color: var(--ok); font-weight: 600; margin: 0 0 18px; }
.side-card .btn { width: 100%; margin-bottom: 16px; }
.side-note { font-size: 14px; color: var(--ink-2); margin: 0 0 8px; }
.side-note a { color: var(--ink); border-bottom: 1px solid var(--line); }
.other-rooms { border-top: 1px solid var(--line); padding-top: clamp(36px, 4vw, 56px); margin-top: 20px; }
.other-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.other-card { display: flex; flex-direction: column; background: #fbf9f5; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
.other-card:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -32px rgba(27,27,27,.35); }
.other-card img { aspect-ratio: 16 / 10; width: 100%; object-fit: cover; }
.other-body { display: flex; flex-direction: column; gap: 4px; padding: 18px 20px 20px; }
.other-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.other-top strong { font-family: var(--display); font-size: 20px; font-weight: 600; }
.other-line { color: var(--ink-2); font-size: 14px; }
.other-specs { color: var(--ink-3); font-size: 13px; margin-top: 4px; }

/* ---------- botanical line-art ---------- */
.deco { position: absolute; pointer-events: none; color: #cfc5b3; opacity: .55; z-index: 0; }
.intro { position: relative; overflow: hidden; }
.deco-intro { right: clamp(-40px, -2vw, -10px); top: -40px; width: clamp(140px, 15vw, 230px); height: auto; aspect-ratio: 240 / 520; opacity: .4; }
.book { position: relative; overflow: hidden; }
.deco-book { left: clamp(-60px, -3vw, -20px); bottom: -60px; width: clamp(160px, 16vw, 260px); aspect-ratio: 240 / 520; transform: scaleX(-1); opacity: .45; }
.deco-book-arcs { right: -60px; top: -60px; width: clamp(240px, 24vw, 380px); aspect-ratio: 1; opacity: .5; }
.gallery { position: relative; }
.deco-gallery { right: var(--pad); top: 40px; width: clamp(90px, 9vw, 140px); aspect-ratio: 240 / 520; opacity: .4; }
.contact { position: relative; overflow: hidden; }
.deco-contact { left: -80px; top: -80px; width: clamp(240px, 24vw, 380px); aspect-ratio: 1; transform: scaleX(-1); opacity: .5; }
.foot { position: relative; overflow: hidden; }
.deco-foot { right: 6%; bottom: -70px; width: clamp(110px, 10vw, 160px); aspect-ratio: 240 / 520; opacity: .35; }
.deco-stay { right: clamp(10px, 4vw, 70px); bottom: -40px; width: clamp(130px, 13vw, 210px); aspect-ratio: 240 / 520; color: var(--beige, #b09a7a); opacity: .3; }
.room-page { position: relative; overflow: hidden; }
.deco-room-arcs { right: -70px; top: -70px; width: clamp(240px, 24vw, 380px); aspect-ratio: 1; opacity: .5; }
.deco-room-frond { left: -40px; bottom: 120px; width: clamp(140px, 14vw, 220px); aspect-ratio: 240 / 520; transform: scaleX(-1); opacity: .35; }
.book-inner, .gallery > :not(.deco), .contact-grid, .foot > :not(.deco), .room-page > :not(.deco) { position: relative; z-index: 1; }
svg.deco { position: absolute; z-index: 0; }
@media (max-width: 860px) {
  .deco-intro { width: 120px; right: -20px; top: auto; bottom: -30px; }
  .deco-stay { right: -30px; bottom: -90px; width: 130px; }
  .deco-foot { right: -10px; bottom: -60px; width: 110px; }
  .deco-book-arcs, .deco-contact, .deco-room-arcs { width: 200px; }
  .deco-gallery { display: none; }
  .deco-book { width: 130px; bottom: -40px; }
  .deco-room-frond { width: 120px; bottom: 60px; }
}

/* ---------- whatsapp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 30;
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px 12px 14px;
  background: #25d366; color: #fff; border-radius: var(--r-pill); font-weight: 600; font-size: 14px;
  box-shadow: 0 12px 28px -12px rgba(0,0,0,.45); transition: transform var(--t-fast) var(--ease), background var(--t-fast);
}
.wa-float:hover { background: #1ebe5b; transform: translateY(-2px); }
.wa-float:active { transform: scale(.97); }
.wa-float[hidden] { display: none; }
@media (max-width: 560px) { .wa-float { padding: 14px; } .wa-float span { display: none; } }

/* ---------- footer ---------- */
.foot { border-top: 3px solid var(--red); padding: 36px var(--pad) 44px; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 24px 40px; align-items: center; }
.foot-brand img { width: 120px; height: auto; }
.foot-nav { display: flex; gap: 22px; font-size: 14px; font-weight: 500; color: var(--ink-2); justify-content: center; flex-wrap: wrap; }
.foot-nav a:hover { color: var(--red); }
.foot-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.foot-copy { margin: 0; font-size: 13px; color: var(--ink-3); }
.foot-credit { margin: 0; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); }
.foot-credit span { color: var(--ink); font-weight: 600; }

/* ---------- motion ---------- */
.reveal { opacity: 0; transform: translateY(18px); }
@keyframes softIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--i, 0) * 70ms); }
  .reveal.in { opacity: 1; transform: none; }
  .bar { animation: softIn .9s var(--ease) .45s both; }
  .menu > a { animation: softIn .5s var(--ease) both; animation-delay: calc(var(--i) * 50ms); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: 0s !important; animation-duration: 0s !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; }
  .room-layout { grid-template-columns: 1fr; }
  .room-side { position: static; }
  .book-grid, .contact-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .masonry { columns: 2; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: flex; order: 2; margin-left: auto; }
  .nav-cta { display: inline-flex; order: 3; margin-left: 4px; }
  .nav { gap: 12px; }
  .hero { height: 100dvh; min-height: 640px; max-height: 1000px; }
  .hero-inner { top: calc(var(--nav-h) + 7vh); bottom: auto; transform: none; padding-bottom: 0; }
  .hero-title { max-width: none; margin-bottom: 14px; }
  .hero-sub { max-width: 36ch; font-size: 16px; line-height: 1.5; }
  .brand-text small { white-space: nowrap; }
  .portals { display: none; }
  .layer-motes { display: none; }
  .layer-bg { inset: -5%; }
  .scene-img { object-position: 50% 62%; transform-origin: 50% 62%; }
  .layer-shade { background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.18) 30%, rgba(0,0,0,0) 52%, rgba(0,0,0,.1) 100%); }
  .bar { margin-top: 20px; grid-template-columns: 1fr 1fr; }
  .bar { margin-top: 20px; grid-template-columns: 1fr 1fr; }
  .bar .btn { grid-column: span 2; padding: 18px; }
  .room-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .g-shot.g-main { grid-row: auto; grid-auto-rows: 280px; }
  .room-title-row { flex-direction: column; gap: 8px; }
  .room-title-row .chip { margin-top: 0; }
  .facility-grid, .tick-list, .spec-grid, .other-grid { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; justify-items: start; }
  .foot-right { align-items: flex-start; }
}
@media (max-width: 560px) {
  .hero { height: 100dvh; }
  .hero-title { font-size: clamp(34px, 10.6vw, 50px); letter-spacing: -0.035em; }
  .hero-sub { font-size: 15px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .nav { padding: 0 16px; gap: 8px; }
  .brand { gap: 8px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 9px; letter-spacing: .14em; }
  .bar { grid-template-columns: 1fr; }
  .bar .btn { grid-column: auto; }
  .seg, .grid-2 { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .rows div { grid-template-columns: 90px 1fr; }
  .form-foot .btn { width: 100%; }
  .summary { padding: 22px; }
}
