/* ══ Sunset Lab — design tokens (warm editorial: cream / gold / ink) ══ */
@font-face { font-family: 'Barefoot Display'; src: url('../fonts/BarefootDisplay.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Apercu'; src: url('../fonts/ApercuPro-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Apercu'; src: url('../fonts/ApercuPro-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Apercu'; src: url('../fonts/ApercuPro-Medium.woff2') format('woff2'); font-weight: 500 700; font-display: swap; }
@font-face { font-family: 'Apercu Mono'; src: url('../fonts/apercu-mono-regular-pro.ttf') format('truetype'); font-weight: 400; font-display: swap; }

:root {
  --ink: #211E1B; --ink-soft: #4A443D;
  --night: #0F0A2E;               /* deep navy for event sections (matches the events graphic) */
  --accent: #E6178C;              /* magenta accent */
  /* legacy token names kept; --coral/--pink now carry the magenta accent, --amber/--teal stay gold */
  --coral: #E6178C; --pink: #E6178C; --amber: #B8935E; --teal: #A6875A; --gold: #A6875A;
  --sand: #EDE3D2; --sand-deep: #E4D7C0;
  --paper: #FFF9F0;
  --font-display: 'Barefoot Display', Georgia, serif;
  --font-body: 'Apercu', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'Apercu Mono', ui-monospace, Menlo, monospace;
  --maxw: 1280px; --gutter: clamp(1.25rem, 4vw, 4rem); --radius: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }
body { font-family: var(--font-body); color: var(--ink); background: var(--sand); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1,h2,h3 { font-family: var(--font-display); line-height: 1.08; font-weight: 400; }
.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 10vw, 8rem); position: relative; }
.eyebrow { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--coral); margin-bottom: 1rem; }
.display-xl { font-size: clamp(2.8rem, 8vw, 6.5rem); }
.display-lg { font-size: clamp(2rem, 5vw, 3.8rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); max-width: 34em; }
.grid-2 { display: grid; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (min-width: 860px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

/* buttons */
.btn { display: inline-block; padding: .9rem 1.8rem; border-radius: 0; font-weight: 600;
  transition: transform .25s ease, background .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-book { background: var(--ink); color: var(--sand); }
.btn-book:hover { background: var(--coral); color: #fff; }
.btn-outline { border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--sand); }
.btn-ghost { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }

/* nav */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; gap: 2rem;
  padding: 1rem var(--gutter); transition: background .3s ease, box-shadow .3s ease; }
.nav.scrolled { background: rgba(237,227,210,.92); backdrop-filter: blur(8px); box-shadow: 0 2px 20px rgba(33,30,27,.08); }
.nav-logo img { height: 52px; width: auto; filter: brightness(.13); }
.has-dark-hero .nav:not(.scrolled) .nav-logo img { filter: none; }
.nav-links { display: none; gap: 1.8rem; margin-left: auto; font-weight: 500; }
.nav-links a { position: relative; transition: color .3s ease; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--coral); transition: width .3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav .btn-book { display: none; }
.menu-toggle { margin-left: auto; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; transition: color .3s ease; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav .btn-book { display: inline-block; }
  .menu-toggle { display: none; }
}

/* drawer */
.drawer { position: fixed; inset: 0; z-index: 60; background: var(--ink); color: var(--sand);
  display: flex; flex-direction: column; gap: 1.4rem; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2rem;
  transform: translateY(-100%); transition: transform .45s cubic-bezier(.7,0,.2,1), visibility 0s .45s;
  visibility: hidden; }
.drawer.open { transform: translateY(0); visibility: visible; transition: transform .45s cubic-bezier(.7,0,.2,1), visibility 0s 0s; }
.drawer-close { position: absolute; top: 1.5rem; right: var(--gutter); font-family: var(--font-body);
  font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; }

/* marquee */
.marquee { overflow: hidden; background: var(--sand-deep); color: var(--ink); padding-block: .9rem; white-space: nowrap; }
.marquee-track { display: inline-block; font-family: var(--font-display); font-size: 1.4rem;
  animation: marquee 22s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* footer */
.footer { background: var(--ink); color: var(--sand); padding: clamp(3rem,8vw,6rem) var(--gutter) 2rem; }
.footer-wordmark { font-family: var(--font-display); font-weight: 400;
  font-size: clamp(4rem, 21vw, 17rem); line-height: .9; letter-spacing: -.02em; color: var(--coral); }
.footer-desc { margin: 1rem 0 3rem; opacity: .75; max-width: 32em; }
.footer-cols { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 720px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-cols h4 { font-family: var(--font-display); color: var(--amber); margin-bottom: .8rem; }
.footer-cols a, .footer-cols p { display: block; margin-bottom: .5rem; opacity: .85; }
.footer-cols a:hover { color: var(--coral); opacity: 1; }
.footer-fine { opacity: .5; font-size: .85rem; border-top: 1px solid rgba(245,233,214,.15); padding-top: 1.5rem; }

/* gentle fade-up reveals: hidden only when JS adds .has-reveal (no-JS stays visible) */
.has-reveal [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.has-reveal [data-reveal].revealed { opacity: 1; transform: none; }

/* skip link */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: var(--sand); padding: .8rem 1.2rem; border-radius: 0 0 12px 0; }
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .drawer { transition: none; }
}

/* ══ PAGE: HOME ══ */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  gap: clamp(2.5rem, 7vh, 5rem); position: relative; overflow: hidden;
  padding-top: clamp(90px, 15svh, 130px); padding-bottom: clamp(1.5rem, 4vh, 3rem);
  color: var(--sand);
  background:
    radial-gradient(135% 105% at 100% 0%, rgba(230,23,140,.45), transparent 58%),
    linear-gradient(180deg, rgba(15,10,46,.72), rgba(15,10,46,.82)),
    url(../images/gallery/pizzas-table.jpg) center/cover no-repeat,
    var(--night); }
.hero > .container { width: 100%; }
.hero .lead { color: rgba(245,233,214,.82); }
.hero .btn-book { background: var(--accent); color: #fff; }
.hero .btn-book:hover { background: #fff; color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* hero tiles: Eat / Events / Stay */
.hero-tiles { width: 100%; display: grid; margin-top: auto; border-top: 2px solid var(--accent); }
.hero-tile { display: flex; flex-direction: column; gap: .35rem; padding: 1.5rem 1.5rem 1.7rem 0;
  border-bottom: 1px solid rgba(245,233,214,.18); transition: background .25s ease; color: var(--sand); }
.hero-tile:hover { background: rgba(255,255,255,.05); }
.tile-num { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .18em; color: var(--accent); }
.tile-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1; }
.tile-sub { color: rgba(245,233,214,.7); font-size: .93rem; max-width: 26em; }
.tile-cta { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase;
  letter-spacing: .14em; margin-top: .6rem; }
.hero-tile:hover .tile-cta { color: var(--accent); }
@media (min-width: 860px) {
  .hero-tiles { grid-template-columns: repeat(3, 1fr); }
  .hero-tile { border-bottom: 0; }
  .hero-tile + .hero-tile { border-left: 1px solid rgba(245,233,214,.18); padding-left: 1.5rem; }
}
.vibes { background: var(--paper); border-radius: var(--radius) var(--radius) 0 0; }
.vibes-img img, .rooms-img img { border-radius: var(--radius); aspect-ratio: 4/5; object-fit: cover; }
.pizza-feature { background: var(--sand); }
.pizza-rotator { width: min(78vw, 460px); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  margin-inline: auto; box-shadow: 0 30px 80px rgba(36,28,51,.28); }
.pizza-rotator img { width: 100%; height: 100%; object-fit: cover; }
.events-teaser { background: var(--night); color: var(--sand); text-align: center; }
.events-teaser .lead { color: rgba(245,233,214,.8); margin-inline: auto; }
.events-teaser .eyebrow { color: var(--pink); }

/* home event list */
.event-lines { list-style: none; max-width: 860px; margin: 2.6rem auto; text-align: left;
  border-top: 1px solid rgba(237,227,210,.3); }
.event-lines a { display: grid; grid-template-columns: 10rem 1fr auto; column-gap: 1.2rem;
  align-items: baseline; padding: 1.15rem .2rem; border-bottom: 1px solid rgba(237,227,210,.3);
  transition: background .25s ease; }
.event-lines a:hover { background: rgba(237,227,210,.07); }
.el-day { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .16em; color: var(--amber); }
.el-title { font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.8rem); line-height: 1.1; }
.el-arrow { font-family: var(--font-mono); opacity: .55; transition: transform .25s ease, opacity .25s ease; }
.event-lines a:hover .el-arrow { transform: translateX(4px); opacity: 1; }
@media (max-width: 700px) {
  .event-lines a { grid-template-columns: 1fr auto; row-gap: .15rem; }
  .el-day { grid-column: 1 / -1; }
}
.events-teaser .btn-ghost { margin-top: .5rem; }
.rooms-teaser { background: var(--paper); }
.hstrip { overflow-x: auto; background: var(--sand); -webkit-overflow-scrolling: touch; }
.hstrip-track { display: flex; gap: 1.2rem; padding: 3rem var(--gutter); width: max-content; }
.hstrip-track img { height: clamp(280px, 55vh, 520px); width: auto; border-radius: var(--radius); object-fit: cover; }
.reserve { background: var(--sand); scroll-margin-top: -4rem; }
.locate { background: var(--sand-deep); text-align: center; }
.locate .lead, .locate .hero-ctas { margin-inline: auto; justify-content: center; }

/* ══ PAGE: MENU ══ */
.menu-hero { padding-top: clamp(8rem, 16vw, 12rem); background: var(--sand); }
.menu-body { background: var(--paper); }
.menu-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 3rem; }
.menu-tab { padding: .6rem 1.4rem; border-radius: 0; border: 2px solid var(--ink); font-weight: 600;
  transition: background .25s ease, color .25s ease; }
.menu-tab.active, .menu-tab:hover { background: var(--ink); color: var(--sand); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; gap: 1.6rem; }
@media (min-width: 860px) { .menu-panel.active { grid-template-columns: 1fr 1fr; column-gap: 4rem; } }
.menu-item-head { display: flex; align-items: baseline; gap: .6rem; }
.menu-item-head h3 { font-size: 1.25rem; }
.menu-item-head .dots { flex: 1; border-bottom: 2px dotted rgba(36,28,51,.3); }
.menu-item-head .price { font-family: var(--font-display); font-weight: 600; color: var(--coral); white-space: nowrap; }
.menu-item p { color: var(--ink-soft); font-size: .95rem; }
.sig { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; background: var(--amber);
  color: var(--ink); border-radius: 2px; padding: .2em .8em; vertical-align: middle; font-family: var(--font-body); }
.menu-note { grid-column: 1 / -1; font-style: italic; color: var(--ink-soft); }

/* ══ PAGE: EVENTS ══ */
.events-hero { padding-top: clamp(8rem, 16vw, 12rem); background: var(--night); color: var(--sand); }
.events-hero .lead { color: rgba(245,233,214,.8); }
.events-hero .eyebrow { color: var(--pink); }
.events-list { background: var(--paper); }
.event-card { padding: 2.5rem 0; border-bottom: 2px solid var(--sand-deep); }
.event-card:last-child { border-bottom: 0; }
.event-day { text-transform: uppercase; letter-spacing: .16em; font-weight: 600; color: var(--coral); margin-bottom: .6rem; }
.event-card a, .events-follow a { text-decoration: underline; text-underline-offset: 3px; }
.events-follow { margin-top: 2.2rem; }
.list-label { margin-top: 1rem; }
.event-card + .list-label { margin-top: 3.5rem; }
.el-date { color: #fff; background: var(--accent); padding: .18em .6em; border-radius: 2px; justify-self: start; }
.events-gallery { background: var(--sand); }
.events-gallery img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; }

/* Light nav text over dark heroes until scrolled */
.has-dark-hero .nav:not(.scrolled) .nav-links a,
.has-dark-hero .nav:not(.scrolled) .menu-toggle { color: var(--sand); }
.has-dark-hero .nav:not(.scrolled) .btn-book { background: var(--accent); color: #fff; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ══ PAGE: ROOMS + FORMS ══ */
.rooms-hero { padding-top: clamp(7rem, 14vw, 10rem); padding-bottom: clamp(3rem, 7vw, 5rem); background: var(--sand); }
.stay-hero { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 940px) { .stay-hero { grid-template-columns: 1.05fr .95fr; } }
.stay-intro .lead { margin-top: 1rem; }
.stay-facts { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.6rem; }
.stay-facts li { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-soft); border: 1px solid rgba(33,30,27,.22); padding: .4em .8em; }
.stay-form-card { background: var(--paper); border-top: 4px solid var(--accent);
  padding: clamp(1.5rem, 3.5vw, 2.4rem); box-shadow: 0 24px 60px rgba(33,30,27,.13); }
.stay-form-card .eyebrow { margin-bottom: .5rem; }
.stay-form-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1; }
.stay-form-sub { color: var(--ink-soft); font-size: .95rem; margin: .35rem 0 1.5rem; }
.stay-form-card .form { margin-top: 0; max-width: none; gap: 1rem; }
.stay-form-card .form input, .stay-form-card .form select, .stay-form-card .form textarea { background: var(--sand); }

/* two-step form (progressive enhancement: full form shows if JS is off) */
.steps-head { display: none; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1.4rem; }
.js-steps .steps-head { display: grid; }
.step-dot { font-family: var(--font-mono); font-size: .66rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--ink-soft); opacity: .55; padding-bottom: .55rem; border-bottom: 2px solid rgba(33,30,27,.18);
  transition: color .25s ease, opacity .25s ease, border-color .25s ease; }
