/* ============================================
   STAR BAR & BISTRO — Design Tokens
   ============================================ */

:root {
  /* Primary palette */
  --teal:      #0E6B6B;
  --teal2:     #138888;
  --teal3:     #C8EEEE;
  --teal4:     #0A4F4F;

  /* Action */
  --coral:     #C8401A;
  --coral2:    #E05528;

  /* Celebration */
  --yell:      #DDB820;
  --yell2:     #F0D040;

  /* Neutrals */
  --ink:       #1A1410;
  --char:      #221C10;
  --mid:       #2E2618;
  --muted:     #8A7A60;
  --rule:      #D8D0C0;

  /* Light surfaces */
  --cream:     #F5EDD8;
  --cream2:    #EDE4CC;
  --cream3:    #E2D8C0;

  /* Logo pink — sparingly, logo-adjacent accent only */
  --logo-pink: #E8308A;

  /* Typography stacks */
  --fd: 'Bebas Neue', Impact, sans-serif;
  --fs: 'Josefin Sans', system-ui, sans-serif;
  --fi: 'Libre Baskerville', Georgia, serif;

  /* Spacing scale */
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 32px;
  --sp-lg: 64px;
  --sp-xl: 96px;

  /* Layout */
  --nav-h: 60px;
  --max-w: 1280px;
}
/* ============================================
   Base Reset
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fi);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1;
  font-weight: normal;
}
/* ============================================
   Typography
   ============================================ */

/* Display — Bebas Neue */
h1, h2, h3 {
  font-family: var(--fd);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.88;
}

h2 {
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.92;
}

h3 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 0.94;
}

/* Labels — Josefin Sans */
.venue-label,
.eyebrow,
label,
.nav-links a,
.nav-logo-hotel,
figcaption {
  font-family: var(--fs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Editorial — Libre Baskerville Italic */
.story-body,
.venue-body,
.rs-body,
.pe-body,
blockquote,
.hero-tagline,
.menu-desc {
  font-family: var(--fi);
  font-style: italic;
  line-height: 1.7;
}

blockquote {
  font-size: 18px;
  color: var(--muted);
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  margin: 24px 0;
}
/* ============================================
   Button Components
   ============================================ */

.btn {
  font-family: var(--fs);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.18s, transform 0.15s;
}

.btn--yell {
  background: var(--yell);
  color: var(--ink);
}

.btn--yell:hover {
  background: var(--yell2);
}

.btn--coral {
  background: var(--coral);
  color: #fff;
}

.btn--coral:hover {
  background: var(--coral2);
}

.btn--teal {
  background: var(--teal);
  color: var(--cream);
}

.btn--teal:hover {
  background: var(--teal4);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245,237,216,0.3);
}

.btn--ghost:hover {
  border-color: var(--cream);
}

.btn--full {
  width: 100%;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}
/* ============================================
   Utility Classes
   ============================================ */

.eyebrow {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--fd);
  font-size: clamp(48px, 7vw, 80px);
  color: var(--ink);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.section-heading em {
  color: var(--teal);
  font-style: normal;
}

.section-heading--light {
  color: var(--cream);
}

.section-heading--light em {
  color: var(--yell);
}

/* Clipped section label */
.section-label-clipped {
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  padding-right: 20px;
  display: inline-block;
  font-family: var(--fd);
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 8px 28px 8px 16px;
}

/* Atomic grid background utility */
.atomic-grid {
  background-image:
    linear-gradient(rgba(245,237,216,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,237,216,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Dietary tags */
.dietary-tag {
  display: inline-block;
  font-family: var(--fs);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--rule);
  color: var(--muted);
  margin-right: 4px;
}

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* Section padding */
.section-pad {
  padding: var(--sp-xl) 40px;
}

/* Text alignment */
.text-center { text-align: center; }

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

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--ink);
  border-bottom: 2px solid var(--coral);
  transition: background 0.3s;
}

.site-nav.scrolled {
  background: var(--char);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
}

.nav-logo-img:not(.logo-dark) {
  filter: brightness(0) invert(1) opacity(0.9);
}

.nav-logo-hotel {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(245,237,216,0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.45);
  text-decoration: none;
  transition: color 0.18s;
  padding: 0 14px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(245,237,216,0.07);
}

.nav-links a:first-child {
  border-left: 1px solid rgba(245,237,216,0.07);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.btn-reserve {
  background: var(--coral);
  color: var(--cream);
  padding: 9px 22px;
  font-family: var(--fs);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.18s;
}

.btn-reserve:hover {
  background: var(--coral2);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.2s, opacity 0.2s;
}
/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Atomic grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,237,216,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,237,216,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Orbital ring decorations */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,237,216,0.08);
  pointer-events: none;
}

