/* ============================================
   SOLUNA LONG BEACH — GUEST GUIDE
   Design: Luxury Spa Retreat | Warm & Personal
   Palette: Sage Green, Dusty Mauve, Warm Cream
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&family=Dancing+Script:wght@600&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --sage: #7fa38a;
  --sage-dark: #5e8070;
  --sage-light: #a8c4b0;
  --sage-pale: #e8f0ea;
  --mauve: #9b7b8a;
  --mauve-dark: #7a5f6e;
  --mauve-light: #c4a0b0;
  --mauve-pale: #f2e8ed;
  --cream: #faf7f2;
  --cream-dark: #f0ebe1;
  --warm-white: #fffef9;
  --charcoal: #2c2c2c;
  --text-body: #3d3530;
  --text-muted: #7a6e68;
  --text-light: #a09890;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --border: rgba(127, 163, 138, 0.25);
  --border-mauve: rgba(155, 123, 138, 0.2);
  --shadow-soft: 0 4px 24px rgba(44, 44, 44, 0.08);
  --shadow-card: 0 2px 16px rgba(44, 44, 44, 0.06);
  --shadow-float: 0 8px 40px rgba(44, 44, 44, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

.script { font-family: 'Dancing Script', cursive; }

/* ── TOP NAV BAR ── */
.top-bar {
  background: var(--sage);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar a { color: white; text-decoration: none; }

/* ── HAMBURGER NAV ── */
.nav-wrapper {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 38px;
  z-index: 999;
  box-shadow: var(--shadow-card);
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--sage-dark);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-logo span { color: var(--mauve); font-style: italic; }

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 12px 0 20px;
}

.nav-menu.open { display: block; }

.nav-menu a {
  display: block;
  padding: 11px 24px;
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.nav-menu a:hover {
  color: var(--sage-dark);
  background: var(--sage-pale);
  border-left-color: var(--sage);
}

/* ── MAIN CONTAINER ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HERO SECTION ── */
.hero {
  background: var(--sage);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(155, 123, 138, 0.2) 0%, transparent 50%);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}

.hero-welcome {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 10vw, 5.5rem);
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-property {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.5;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero-quick-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 48px;
  animation: fadeUp 0.8s 0.45s ease both;
}

.quick-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-decoration: none;
  color: white;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.quick-card:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.quick-card .icon {
  font-size: 1.8rem;
  display: block;
}

.quick-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.quick-card .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-scroll {
  animation: fadeUp 0.8s 0.6s ease both;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── SECTION BASE ── */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.section:last-child { border-bottom: none; }

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--charcoal);
  margin-bottom: 8px;
  font-weight: 400;
}

.section-title em {
  color: var(--mauve);
  font-style: italic;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--sage), var(--mauve));
  margin: 16px 0 32px;
  border-radius: 2px;
}

/* ── URGENT HELP SECTION ── */
.urgent-section {
  background: var(--mauve-pale);
  padding: 48px 0;
}

.urgent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.urgent-card {
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  border-left: 4px solid var(--sage);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--text-body);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.urgent-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}

.urgent-card.emergency { border-left-color: #c0392b; }
.urgent-card.emergency .uc-icon { background: #fde8e8; color: #c0392b; }

.uc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.uc-content .uc-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.uc-content .uc-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
}

.uc-content .uc-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── WIFI FEATURE CARD ── */
.wifi-feature {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: white;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.wifi-feature::after {
  content: '📶';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 5rem;
  opacity: 0.12;
}

.wifi-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}

.wifi-network {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.wifi-password {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-family: 'Jost', sans-serif;
  margin-bottom: 16px;
}

.wifi-copy-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.wifi-copy-btn:hover { background: rgba(255,255,255,0.3); }

/* ── INFO CARDS ── */
.card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
}

.card:hover { box-shadow: var(--shadow-float); }

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sage-pale);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.card-icon.mauve-bg { background: var(--mauve-pale); color: var(--mauve-dark); }
.card-icon.gold-bg { background: #fef6e8; color: var(--gold); }

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 500;
}

