/* ══════════════════════════════════════════════════════
   RADIO STAR — Warm Wood & Ember Theme
   styles-warm.css
   Fonts required in <head>:
   Playfair Display, Cormorant Garamond, Outfit (Google Fonts)
══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══════════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════════ */
:root {
  /* Espresso base */
  --ink:        #0e0905;
  --espresso:   #160d06;
  --mahogany:   #1e1109;
  --walnut:     #2c180d;
  --sienna:     #3d2210;
  --cedar:      #5c3318;

  /* Warm ember accents */
  --ember:      #d4541a;
  --ember-hot:  #e8732a;
  --ember-dim:  #8c380e;
  --sunset:     #e8a23c;
  --honey:      #c47d2a;
  --honey-dim:  #ac691c;

  /* Parchment text */
  --parchment:  #f2e8d6;
  --cream:      #e4d3b8;
  --tan:        #a8906e;
  --dust:       #c79055;
  --ash:        #2e1e10;

  /* Fonts */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-serif:   'Cormorant Garamond', Georgia, serif;
  --f-body:    'Outfit', sans-serif;
}

/* ══════════════════════════════════════════
   BASE
══════════════════════════════════════════ */
html { scroll-behavior: smooth; }

body {
  background: var(--espresso);
  color: var(--parchment);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  mix-blend-mode: overlay;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  transition: background 0.5s, box-shadow 0.5s;
}

nav.scrolled {
  background: rgba(14, 9, 5, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(212, 84, 26, 0.18);
}

.nav-logo {
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--parchment);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  line-height: 1;
}
.nav-logo .star {
  color: var(--ember);
  font-style: italic;
  font-size: 1.4rem;
  margin: 0 0.1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.8rem;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--ember);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--parchment); }
.nav-links a:hover::after { right: 0; }

.nav-instagram {
  margin-bottom: -10px;
}

.nav-cta {
  background: var(--ember) !important;
  color: var(--parchment) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 1px;
  font-weight: 600 !important;
  transition: background 0.25s !important;
  letter-spacing: 0.14em !important;
}
.nav-cta:hover { background: var(--ember-hot) !important; }
.nav-cta::after { display: none !important; }

/* ── Hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--ash);
  border-radius: 1px;
  cursor: pointer;
  padding: 9px;
  transition: border-color 0.2s;
}
.nav-hamburger:hover { border-color: var(--ember-dim); }
.nav-hamburger span {
  display: block; height: 1px;
  background: var(--tan);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--ember); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--ember); }

/* ── Mobile drawer ── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  z-index: 490;
  flex-direction: column;
  background: rgba(10, 6, 3, 0.97);
  backdrop-filter: blur(18px);
  padding: 96px 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--ash);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { list-style: none; flex: 1; }
.mobile-menu ul li { border-bottom: 1px solid var(--ash); }
.mobile-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu ul li a::after {
  content: '→';
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--ember-dim);
  transition: transform 0.2s, color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--sunset); }
.mobile-menu ul li a:hover::after { transform: translateX(5px); color: var(--ember); }

.mobile-menu-cta { margin-top: 2.5rem; }
.mobile-menu-cta .btn-primary { width: 100%; text-align: center; padding: 1.1rem; }

.mobile-menu-tagline {
  margin-top: 2rem;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--dust);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  position: absolute; inset: 0;
}
.hero-video-wrap video.active { opacity: 1; }

.hero-bg-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 35%, rgba(212, 84, 26, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 70%, rgba(196, 125, 42, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 80% 80%, rgba(140, 56, 14, 0.08) 0%, transparent 50%),
    linear-gradient(175deg, #0e0905 0%, #200e06 40%, #140a04 100%);
}

/* Retro broadcast grid lines */
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(212, 84, 26, 0.04) 0px, transparent 1px, transparent 120px);
}

/* Warm vignette */
.hero-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 40%, rgba(10, 6, 3, 0.7) 100%);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(10, 6, 3, 0.25) 0%,
    transparent 30%,
    rgba(10, 6, 3, 0.65) 72%,
    rgba(10, 6, 3, 0.96) 100%
  );
}