.step-dot b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.05rem;
  letter-spacing: 0; text-transform: none; color: var(--ink); margin-top: .2rem; }
.step-dot.active { opacity: 1; color: var(--accent); border-color: var(--accent); }
.form-step { display: grid; gap: 1rem; }
.js-steps .form-step { display: none; }
.js-steps .form-step.active { display: grid; }
.step-nav { display: flex; gap: .8rem; margin-top: .4rem; }
.step-next, .step-back { display: none; }
.js-steps .step-next, .js-steps .step-back { display: inline-block; }
.step-nav .btn { flex: 1; text-align: center; }
.rooms-grid-sec { background: var(--paper); }

/* room availability calendar (interactive, iCal-synced) */
.room-cal { margin-top: 1.6rem; max-width: 320px; }
.room-cal-label { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-soft); margin-bottom: .6rem; }
.rc-loading { color: var(--ink-soft); font-size: .85rem; }
.rc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .5rem; }
.rc-title { font-family: var(--font-display); font-size: 1.05rem; }
.rc-nav { width: 30px; height: 30px; border: 1px solid rgba(33,30,27,.2); background: var(--paper);
  border-radius: 6px; cursor: pointer; font-size: 1rem; line-height: 1; color: var(--ink); }
.rc-nav:hover:not(:disabled) { background: var(--ink); color: var(--sand); }
.rc-nav:disabled { opacity: .3; cursor: default; }
.rc-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { font-family: var(--font-mono); font-size: .6rem; text-align: center; color: var(--ink-soft); padding-bottom: .2rem; }
.cal-pad { aspect-ratio: 1; }
.rc-day { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  font-size: .78rem; line-height: 1; border: 0; border-radius: 5px; background: var(--sand-deep); color: var(--ink);
  font-family: inherit; cursor: pointer; transition: background .12s, color .12s; }
