/* ═══════════════════════════════════════════════════
   VELOUR.TRAVEL — Master Stylesheet
   Hosted via GitHub Pages → referenced from Webflow
   ═══════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --sage:      #2d6a4f;
  --sage-mid:  #40916c;
  --sage-pale: #74b49b;
  --gold:      #c9a84c;
  --gold-dim:  #8a6d2a;
  --cream:     #f7f3ec;
  --warm-off:  #ede8df;
  --ink:       #18180f;
  --muted:     #7a776e;
  --bg:        #141410;
  --panel:     #162b1e;
}

/* ─── RESET ─── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* ═══════════════════
   NAVIGATION
   ═══════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 20, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 106, 79, 0.3);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); font-weight: 300; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ═══════════════════
   HERO
   ═══════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  background-image: url('https://cdn.prod.website-files.com/69a1fcbe7de2e288a78f66cf/69d549334aea6b9a91550f8b_IMG_8638%202.jpeg');
  background-size: cover;
  background-position: center 55%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8, 16, 10, 0.75) 0%,
      rgba(8, 16, 10, 0.68) 50%,
      rgba(8, 16, 10, 0.85) 100%),
    radial-gradient(ellipse at 30% 60%,
      rgba(27, 67, 50, 0.3) 0%,
      transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  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='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-pre {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title em { color: rgba(255, 255, 255, 0.52); font-style: italic; }
.hero-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0 auto 28px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-sub {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 48px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 52px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-item { text-align: center; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.stat-l {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.8s 0.5s ease both;
}
.btn-primary {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.8s 0.8s ease both;
}
.scroll-hint span {
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ═══════════════════
   TODAY'S PICKS STRIP
   ═══════════════════ */
.picks-strip {
  background: #162b1e;
  border-top: 1px solid rgba(45, 106, 79, 0.35);
  border-bottom: 1px solid rgba(45, 106, 79, 0.35);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}
.picks-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  white-space: nowrap;
  flex-shrink: 0;
}
.picks-divider {
  width: 1px; height: 16px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.picks-scroll {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.picks-scroll::-webkit-scrollbar { display: none; }
.pick-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s;
}
.pick-item:hover { color: var(--cream); }
.pick-item .pick-loc {
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-left: 8px;
}

/* ═══════════════════
   HOTEL GRID
   ═══════════════════ */
.hotels-section {
  padding: 80px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
}
.section-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 6px;
}
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 7px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
  background: rgba(27, 67, 50, 0.4);
  border-color: var(--sage-mid);
  color: var(--cream);
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

/* ─── Hotel Cards ─── */
.hotel-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  background: var(--panel);
}
.hotel-card:hover .card-overlay { opacity: 1; }
.hotel-card:hover .card-img { transform: scale(1.04); }
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(27, 67, 50, 0.6) 0%, transparent 55%),
    linear-gradient(135deg, #0d1f15 0%, #1a2e22 50%, #111e16 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.06);
}
.card-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(8, 16, 10, 0.92) 0%,
    rgba(8, 16, 10, 0.4) 40%,
    transparent 70%);
}
.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}
.card-source {
  font-size: 7.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 6px;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 4px;
}
.card-location {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}
.card-period {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.38);
  margin-top: 5px;
}
.card-overlay {
  position: absolute; inset: 0;
  background: rgba(27, 67, 50, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-cta {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 10px 20px;
  border-radius: 2px;
}

/* ─── Locked Card ─── */
.hotel-card.locked .card-content { filter: blur(4px); }
.hotel-card.locked .card-img { filter: blur(8px) brightness(0.6); }
.hotel-card.locked .card-placeholder { filter: blur(4px); }
.lock-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}
.lock-icon { font-size: 20px; margin-bottom: 8px; display: block; opacity: 0.6; }
.lock-text {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-bottom: 10px;
}
.lock-cta {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 8px 16px;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  opacity: 0.9;
}

/* ─── Deal Badges ─── */
.deal-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: var(--gold);
  color: var(--bg);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  display: none;
}
.deal-badge.active { display: block; }
.deal-type {
  display: none;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}
.deal-type.active { display: block; }
.deal-pricing {
  display: none;
  margin-top: 4px;
  align-items: baseline;
  gap: 8px;
}
.deal-pricing.active { display: flex; }
.deal-original {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}
.deal-current {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}
.deal-desc {
  display: none;
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  line-height: 1.4;
}
.deal-desc.active { display: block; }
.deal-validity {
  display: none;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}
.deal-validity.active { display: block; }