.hero-content {
  position: relative; z-index: 4;
  padding: 4rem 4.5rem;
  max-width: 960px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 500;
}
.hero-eyebrow-line {
  display: block; width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--ember), transparent);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--parchment);
  margin-bottom: 0.6rem;
}
.hero-title .italic-line {
  font-style: italic;
  font-weight: 700;
  color: var(--sunset);
  display: block;
}
.hero-title .thin-line {
  font-weight: 400;
  font-size: 0.65em;
  letter-spacing: 0.06em;
  color: var(--cream);
  display: block;
  margin-top: 0.15em;
}

.hero-sub {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--cream);
  max-width: 440px;
  margin: 1.4rem 0 2.8rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex; gap: 1rem; align-items: center;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--ember);
  color: var(--parchment);
  padding: 0.95rem 2.4rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, transform 0.15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--ember-hot); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--ash);
  background: var(--honey-dim);
  color: var(--cream);
  padding: 0.95rem 2.4rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s;
}
.btn-ghost:hover { background: var(--honey); transform: translateY(-2px); }

/* Cassette tape decoration */
.hero-tape {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2.8rem;
}
.tape-reel {
  position: relative; width: 52px; height: 32px;
  border: 1px solid var(--ash); border-radius: 3px;
  display: flex; align-items: center; justify-content: space-around;
  padding: 0 8px;
}
.tape-reel::before {
  content: '';
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border: 1px solid var(--dust); border-radius: 50%;
}
.tape-reel .reel-circle {
  width: 10px; height: 10px;
  border: 1px solid var(--dust);
  border-radius: 50%;
  position: relative; z-index: 1;
}
.tape-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dust);
}

/* Video dots */
.hero-video-dots {
  position: absolute; bottom: 3rem; right: 4.5rem;
  z-index: 4; display: flex; gap: 8px; align-items: center;
}
.dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ash); cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--ember); transform: scale(1.5); }

/* ══════════════════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════════════════ */
.section-eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-family: var(--f-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--ember-dim);
}
.section-eyebrow::after {
  content: ''; display: block; width: 48px; height: 1px;
  background: var(--ash);
}

.section-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 0.93;
  letter-spacing: -0.01em;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.section-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--sunset);
}

/* ══════════════════════════════════════════
   EXPERIENCE SECTION
══════════════════════════════════════════ */
#experience {
  background: var(--mahogany);
  padding: 8rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Warm glow top-right corner */
#experience::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212, 84, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.exp-body {
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--tan);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.exp-body + .exp-body { margin-bottom: 0; }

/* Pull quote */
.exp-quote {
  margin: 2.5rem 0;
  padding: 1.6rem 1.8rem;
  border-left: 2px solid var(--ember);
  background: rgba(212, 84, 26, 0.05);
}
.exp-quote p {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.exp-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  border: 1px solid var(--ash);
}
.stat-box {
  padding: 1.6rem 1rem;
  text-align: center;
  border-right: 1px solid var(--ash);
}
.stat-box:last-child { border-right: none; }
.stat-num {
  font-family: var(--f-display);
  font-size: 3rem; font-weight: 900;
  color: var(--ember);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  margin-top: 0.35rem;
  font-family: var(--f-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dust);
}

.feature-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 1.1rem;
  margin-top: 0.5rem;
}
.feature-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  font-size: 0.95rem; color: var(--tan);
  font-weight: 300;
}
.feature-list li::before {
  content: '✦';
  color: var(--ember-dim); font-size: 0.55rem;
  margin-top: 0.52rem; flex-shrink: 0;
}
.feature-list strong { color: var(--cream); font-weight: 500; }

/* ══════════════════════════════════════════
   ROOMS CAROUSEL
══════════════════════════════════════════ */
#rooms {
  background: var(--espresso);
  padding: 8rem 0 8rem 4.5rem;
  overflow: hidden;
  position: relative;
}