.rc-price { font-size: .5rem; opacity: .6; font-family: var(--font-mono); }
.rc-summary { margin-top: .6rem; font-size: .95rem; }
.rc-day.free:hover { background: var(--amber); color: #fff; }
.rc-day.busy { background: var(--accent); color: #fff; text-decoration: line-through; cursor: default; }
.rc-day.past { background: transparent; color: rgba(33,30,27,.25); cursor: default; }
.rc-day.sel { background: var(--ink); color: var(--sand); }
.rc-day.inrange { background: rgba(230,23,140,.18); }
.cal-legend { display: flex; align-items: center; flex-wrap: wrap; gap: .4rem; margin-top: .6rem;
  font-size: .78rem; color: var(--ink-soft); }
.cal-key { width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.cal-key.free { background: var(--sand-deep); border: 1px solid rgba(33,30,27,.2); }
.cal-key.busy { background: var(--accent); }
.rooms-grid { display: grid; gap: 4rem; }
.room-card { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .room-card { grid-template-columns: 1.2fr 1fr; align-items: center; }
  .room-card:nth-child(even) .room-gallery { order: 2; } }
.room-gallery > img { border-radius: var(--radius); aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.room-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: .8rem; }
.room-thumbs img { border-radius: 12px; aspect-ratio: 1; object-fit: cover; }
.room-body h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .6rem; }
.room-perks { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 1.6rem; }
.room-perks li { background: var(--sand); border-radius: 2px; padding: .3em 1em; font-size: .85rem; font-weight: 500; }
.form { display: grid; gap: 1.2rem; max-width: 720px; margin-top: 2rem; }
.form-row { display: grid; gap: 1.2rem; }
@media (min-width: 700px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form label { display: grid; gap: .4rem; font-weight: 600; font-size: .9rem; }
.form input, .form select, .form textarea { font: inherit; padding: .8rem 1rem; border: 2px solid var(--ink);
  border-radius: 0; background: var(--paper); color: var(--ink); }
.form input:focus, .form select:focus, .form textarea:focus { outline: 3px solid var(--amber); outline-offset: 1px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-msg { padding: 1rem 1.4rem; border-radius: 0; margin: 1.4rem 0; font-weight: 600; max-width: 720px; }
.form-msg.ok { background: #dff3e4; color: #1c6b3c; }
.form-msg.err { background: #fde3dd; color: #a3341c; }

/* ---- Rooms: date search → availability → request ---- */
.stay-search-card { background: var(--paper); border-top: 4px solid var(--accent);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem); box-shadow: 0 20px 50px rgba(33,30,27,.1); }
.stay-search-card .eyebrow { margin-bottom: .5rem; }
.stay-search { display: grid; gap: 1rem; margin-top: 1.4rem; }
.stay-search .form-row { gap: 1rem; }
.stay-search label { display: grid; gap: .4rem; font-weight: 600; font-size: .9rem; }
.stay-search input { font: inherit; padding: .8rem 1rem; border: 2px solid var(--ink); border-radius: 0; background: var(--sand); }
.stay-search input:focus { outline: 3px solid var(--amber); outline-offset: 1px; }
.stay-search .btn { width: 100%; justify-content: center; }
.stay-search-err { color: #a3341c; font-size: .88rem; font-weight: 600; margin: 0; }

.stay-results { font-family: var(--font-mono); font-size: .9rem; color: var(--ink-soft); margin-bottom: .3rem; }
.stay-results strong { color: var(--ink); }
.stay-clear { display: inline-block; font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin-bottom: 2.4rem; }
.stay-clear[hidden] { display: none; }

.room-avail { display: inline-flex; align-items: center; gap: .4rem; font-size: .82rem; font-weight: 700;
  font-family: var(--font-mono); letter-spacing: .02em; padding: .4em 1em; border-radius: 999px; margin: 0 0 1rem; }
.room-avail.free { background: #dff3e4; color: #1c6b3c; }
.room-avail.booked { background: #fde3dd; color: #a3341c; }
.room-avail[hidden] { display: none; }

.room-price-from { font-family: var(--font-mono); font-size: .9rem; color: var(--ink-soft); margin: -.6rem 0 1.3rem; }
.room-price-from[hidden] { display: none; }

.room-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; }
.room-actions [data-book][disabled] { opacity: .45; cursor: not-allowed; }
.room-cal-toggle { background: none; border: 0; font: inherit; font-family: var(--font-mono); font-size: .74rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); cursor: pointer; padding: .4rem 0;
  border-bottom: 1px solid currentColor; }
.room-cal-toggle:hover { color: var(--accent); }
.room-cal[hidden] { display: none; }

.room-card.is-unavailable .room-gallery,
.room-card.is-unavailable .room-perks,
.room-card.is-unavailable .room-price-from,
.room-card.is-unavailable .room-body h2 { opacity: .45; }

.stay-request { background: var(--sand-deep); }
.stay-request-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: .4rem 0 .6rem; }
.stay-request-lead { color: var(--ink-soft); max-width: 34em; }
.stay-summary { background: var(--paper); border-left: 4px solid var(--accent); padding: .9rem 1.2rem;
  font-size: .95rem; margin: 1.6rem 0 0; }
.stay-summary[hidden] { display: none; }

/* ══ PAGE: CONTACT ══ */
.contact-hero { padding-top: clamp(8rem, 16vw, 12rem); background: var(--sand); }
.booking { background: var(--paper); }