.hero-orb--1 {
  width: 600px; height: 600px;
  top: -100px; right: -200px;
}

.hero-orb--2 {
  width: 400px; height: 400px;
  bottom: -80px; left: -120px;
}

.hero-orb--3 {
  width: 300px; height: 300px;
  top: 20%; left: 10%;
  border-color: rgba(245,237,216,0.05);
}

.hero-orb--4 {
  width: 500px; height: 500px;
  bottom: 10%; right: 5%;
  border-color: rgba(245,237,216,0.04);
}

/* Starburst watermark */
.hero-burst {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  pointer-events: none;
}

/* Star field (JS generated) */
#hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
  max-width: 100%;
}

.hero-addr {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--yell2);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-addr::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--yell);
}

.hero-headline {
  color: var(--cream);
  margin-bottom: 0;
}

.hero-h1-line1 {
  display: block;
  font-family: var(--fd);
  font-size: clamp(72px, 13vw, 148px);
  color: var(--cream);
  line-height: 0.88;
  letter-spacing: 0.04em;
}

.hero-h1-line2 {
  display: block;
  font-family: var(--fd);
  font-size: clamp(72px, 13vw, 148px);
  color: var(--yell);
  line-height: 0.88;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: var(--fi);
  font-style: italic;
  font-size: 18px;
  color: rgba(245,237,216,0.7);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 28px;
}

/* Navigation pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}

.pill {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(245,237,216,0.2);
  color: rgba(245,237,216,0.6);
  text-decoration: none;
  transition: all 0.18s;
}

.pill:hover,
.pill--active {
  background: rgba(245,237,216,0.1);
  border-color: rgba(245,237,216,0.4);
  color: var(--cream);
}

/* CTA buttons */
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats sidebar (right edge of hero) */
.hero-stats {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  background: rgba(14,107,107,0.7);
  border-left: 1px solid rgba(245,237,216,0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 3;
  padding: 80px 24px 32px;
}

.hero-stat {
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,237,216,0.1);
}

.hero-stat:first-child {
  border-top: 1px solid rgba(245,237,216,0.1);
}

.stat-n {
  display: block;
  font-family: var(--fd);
  font-size: 38px;
  color: var(--yell);
  line-height: 1;
}

.stat-l {
  display: block;
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.5);
  margin-top: 3px;
}
/* ============================================
   Scrolling Ticker
   ============================================ */