.card-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── STEP CARDS (Check-in) ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 16px;
  background: var(--border);
}

.step:last-child .step-number::after { display: none; }

.step-content {
  padding-top: 8px;
  flex: 1;
}

.step-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-desc strong { color: var(--text-body); }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 16px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.highlight-box.info {
  background: var(--sage-pale);
  border: 1px solid rgba(127, 163, 138, 0.3);
}

.highlight-box.warning {
  background: #fff8e8;
  border: 1px solid rgba(201, 169, 110, 0.4);
}

.highlight-box.tip {
  background: var(--mauve-pale);
  border: 1px solid var(--border-mauve);
}

.highlight-box .hb-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-box .hb-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-body);
}

.highlight-box .hb-text strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.highlight-box.warning .hb-text strong { color: #b8860b; }
.highlight-box.tip .hb-text strong { color: var(--mauve-dark); }

/* ── ACCORDION ── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  background: white;
}

.accordion-trigger {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.accordion-trigger:hover { background: var(--sage-pale); }

.accordion-trigger-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-trigger .at-icon {
  font-size: 1.2rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.accordion-trigger .at-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 500;
}

.accordion-chevron {
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-item.open .accordion-chevron { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 4px 20px 20px 64px;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.7;
}

.accordion-item.open .accordion-body { display: block; }

/* ── ROOM CARDS ── */
.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.room-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.room-card-header {
  background: var(--sage);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.room-card-header.mauve { background: var(--mauve); }
.room-card-header.gold { background: linear-gradient(135deg, #b8860b, var(--gold)); }
.room-card-header.dark { background: var(--charcoal); }

.room-card-icon { font-size: 1.8rem; }

.room-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: white;
  font-weight: 500;
}

.room-card-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.room-card-body {
  padding: 22px 24px;
}

.room-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.room-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

.room-feature-list li::before {
  content: '✦';
  color: var(--sage);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ── VIDEO PLACEHOLDER ── */
.video-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--border);
  margin: 16px 0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.video-placeholder:hover { background: var(--sage-pale); border-color: var(--sage); }

.vp-play {
  width: 56px;
  height: 56px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  padding-left: 4px;
}

.vp-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.vp-duration {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ── CHECKLIST ── */
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: var(--transition);
}

.checklist li:hover { border-color: var(--sage-light); background: var(--sage-pale); }

.check-box {
  width: 22px;
  height: 22px;
  border: 2px solid var(--sage);
  border-radius: 6px;
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-top: 1px;
}

.check-box.checked {
  background: var(--sage);
  border-color: var(--sage);
}

.check-box.checked::after {
  content: '✓';
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.checklist li.checked-item {
  opacity: 0.55;
  text-decoration: line-through;
  color: var(--text-muted);
}

/* ── HOUSE RULES ── */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rule-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.rule-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── LOCAL RECS ── */
.recs-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.rec-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.rec-tab.active, .rec-tab:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}

.rec-panel { display: none; }
.rec-panel.active { display: block; }

.rec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rec-item {
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.rec-emoji { font-size: 1.3rem; flex-shrink: 0; }

.rec-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.rec-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── TROUBLESHOOTING ── */
.trouble-item {
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 10px;
}

/* ── EMERGENCY SECTION ── */
.emergency-section {
  background: linear-gradient(135deg, #2c2c2c 0%, #3d3530 100%);
  padding: 56px 0;
}

.emergency-section .section-eyebrow { color: #e88; }
.emergency-section .section-title { color: white; }
.emergency-section .divider { background: linear-gradient(to right, #e88, var(--gold)); }

.emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.emergency-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.emergency-card:hover { background: rgba(255,255,255,0.1); }

.ec-icon {
  font-size: 1.8rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.ec-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.ec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: white;
  font-weight: 500;
}

.ec-number {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

/* ── HOST SECTION ── */
.host-section {
  background: var(--cream-dark);
  padding: 56px 0;
}

.host-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.host-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--mauve));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
}

.host-name {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--charcoal);
}

.host-bio {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
}

.host-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition);
}

.host-contact-btn:hover { background: var(--sage-dark); transform: translateY(-1px); }

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--sage-light); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--sage);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-float);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 990;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--sage-dark); transform: translateY(-2px); }