/* ─── Premium Teaser ─── */
.premium-teaser {
  grid-column: 1 / -1;
  background: #162b1e;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(45, 106, 79, 0.35) 0%, transparent 70%);
  border: 1px solid rgba(27, 67, 50, 0.4);
  border-radius: 2px;
  padding: 48px;
  text-align: center;
  margin-top: 2px;
}
.teaser-pre {
  font-size: 8px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 16px;
}
.teaser-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}
.teaser-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.8;
  margin-bottom: 28px;
}
.teaser-btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 14px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.teaser-btn:hover { opacity: 0.85; }

/* ═══════════════════
   FOOTER
   ═══════════════════ */
footer {
  border-top: 1px solid rgba(45, 106, 79, 0.3);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
}
.footer-copy {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════
   ANIMATIONS
   ═══════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════
   HOTEL TEMPLATE PAGE
   Applied to /hotels/[slug] pages
═══════════════════════════════════════ */

/* ─── Sticky booking bar — hidden (duplicate of inline deal card) ─── */
.sticky-booking { display: none !important; }
.inline-booking { display: none !important; }

/* ─── Nav Links (centered) ─── */
.nav-links {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }

/* ─── Hotel Hero ─── */
.hotel-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
}
.hotel-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hotel-hero:hover img { transform: scale(1.03); }
.hotel-hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(17,30,22,0.3) 40%, transparent 70%),
    linear-gradient(to bottom, rgba(17,30,22,0.4) 0%, transparent 30%);
}
.hotel-hero-badge {
  position: absolute;
  top: 100px; right: 48px;
  background: var(--gold);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 2px;
  text-align: center;
  z-index: 3;
  display: none;
}
.hotel-hero-badge.active { display: block; }
.hotel-hero-badge .badge-pct {
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1;
}
.hotel-hero-badge .badge-label {
  font-size: 7px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  margin-top: 2px;
}

/* ─── Hotel Header ─── */
.hotel-header {
  position: relative;
  max-width: 900px;
  margin: -120px auto 0;
  padding: 0 48px;
  z-index: 2;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hotel-awards {
  display: flex; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.award-tag {
  font-size: 7.5px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); opacity: 0.8;
  padding: 4px 10px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 1px;
}
.award-tag.velour-pick {
  color: var(--cream);
  background: rgba(45,106,79,0.3);
  border-color: var(--sage);
}
.hotel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.1; margin-bottom: 12px;
}
.hotel-location-detail {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 8px;
}
.hotel-location-detail .loc-pin { color: var(--gold); margin-right: 4px; }
.hotel-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.5; margin-top: 16px;
}
.gold-rule {
  width: 60px; height: 1px;
  background: var(--gold); opacity: 0.4;
  margin: 48px 0;
}

/* ─── Deal Card (inline on hotel page) ─── */
.hotel-deal-section {
  max-width: 900px; margin: 0 auto;
  padding: 0 48px;
  display: none;
}
.hotel-deal-section.active { display: block; }
.hotel-deal-card {
  background: var(--panel);
  border: 1px solid rgba(201,168,76,0.15);
  border-left: 3px solid var(--gold);
  padding: 32px 36px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 32px;
  margin-bottom: 48px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hdc-info { flex: 1; }
.hdc-type {
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.hdc-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.5; margin-bottom: 8px;
}
.hdc-period {
  font-size: 9px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247, 243, 236, 0.38);
  margin-bottom: 4px;
}
.hdc-validity {
  font-size: 9px; color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
}
.hdc-pricing { text-align: right; flex-shrink: 0; }
.hdc-original {
  font-size: 13px; color: rgba(255,255,255,0.35);
  text-decoration: line-through; margin-bottom: 2px;
}
.hdc-current {
  font-size: 28px; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.hdc-currency {
  font-size: 11px; font-weight: 400;
  color: rgba(255,255,255,0.45); margin-left: 4px;
}
.hdc-per-night {
  font-size: 9px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em; margin-top: 4px;
}

/* ─── Editorial Content ─── */
.hotel-content-layout {
  max-width: 900px; margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px; align-items: start;
}
.hotel-editorial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.72);
  animation: fadeUp 0.8s ease 0.5s both;
}
.hotel-editorial p { margin-bottom: 28px; }
.hotel-editorial p:first-of-type::first-letter {
  font-size: 56px; font-weight: 400;
  float: left; line-height: 0.85;
  padding-right: 10px; padding-top: 4px;
  color: var(--gold);
}
.hotel-editorial strong { font-weight: 500; color: var(--cream); }
.hotel-editorial blockquote {
  font-size: 28px; font-style: italic;
  color: var(--cream); line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 48px 0 48px 32px;
  max-width: 550px; opacity: 0.85;
}