/* Ember glow bottom */
#rooms::after {
  content: '';
  position: absolute; bottom: -60px; left: 10%;
  width: 60%; height: 200px;
  background: radial-gradient(ellipse, rgba(212, 84, 26, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 4.5rem;
  margin-bottom: 3.5rem;
}

.carousel-nav { display: flex; gap: 0.7rem; }
.carousel-btn {
  width: 48px; height: 48px;
  border: 1px solid var(--ash);
  background: transparent;
  color: var(--tan);
  border-radius: 1px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.carousel-btn:hover {
  border-color: var(--ember);
  color: var(--ember);
  background: rgba(212, 84, 26, 0.06);
}

.carousel-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.carousel-track-wrap:active { cursor: grabbing; }

.carousel-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  padding-right: 4.5rem;
}

.room-card {
  flex: 0 0 370px; height: 500px;
  position: relative; overflow: hidden;
  border-radius: 2px;
  background: var(--walnut);
  cursor: pointer;
}

.room-card-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.room-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.4s;
  filter: brightness(0.65) saturate(0.7);
}
.room-card:hover .room-card-img {
  transform: scale(1.05);
  filter: brightness(0.8) saturate(0.9);
}

/* Warm gradient overlay */
.room-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 9, 5, 0.95) 0%,
    rgba(14, 9, 5, 0.4) 45%,
    rgba(212, 84, 26, 0.05) 100%
  );
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.2rem 2rem;
}

/* Top corner accent on hover */
.room-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 42px 42px 0;
  border-color: transparent var(--ember) transparent transparent;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.room-card:hover::before { opacity: 1; }

.room-tag {
  font-family: var(--f-body);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 0.5rem;
}
.room-name {
  font-family: var(--f-display);
  font-size: 2.1rem; font-weight: 900;
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--parchment);
  margin-bottom: 0.7rem;
}
.room-name em { font-style: italic; color: var(--sunset); }
.room-meta {
  display: flex; gap: 1.4rem;
  font-size: 0.78rem; color: var(--tan);
}
.room-capacity { display: flex; align-items: center; gap: 0.4rem; }
.room-capacity::before { content: '◆'; font-size: 0.35rem; color: var(--ember-dim); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid var(--ash);
  position: relative;
}

/* Ember gradient line across top of footer */
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ember), var(--sunset), var(--ember), transparent);
  opacity: 0.5;
}

.footer-top {
  padding: 5.5rem 4.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3.5rem;
}

.footer-logo {
  font-family: var(--f-display);
  font-size: 2.6rem; font-weight: 900;
  color: var(--parchment);
  display: block; margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.footer-logo span { color: var(--ember); font-style: italic; }

.footer-tagline {
  font-family: var(--f-serif);
  font-style: italic; font-size: 0.98rem;
  color: var(--dust); line-height: 1.75;
  max-width: 280px; margin-bottom: 1.8rem;
}

.footer-col-title {
  font-family: var(--f-body);
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--tan);
  padding-bottom: 0.9rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--ash);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.9rem; font-weight: 300;
  color: var(--dust); text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.hours-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.35rem 0;
}
.hours-row .day { font-size: 0.88rem; font-weight: 300; color: var(--dust); }
.hours-row .time { font-size: 0.88rem; font-weight: 400; color: var(--cream); text-align: right; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--ash); border-radius: 1px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dust); text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--ember-dim);
  color: var(--ember);
  background: rgba(212, 84, 26, 0.06);
}

