/* Page-specific sprinkles */
.page-restaurant .hero{background:linear-gradient(to bottom,var(--bg-soft),transparent)}
.menu-grid{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:768px){.menu-grid{grid-template-columns:repeat(2,1fr)}}
.menu-card{padding:1rem;border-radius:1rem;border:1px solid #e2e8f0;background:#fff;box-shadow:var(--shadow)}
.menu-card h3{margin:.25rem 0 .5rem}
.menu-item{display:flex;justify-content:space-between;gap:1rem;padding:.45rem 0;border-bottom:1px dashed #e2e8f0}
.menu-item:last-child{border-bottom:0}
.price{white-space:nowrap;font-weight:600}


/* Highlight cards responsive grid */
#highlight-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr; /* mobile default */
}

/* Scroll-driven gallery */
.scroll-gallery{ position:relative; border-radius:1rem; overflow:hidden; box-shadow:var(--shadow); margin-bottom:1rem }
.scroll-gallery .scroll-stage{ position:sticky; top:0; height:100vh; overflow:hidden; background:#000 }
.scroll-gallery .scroll-stage img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:opacity .25s linear, transform .25s linear; will-change: opacity, transform }
.scroll-gallery .scroll-spacer{ width:100% }


/* Hero video */
.hero-video {
  position: relative;
  height: 80vh;           /* 80% screen */
  min-height: 420px;
  max-height: 900px;
  overflow: hidden;
}
.hero-video video,
.hero-video .video-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video .overlay {
  position: relative; /* stacking above video */
  z-index: 2;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.hero-video .overlay-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  color: #fff;
  text-align: left;
}
.hero-video .overlay h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -.02em; margin: 0 0 .4rem 0;
}
.hero-video .overlay p { margin: .25rem 0 0; color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.hero-video .cta { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1rem }
.hero-video .badge-row { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:.75rem }
.hero-video::after { /* subtle dark gradient for legibility */
  content:''; position:absolute; inset:0; z-index:1;
  background: linear-gradient(to top, rgba(2,6,23,.55), rgba(2,6,23,.25), rgba(2,6,23,.10));
}



/* Position overlay content at the bottom-left of the hero */
.hero-video .overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  /* vertical padding only; horizontal alignment handled by overlay-inner mimicking .container */
  padding: 2rem 0;
  display: flex;               /* was: grid */
  align-items: flex-end;       /* stick content to bottom */
  justify-content: flex-start; /* left-aligned */
}

.hero-video .overlay-inner {
  /* mirror site container spacing so hero aligns with logo and content frame */
  width: 100%;
  max-width: 1120px;         /* same as .container max-width */
  padding: 0 1rem;           /* same as .container horizontal padding */
  margin: 0 auto;            /* center the frame; text stays left-aligned */
  color: #fff;
  text-align: left;
  /* comfortable breathing room from the bottom edge */
  margin-bottom: clamp(16px, 4vh, 48px);
  /* optional: improve legibility on bright footage */
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

/* Keep hero headings/bold as originally styled (not Swiss red) */
.hero-video .overlay-inner h1,
.hero-video .overlay-inner h2,
.hero-video .overlay-inner h3,
.hero-video .overlay-inner h4,
.hero-video .overlay-inner h5,
.hero-video .overlay-inner h6,
.hero-video .overlay-inner strong,
.hero-video .overlay-inner b { color:#fff }

/* Mobile stacked hero: use default ink (not Swiss red) */
.hero-mobile-stack h1,
.hero-mobile-stack h2,
.hero-mobile-stack h3,
.hero-mobile-stack h4,
.hero-mobile-stack h5,
.hero-mobile-stack h6,
.hero-mobile-stack strong,
.hero-mobile-stack b { color: var(--ink) }

/* Optional helper: stronger bottom gradient for legibility */
.hero-video::after{
  content:''; position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to top, rgba(2,6,23,.65), rgba(2,6,23,.25) 45%, rgba(2,6,23,.08) 70%, transparent 100%);
}




/* ── Form Styles ─────────────────────────────────────────── */

form {
  display: grid;
  gap: 1rem;
}

form .field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

form label {
  font-size: .9rem;
  font-weight: 600;
  color: #334155; /* slate-700 */
}

form input,
form textarea,
form select {
  width: 100%;
  border: 1px solid #e2e8f0; /* slate-200 */
  border-radius: .75rem;
  padding: .7rem .9rem;
  font: inherit;
  background: #fff;
  color: #0f172a; /* slate-900 */
  transition: border-color .15s ease, box-shadow .15s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
  outline: 2px solid transparent;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--ring);
}