/* ─── Details Sidebar ─── */
.hotel-details-panel {
  background: var(--panel);
  padding: 32px 28px;
  border-top: 2px solid var(--gold);
  position: sticky; top: 100px;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hdp-title {
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hdp-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hdp-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hdp-value {
  font-size: 12px; font-weight: 400;
  color: var(--cream); text-align: right;
}
.book-cta {
  display: block; width: 100%;
  margin-top: 28px; padding: 14px 24px;
  background: var(--gold); color: var(--bg);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-align: center; text-decoration: none;
  border-radius: 2px; transition: all 0.2s;
}
.book-cta:hover { background: #d4b45c; transform: translateY(-1px); }
.book-secondary {
  display: block; text-align: center;
  margin-top: 12px; font-size: 8px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ─── Active Deals (bottom) ─── */
.deals-bottom {
  max-width: 900px; margin: 80px auto 0;
  padding: 0 48px 0;
}
.deals-bottom-header { margin-bottom: 32px; }
.deals-bottom-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-style: italic; font-weight: 300;
  color: var(--cream);
}
.deals-bottom-sub {
  font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 4px;
}
.deals-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.deal-card-mini {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; cursor: pointer;
  text-decoration: none; background: var(--panel);
  display: block;
}
.deal-card-mini:hover .dcm-img { transform: scale(1.04); }
.dcm-img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.6s ease;
}
.dcm-placeholder {
  width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 60%, rgba(27,67,50,0.6) 0%, transparent 55%),
    linear-gradient(135deg, #0d1f15 0%, #1a2e22 50%, #111e16 100%);
  display: flex; align-items: center; justify-content: center;
}
.dcm-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.06);
}
.dcm-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,16,10,0.95) 0%, rgba(8,16,10,0.5) 45%, transparent 70%);
}
.dcm-badge {
  position: absolute; top: 12px; right: 12px;
  z-index: 3; background: var(--gold); color: var(--bg);
  padding: 5px 10px; border-radius: 2px;
  font-size: 11px; font-weight: 700;
}
.dcm-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; z-index: 2;
}
.dcm-type {
  font-size: 7px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.dcm-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: var(--cream); line-height: 1.2; margin-bottom: 3px;
}
.dcm-loc {
  font-size: 8px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.dcm-pricing {
  display: flex; align-items: baseline;
  gap: 8px; margin-bottom: 4px;
}
.dcm-original {
  font-size: 10px; color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}
.dcm-current { font-size: 14px; font-weight: 600; color: var(--gold); }
.dcm-valid {
  font-size: 8px; color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

/* ─── Premium CTA (bottom) ─── */
.premium-cta-block {
  max-width: 900px; margin: 2px auto 0;
  padding: 0 48px 80px;
}
.premium-cta-inner {
  background: var(--panel);
  background-image: radial-gradient(ellipse at 70% 50%, rgba(45,106,79,0.15) 0%, transparent 60%);
  border: 1px solid rgba(201,168,76,0.1);
  padding: 56px 48px;
  text-align: center;
}
.premium-cta-eyebrow {
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); opacity: 0.7; margin-bottom: 16px;
}
.premium-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-style: italic; font-weight: 300;
  color: var(--cream); line-height: 1.3;
  margin-bottom: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.premium-cta-text {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.45); line-height: 1.7;
  margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.premium-cta-btn {
  display: inline-block; padding: 14px 36px;
  background: var(--gold); color: var(--bg);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: all 0.2s;
}
.premium-cta-btn:hover { background: #d4b45c; transform: translateY(-1px); }
.premium-cta-note {
  margin-top: 12px; font-size: 9px;
  color: rgba(255,255,255,0.2); letter-spacing: 0.1em;
}

/* ─── Hotel Page Mobile ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hotel-hero { height: 55vh; }
  .hotel-hero-badge { top: 80px; right: 24px; }
  .hotel-header { padding: 0 24px; margin-top: -80px; }
  .hotel-name { font-size: 36px; }
  .hotel-tagline { font-size: 17px; }
  .hotel-content-layout {
    grid-template-columns: 1fr;
    padding: 0 24px; gap: 40px;
  }
  .hotel-details-panel { position: static; order: -1; }
  .hotel-deal-section { padding: 0 24px; }
  .hotel-deal-card { flex-direction: column; text-align: center; gap: 20px; }
  .hdc-pricing { text-align: center; }
  .hotel-editorial { font-size: 17px; }
  .hotel-editorial blockquote { font-size: 22px; margin-left: 0; }
  .deals-bottom { padding: 0 24px; }
  .deals-bottom-grid { grid-template-columns: 1fr; }
  .deal-card-mini { aspect-ratio: 4/3; }
  .premium-cta-block { padding: 0 24px 60px; }
  .premium-cta-inner { padding: 40px 24px; }
  .premium-cta-title { font-size: 24px; }
}

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