.footer-bottom {
  border-top: 1px solid var(--ash);
  padding: 1.6rem 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.75rem; font-weight: 300;
  color: var(--ash); letter-spacing: 0.08em;
}
.footer-bottom .footer-bottom-brand {
  font-family: var(--f-serif);
  font-style: italic; font-size: 0.88rem;
  color: var(--dust); letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL ANIMATION
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤960px)
══════════════════════════════════════════ */
@media (max-width: 960px) {
  nav { padding: 0 1.8rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero-content { padding: 0 2rem; }
  .hero-video-dots { right: 2rem; }
  .hero { padding-bottom: 5.5rem; }

  #experience {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding: 6rem 2rem;
  }

  #rooms { padding: 6rem 0 6rem 2rem; }
  .rooms-header { padding-right: 2rem; margin-bottom: 2.5rem; }
  .carousel-track { padding-right: 2rem; }
  .room-card { flex: 0 0 310px; height: 420px; }

  .footer-top { grid-template-columns: 1fr 1fr; padding: 4rem 2rem; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 1.5rem 2rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — LARGE PHONE (≤640px)
══════════════════════════════════════════ */
@media (max-width: 640px) {
  nav { height: 66px; padding: 0 1.25rem; }

  .hero { min-height: 100svh; padding-bottom: 4.5rem; }
  .hero-content { padding: 0 1.25rem; }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.28em; }
  .hero-eyebrow-line { width: 28px; }
  .hero-title { font-size: clamp(3.6rem, 14vw, 5.5rem); line-height: 0.9; }
  .hero-sub { font-size: 1rem; margin: 1.1rem 0 2.2rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .btn-primary, .btn-ghost { text-align: center; padding: 1rem 1.5rem; font-size: 0.76rem; }
  .hero-tape { margin-top: 2rem; }
  .hero-video-dots { right: 1.25rem; bottom: 1.8rem; }

  .section-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  #experience { padding: 4.5rem 1.25rem; gap: 2.8rem; }
  .exp-body { font-size: 0.93rem; }
  .exp-stats { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
  .stat-num { font-size: 2.4rem; }
  .stat-box { padding: 1.3rem 0.75rem; }
  .stat-label { font-size: 0.63rem; letter-spacing: 0.12em; }
  .exp-quote p { font-size: 1.1rem; }
  .exp-quote { padding: 1.2rem 1.4rem; }

  #rooms { padding: 4.5rem 0 4.5rem 1.25rem; }
  .rooms-header { padding-right: 1.25rem; flex-direction: column; align-items: flex-start; gap: 1.4rem; margin-bottom: 2rem; }
  .room-card { flex: 0 0 270px; height: 380px; }
  .room-name { font-size: 1.75rem; }
  .carousel-track { gap: 1rem; padding-right: 1.25rem; }

  .footer-top { grid-template-columns: 1fr; padding: 3rem 1.25rem; gap: 2rem; }
  .footer-logo { font-size: 2rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.25rem; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — PHONE (≤480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {
  nav { padding: 0 1rem; height: 62px; }
  .nav-logo { font-size: 1.4rem; }

  .hero-content { padding: 0 1rem; }
  .hero-title { font-size: clamp(3rem, 16vw, 4.2rem); }
  .hero-video-dots { right: 1rem; bottom: 1.25rem; }

  #experience { padding: 4rem 1rem; }
  #rooms { padding: 4rem 0 4rem 1rem; }
  .rooms-header { padding-right: 1rem; }
  .carousel-track { padding-right: 1rem; }
  .room-card { flex: 0 0 248px; height: 350px; }
  .room-name { font-size: 1.55rem; }

  .footer-top { padding: 2.5rem 1rem; }
  .footer-bottom { padding: 1rem; }
  .footer-bottom-brand { display: none; }

  .mobile-menu { padding: 84px 1.25rem 2.5rem; }
  .mobile-menu ul li a { font-size: 1.9rem; }
}

/* ══════════════════════════════════════════
   MODAL / LIGHTBOX
══════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(10, 6, 3, 0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
 
.modal-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-backdrop.open .modal-inner {
  transform: translateY(0) scale(1);
}
 
.modal-img {
  display: block;
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}
 
.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(242, 232, 214, 0.08);
  border: 1px solid rgba(242, 232, 214, 0.15);
  border-radius: 1px;
  color: var(--parchment);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.modal-close:hover {
  background: rgba(212, 84, 26, 0.2);
  border-color: var(--ember-dim);
  color: var(--ember);
}
 
@media (max-width: 600px) {
  .modal-backdrop { padding: 1rem; }
  .modal-close { top: -40px; width: 32px; height: 32px; font-size: 1rem; }
}