.ticker {
  background: var(--coral);
  height: 44px;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tick {
  font-family: var(--fd);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.tick-sep {
  color: var(--yell);
  font-size: 18px;
}
/* ============================================
   Bento Venues Grid
   ============================================ */

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  background: var(--ink);
}

.bento__bar {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--cream2);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento__ceiling-art {
  position: absolute;
  top: 0; right: 0;
  width: 300px;
  opacity: 0.12;
  pointer-events: none;
}

.bento__accent {
  grid-column: 3;
  grid-row: 1;
  background: var(--teal);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento__accent--teal .venue-label {
  color: rgba(245,237,216,0.5);
}

.bento-stat-text {
  font-family: var(--fd);
  font-size: clamp(36px, 4vw, 52px);
  color: var(--cream);
  line-height: 0.94;
  letter-spacing: 0.04em;
}

.bento__bistro {
  grid-column: 3;
  grid-row: 2;
  background: var(--yell);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento__bistro .venue-label {
  color: rgba(26,20,16,0.5);
}

.bento__bistro .venue-title {
  color: var(--ink);
}

.bento__bistro .venue-body {
  color: rgba(26,20,16,0.7);
}

/* Shared venue typography */
.venue-label {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}

.venue-title {
  font-family: var(--fd);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--ink);
  line-height: 0.94;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.venue-body {
  font-family: var(--fi);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.venue-detail {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
}
/* ============================================
   Shared Section Patterns
   Hours, Story, Happy Hour, Room Service, Private Events
   ============================================ */

/* --- Hours Timeline --- */
.hours {
  background: var(--ink);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.hours-eyebrow {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 8px;
}

.hours-title {
  font-family: var(--fd);
  font-size: clamp(48px, 7vw, 80px);
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.hours-title em {
  color: var(--yell);
  font-style: normal;
}

.hours-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 2px solid rgba(245,237,216,0.08);
  margin-top: 48px;
}

.hours-item {
  padding: 28px 20px 28px 0;
  border-right: 1px solid rgba(245,237,216,0.07);
  position: relative;
}

.hours-item:last-child {
  border-right: none;
}

.hours-dot {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hours-dot--teal { background: var(--teal); }
.hours-dot--coral { background: var(--coral); }
.hours-dot--yell { background: var(--yell); }

.hours-venue {
  font-family: var(--fs);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 8px;
}

.hours-item.special .hours-venue { color: var(--coral); }
.hours-item.late .hours-venue { color: var(--yell); }
.hours-item.special .hours-dot { background: var(--coral); }
.hours-item.late .hours-dot { background: var(--yell); }

.hours-name {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.hours-time {
  font-family: var(--fi);
  font-size: 13px;
  font-style: italic;
  color: rgba(245,237,216,0.38);
  line-height: 1.5;
}

/* --- Happy Hour Poster --- */
.happy-hour {
  background: var(--cream);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.hh-top {
  background: var(--ink);
  padding: 48px 48px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.hh-headline {
  font-family: var(--fd);
  font-size: clamp(72px, 11vw, 120px);
  color: var(--cream);
  line-height: 0.88;
  letter-spacing: 0.04em;
}

.hh-sub {
  font-family: var(--fi);
  font-size: 16px;
  font-style: italic;
  color: rgba(245,237,216,0.45);
  padding-bottom: 20px;
  max-width: 260px;
  line-height: 1.6;
  text-align: right;
}

.hh-prices {
  background: var(--yell);
  padding: 0 48px;
  display: flex;
  border-top: 2px solid var(--ink);
}

.hh-price-item {
  flex: 1;
  padding: 28px 0;
  border-right: 2px solid rgba(20,16,8,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hh-price-item:last-child {
  border-right: none;
}

.hh-price-item .price {
  font-family: var(--fd);
  font-size: 48px;
  color: var(--ink);
  line-height: 1;
}

.hh-price-item .name {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20,16,8,0.55);
  margin-top: 6px;
}

.hh-footer {
  background: var(--coral);
  padding: 16px 48px;
  font-family: var(--fd);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hh-footer span {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* --- Northstar Story --- */
.story {
  background: var(--cream2);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}

.story-overprint {
  position: absolute;
  top: -40px;
  right: -20px;
  font-family: var(--fd);
  font-size: clamp(200px, 30vw, 400px);
  color: rgba(26,20,16,0.04);
  line-height: 1;
  pointer-events: none;
}

.story-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.story-body {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

.story-body strong {
  color: var(--ink);
  font-style: normal;
}

.story-pull {
  font-family: var(--fi);
  font-style: italic;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--ink);
  margin-top: 0;
}

.story-stat {
  background: var(--cream2);
  padding: 24px 20px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.story-stat:hover {
  border-bottom-color: var(--coral);
}

.story-stat-n {
  display: block;
  font-family: var(--fd);
  font-size: 44px;
  color: var(--teal);
  line-height: 1;
}

.story-stat-l {
  display: block;
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 3px;
}

/* --- Room Service Band --- */
.room-service {
  background: var(--teal);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}

.rs-star {
  font-size: 120px;
  color: rgba(245,237,216,0.06);
  line-height: 1;
  flex-shrink: 0;
}

.rs-content {
  max-width: 600px;
}

.rs-content .eyebrow {
  color: var(--yell);
}

.rs-content .eyebrow::before {
  background: var(--yell);
}

.rs-heading {
  font-family: var(--fd);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--cream);
  line-height: 0.94;
  margin-bottom: 16px;
}

.rs-heading em {
  color: var(--yell);
  font-style: normal;
}

.rs-body {
  font-size: 15px;
  color: rgba(245,237,216,0.6);
  margin-bottom: 24px;
}

/* --- Private Events --- */
.private-events {
  background: var(--ink);
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 64px;
  border-bottom: 3px solid var(--coral);
}

.private-events .eyebrow {
  color: var(--coral);
}

.private-events .eyebrow::before {
  background: var(--coral);
}

.pe-heading {
  font-family: var(--fd);
  font-size: clamp(40px, 5.5vw, 64px);
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.pe-body {
  font-family: var(--fs);
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,237,216,0.45);
  line-height: 1.85;
  margin-bottom: 28px;
}

.pe-list {
  list-style: none;
  padding: 0;
}

.pe-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
  font-family: var(--fs);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.5);
  padding: 11px 0;
  border-top: 1px solid rgba(245,237,216,0.07);
}

.pe-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--coral);
  margin-top: 2px;
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
/* ============================================
   Daypart Clock — Live "NOW" Indicators
   ============================================ */

/* Alpine cloak — hide until Alpine initializes */
[x-cloak] { display: none !important; }

/* --- Hero Sidebar: NOW SERVING --- */
.hero-stat--now {
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,237,216,0.1);
  border-top: 1px solid rgba(245,237,216,0.1);
  position: relative;
}

.stat-now-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--yell);
  border-radius: 50%;
  margin-bottom: 8px;
  animation: now-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(221,184,32,0.6);
}

.stat-now-label {
  display: block;
  font-family: var(--fs);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--yell);
  margin-bottom: 4px;
}

.stat-now-daypart {
  display: block;
  font-family: var(--fd);
  font-size: 24px;
  color: var(--cream);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.stat-now-venue {
  display: block;
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.5);
}

.hero-stat--closed .stat-now-label {
  color: rgba(245,237,216,0.3);
}

.hero-stat--closed .stat-now-daypart {
  color: rgba(245,237,216,0.5);
}

@keyframes now-pulse {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 4px rgba(221,184,32,0.4);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 16px rgba(221,184,32,0.8);
  }
}

/* --- Hours Timeline: Active Daypart --- */
.hours-active .hours-dot {
  animation: dot-pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px currentColor;
}

.hours-active .hours-name {
  color: var(--yell);
}

.hours-now-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--fs);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yell);
  padding: 3px 8px;
  animation: badge-glow 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

@keyframes badge-glow {
  0%, 100% {
    box-shadow: 0 0 4px rgba(221,184,32,0.3);
  }
  50% {
    box-shadow: 0 0 12px rgba(221,184,32,0.6);
  }
}

/* --- Responsive: stack NOW SERVING on mobile --- */
@media (max-width: 768px) {
  .hero-stat--now {
    text-align: center;
  }

  .stat-now-pulse {
    margin: 0 auto 8px;
  }
}
/* ============================================
   Forms
   ============================================ */

.form-title {
  font-family: var(--fd);
  font-size: 32px;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-family: var(--fs);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(245,237,216,0.15);
  background: rgba(245,237,216,0.05);
  font-family: var(--fs);
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  transition: border-color 0.18s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,237,216,0.25);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(245,237,216,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--char);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-success {
  background: var(--teal);
  color: var(--cream);
  padding: 32px;
  text-align: center;
  font-family: var(--fs);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.form-error {
  color: var(--coral);
  font-family: var(--fs);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--char);
  border-top: 3px solid var(--teal);
  color: rgba(245,237,216,0.6);
  padding: 48px 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,237,216,0.1);
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-hotel {
  font-family: var(--fs);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.35);
  margin-bottom: 12px;
}

.footer-copy {
  font-family: var(--fi);
  font-style: italic;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245,237,216,0.4);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--fd);
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col address {
  font-family: var(--fs);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: rgba(245,237,216,0.5);
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col nav a {
  font-family: var(--fs);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(245,237,216,0.5);
  text-decoration: none;
  transition: color 0.18s;
}

.footer-col nav a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--fs);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.3);
}