/* ── SECTION ACCENT BACKGROUNDS ── */
.bg-sage-pale { background: var(--sage-pale); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-mauve-pale { background: var(--mauve-pale); }
.bg-white { background: white; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.tag-sage { background: var(--sage-pale); color: var(--sage-dark); }
.tag-mauve { background: var(--mauve-pale); color: var(--mauve-dark); }
.tag-gold { background: #fef6e8; color: #9a7020; }

p { margin-bottom: 12px; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--charcoal); }

ul.styled-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

ul.styled-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
}

ul.styled-list li::before {
  content: '—';
  color: var(--sage);
  flex-shrink: 0;
  font-weight: 600;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px dashed var(--border);
  overflow: hidden;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .urgent-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .emergency-grid { grid-template-columns: 1fr; }
  .hero-quick-cards { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .wifi-feature { padding: 26px 20px; }
  .host-card { padding: 28px 20px; }
}

@media (min-width: 640px) {
  .room-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════
   MEDIA — IMAGES & VIDEO WIRE-UP
   Added for the photo + video integration.
═══════════════════════════════════════ */

/* HERO with photo background — keeps the existing sage gradient as a fallback
   and layers the welcome photo behind a dark overlay so the white text stays readable. */
.hero.has-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero photo at the top of each room card.
   Sits between the colored header and the body, takes up about a 4:3 frame. */
.room-card-hero {
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-dark);
}

.room-card-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-card:hover .room-card-hero img {
  transform: scale(1.03);
}

/* Small thumbnail strip at the bottom of each room card body.
   Click any thumb to open the full-size image in a new tab (no JS lightbox needed). */
.room-card-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.room-card-gallery a {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream-dark);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.room-card-gallery a:hover,
.room-card-gallery a:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  outline: none;
}

.room-card-gallery a:focus-visible {
  box-shadow: 0 0 0 2px var(--gold);
}

.room-card-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.room-card-gallery a:hover img {
  transform: scale(1.06);
}

/* Real video player — replaces the .video-placeholder boxes wherever a video exists.
   Matches the placeholder's 16:9 frame for visual consistency. */
.video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow-card);
  outline: none;
}

.video-player:focus-visible {
  box-shadow: 0 0 0 3px var(--gold), var(--shadow-card);
}

/* Mobile tweaks for galleries */
@media (max-width: 480px) {
  .room-card-gallery {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
    gap: 6px;
  }
  .room-card-hero {
    aspect-ratio: 3 / 2;
  }
}

/* ═══════════════════════════════════════
   HOW-TO STEPS — for appliance instructions
   (Used wherever a how-to video was replaced with text.)
═══════════════════════════════════════ */
.how-to-steps {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px 20px 28px;
}

.how-to-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.how-to-list {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-body);
  line-height: 1.55;
}

.how-to-list li {
  padding-left: 4px;
}

.how-to-list li::marker {
  color: var(--gold);
  font-weight: 600;
}

.how-to-list strong {
  color: var(--charcoal);
}

/* ═══════════════════════════════════════
   LIGHTBOX OVERLAY
   Opens room-card-gallery thumbnails inline.
═══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 56px 56px 80px;
  animation: lbFadeIn 0.25s ease;
}

.lightbox.is-open {
  display: flex;
}

.lb-frame {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lb-img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

.lb-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  text-align: center;
  max-width: 80ch;
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lb-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}

.lb-prev { left: 18px; }
.lb-next { right: 18px; }

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (max-width: 600px) {
  .lightbox { padding: 56px 12px 80px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 1.6rem; }
  .lb-img { max-height: calc(100vh - 130px); }
}

/* ═══════════════════════════════════════
   INSTAGRAM HANDLE — inline pill used in host card + footer
═══════════════════════════════════════ */
.ig-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #fce4ec 0%, #ffe0b2 50%, #ffccbc 100%);
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.ig-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.ig-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.footer-social {
  margin: 8px 0 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold-light);
  border-color: var(--gold);
}