form input:disabled,
form textarea:disabled,
form select:disabled {
  background: #f8fafc;
  color: #94a3b8; /* slate-400 */
  cursor: not-allowed;
}

form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.contact-footer .small {
  font-size: .85rem;
  color: #64748b; /* slate-500 */
}

/* Submit button inside forms */
form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: .75rem;
  padding: .8rem 1.2rem;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(2,6,23,0.15);
  transition: transform .15s ease, box-shadow .15s ease;
}

form .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2,6,23,0.18);
}

/* Ghost / outline buttons (for secondary actions) */
form .btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid #e2e8f0;
}



/* On medium+ screens, 3 across */
@media (min-width: 768px) {
  #highlight-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Mobile hero behavior: 16:9 video, stacked content ── */
.hero-mobile-stack{ display:none }
@media (max-width: 768px){
  .hero-video{ height:auto; min-height:0; max-height:none }
  .hero-video .video-media{ position:relative; width:100%; height:auto; aspect-ratio:16/9; display:block }
  .hero-video .overlay{ display:none }
  .hero-video::after{ content:none }
  .hero-mobile-stack{ display:block; padding-top:0 }
}

/* ── Rooms: Comparison table (Apple-style) ─────────────── */
.room-compare .compare-wrap{ overflow-x:auto }
.room-compare .compare{
  min-width: 760px;
  border:1px solid var(--border);
  border-radius:1rem;
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden; /* ensure rounded corners clip table header background */
}
.room-compare table{ width:100%; border-collapse:collapse }
.room-compare thead th{
  background: var(--bg-soft);
  font-weight:700;
  text-align:center;
  padding:1rem;
  border-bottom:1px solid var(--border);
}
.room-compare thead th.col-feature{ text-align:left }
.room-compare .col-head{ display:flex; flex-direction:column; align-items:center; gap:.5rem }
.room-compare .col-title{ font-size:1.1rem; font-weight:800; letter-spacing:-.01em }
.room-compare .col-sub{ color:#64748b; font-size:.9rem }
.room-compare tbody th,
.room-compare tbody td{
  padding:.9rem 1rem;
  border-top:1px solid var(--border);
  text-align:center;
}
.room-compare tbody th{ text-align:left; color:#334155; width:32% }
.room-compare .check{
  display:inline-grid; place-items:center; width:22px; height:22px;
  border-radius:999px; background:var(--brand); color:#fff; font-weight:700; font-size:.9rem;
}
.room-compare .no{ color:#94a3b8 }
.room-compare .opt{ color:#64748b; font-weight:600; font-size:.9rem }
.room-compare .small-note{ margin:.75rem 0 0; font-size:.9rem }

/* compact button for column headers */
.room-compare .btn-small{ padding:.5rem .8rem; font-size:.9rem; border-radius:.6rem }

/* ── Events table styling ─────────────────────────────── */
.events-table{ width:100%; border-collapse:separate; border-spacing:0 .5rem }
.events-table thead th{
  text-align:left; font-weight:800; color:#334155; padding:.6rem .75rem; font-size:.95rem;
}
.events-table tbody tr{ transition: box-shadow .15s ease }
.events-table tbody td{
  background:#fff; border:0; padding:.75rem .85rem; color:#0f172a;
}
.events-table tbody tr:hover td{ background:var(--bg-soft); }
.events-table tbody tr:focus-within td{ outline:2px solid transparent; box-shadow:0 0 0 3px var(--ring) inset }
.events-table tbody td:first-child{ border-top-left-radius:.75rem; border-bottom-left-radius:.75rem }
.events-table tbody td:last-child{ border-top-right-radius:.75rem; border-bottom-right-radius:.75rem }

/* ── Pricing page: table tweaks ───────────────────────── */
body[data-page="rooms-pricing"] .room-compare .compare{ box-shadow:none }
body[data-page="rooms-pricing"] .room-compare tbody th,
body[data-page="rooms-pricing"] .room-compare tbody td{ transition: background-color .15s ease }
body[data-page="rooms-pricing"] .room-compare tbody tr:hover th,
body[data-page="rooms-pricing"] .room-compare tbody tr:hover td{ background:var(--bg-soft) }