.footer-bottom a {
  color: var(--coral);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--coral2);
}
/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet — 768px */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    background: var(--teal4);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    font-size: 14px;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 100px 24px 60px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
  }

  .hero-stat {
    flex: 1;
    min-width: 80px;
  }

  /* Bento */
  .bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .bento__bar {
    grid-column: 1;
    grid-row: 1;
    min-height: 360px;
    padding: 36px 24px;
  }

  .bento__accent {
    grid-column: 1;
    grid-row: 2;
    padding: 32px 24px;
  }

  .bento__bistro {
    grid-column: 1;
    grid-row: 3;
    padding: 32px 24px;
  }

  /* Hours */
  .hours-timeline {
    flex-direction: column;
    align-items: center;
  }

  .hours-item {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    max-width: 100%;
    width: 100%;
  }

  .hours-item:last-child {
    border-bottom: none;
  }

  /* Happy Hour */
  .hh-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px 0;
  }

  .hh-sub {
    text-align: left;
  }

  .hh-prices {
    padding: 0 24px;
    flex-wrap: wrap;
  }

  .hh-price-item {
    flex: 1 1 33%;
    min-width: 100px;
  }

  .hh-footer {
    flex-direction: column;
    padding: 16px 24px;
    gap: 8px;
    text-align: center;
  }

  /* Story */
  .story {
    padding: var(--sp-lg) 24px;
  }

  .story-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Room Service */
  .room-service {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-lg) 24px;
  }

  .rs-star {
    font-size: 80px;
  }

  .rs-content .eyebrow {
    justify-content: center;
  }

  /* Private Events */
  .private-events {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: var(--sp-lg) 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 24px 0;
  }

  /* Forms */
  .form-row-2 {
    grid-template-columns: 1fr;
  }

  /* General */
  .site-nav {
    padding: 0 20px;
  }

  .hours {
    padding: var(--sp-lg) 24px;
  }
}

/* Mobile — 480px */
@media (max-width: 480px) {
  .hero-pills {
    flex-direction: column;
    align-items: center;
  }

  .pill {
    width: 100%;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hh-prices {
    flex-direction: column;
  }

  .hh-price-item {
    border-right: none;
    border-bottom: 2px solid rgba(20,16,8,0.15);
    padding: 20px 0;
  }

  .hh-price-item:last-child {
    border-bottom: none;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ticker-inner {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
