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

/* ─── Tokens ─────────────────────────────────────────────────────────────── */
:root {
  --ink:       #0c0b09;
  --ink-soft:  #1e1c18;
  --cream:     #faf8f4;
  --warm:      #f4f0e8;
  --sand:      #ede6d8;
  --sand-deep: #ddd3c0;
  --gold:      #b8960c;
  --gold-lt:   #d4af37;
  --gold-dim:  rgba(184,150,12,0.18);
  --forest:    #1a5c3a;
  --muted:     #8a8070;
  --border:    #dbd3c4;
  --serif:     'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── Page enter ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-gold {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
main { animation: fadeUp 0.6s var(--ease-out) both; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container { max-width: 1260px; margin: 0 auto; padding: 0 2rem; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.logo span {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-lt);
}
.logo:hover { opacity: 0.8; }
.site-header nav { display: flex; gap: 0; }
.site-header nav a {
  color: rgba(250,248,244,0.5);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.site-header nav a:hover { color: rgba(250,248,244,0.95); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 9rem 0 8rem;
  overflow: hidden;
  text-align: center;
}
/* Animated radial gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 72% 30%, rgba(184,150,12,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(26,92,58,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 90%, rgba(184,150,12,0.05) 0%, transparent 60%);
  animation: shimmer 12s ease-in-out infinite alternate;
  background-size: 200% 200%;
}
/* Fine grid */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 2rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
  display: block;
}
.hero-sub {
  font-size: 0.9rem;
  color: rgba(250,248,244,0.45);
  letter-spacing: 0.08em;
  max-width: 420px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-cta {
  display: inline-block;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(184,150,12,0.5);
  padding: 0.85rem 2.5rem;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.hero-cta:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--ink);
}

/* ─── Stats Bar ─────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 3rem;
}
.stat {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}
.stat-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* ─── Section Chrome ─────────────────────────────────────────────────────── */
section { padding: 6rem 0; }
section + section { border-top: 1px solid var(--border); }

.section-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
section > .container > h2,
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}

/* ─── Featured Hotels (Asymmetric) ──────────────────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.featured-card {
  display: block;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.featured-card:first-child {
  grid-row: 1 / 3;
  min-height: 500px;
}
.featured-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}
.featured-card:hover .featured-card-bg { transform: scale(1.04); }

/* Unique gradient per card position */
.featured-card:nth-child(1) .featured-card-bg {
  background: linear-gradient(145deg, #1a1208 0%, #2d200a 30%, #0e1a0f 70%, #080808 100%);
}
.featured-card:nth-child(2) .featured-card-bg {
  background: linear-gradient(135deg, #0c1518 0%, #0e2020 40%, #121008 100%);
}
.featured-card:nth-child(3) .featured-card-bg {
  background: linear-gradient(155deg, #150c18 0%, #1a0e10 50%, #0a0c16 100%);
}

/* Gold accent overlay */
.featured-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 60%, rgba(184,150,12,0.12) 0%, transparent 70%);
  z-index: 1;
}
/* Bottom scrim */
.featured-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 75%;
  background: linear-gradient(to top, rgba(8,8,6,0.92) 0%, transparent 100%);
  z-index: 1;
}
.featured-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 2rem 2.25rem;
  z-index: 2;
}
.featured-card-stars {
  color: var(--gold-lt);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  display: block;
}
.featured-card h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.featured-card:first-child h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}
.featured-card:not(:first-child) h3 { font-size: 1.4rem; }

.featured-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.featured-card-location {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.5);
}
.featured-card-price {
  font-size: 0.72rem;
  color: var(--gold-lt);
  margin-left: auto;
}
.featured-card-score {
  background: var(--forest);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.18rem 0.45rem;
}

/* ─── Hotel Grid (standard cards) ───────────────────────────────────────── */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.hotel-card:hover {
  box-shadow: 0 16px 48px rgba(12,11,9,0.14);
  transform: translateY(-4px);
}

/* Gradient swatch — unique hue per position */
.hotel-card-swatch {
  height: 320px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}
.hotel-card:hover .hotel-card-swatch { height: 340px; }

.hotel-card:nth-child(6n+1) .hotel-card-swatch { background: linear-gradient(130deg, #1a1208 0%, #2d200a 100%); }
.hotel-card:nth-child(6n+2) .hotel-card-swatch { background: linear-gradient(130deg, #0c1518 0%, #1a2c20 100%); }
.hotel-card:nth-child(6n+3) .hotel-card-swatch { background: linear-gradient(130deg, #150c18 0%, #0a1020 100%); }
.hotel-card:nth-child(6n+4) .hotel-card-swatch { background: linear-gradient(130deg, #10180c 0%, #1a2810 100%); }
.hotel-card:nth-child(6n+5) .hotel-card-swatch { background: linear-gradient(130deg, #18100c 0%, #2a1a10 100%); }
.hotel-card:nth-child(6n+6) .hotel-card-swatch { background: linear-gradient(130deg, #0c1018 0%, #10182a 100%); }

/* Gold shimmer line at top of swatch */
.hotel-card-swatch::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s;
}
.hotel-card:hover .hotel-card-swatch::after { opacity: 1; }

/* Real photo swatch */
.hotel-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  transition: height 0.35s var(--ease);
  position: relative;
}
.hotel-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(12,11,9,0.18));
}
.hotel-card:hover .hotel-card-img { height: 180px; }

.hotel-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-stars {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.hotel-card h2,
.hotel-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.card-location {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.card-amenities {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--sand);
}
.card-score {
  background: var(--forest);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.22rem 0.5rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.card-price {
  color: var(--muted);
  font-size: 0.75rem;
  margin-left: auto;
}
.card-price strong { color: var(--ink); font-weight: 600; }

/* ─── Editorial Strip ────────────────────────────────────────────────────── */
.editorial-strip {
  background: var(--ink-soft);
  color: var(--cream);
  padding: 6rem 0 !important;
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
  overflow: hidden;
}
.editorial-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,150,12,0.07) 0%, transparent 65%);
}
.editorial-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.editorial-rule {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.editorial-rule span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0.7;
}
.editorial-rule::before,
.editorial-rule::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(212,175,55,0.3);
}
.editorial-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: rgba(250,248,244,0.92);
  margin-bottom: 1.5rem;
}
.editorial-attr {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.35);
}

/* ─── Destinations Grid ──────────────────────────────────────────────────── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
}
.destination-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--ink);
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
  font-size: 0.85rem;
}
.destination-item:hover {
  background: var(--ink);
  color: var(--cream);
}
.destination-item span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color 0.2s;
}
.destination-item:hover span { color: rgba(250,248,244,0.45); }

/* ─── Amenity Grid ───────────────────────────────────────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.amenity-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.amenity-pill:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.amenity-symbol {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.15rem;
}
.amenity-name {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.amenity-count {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.amenity-pill:hover .amenity-count { color: rgba(250,248,244,0.45); }

/* ─── Tag Cloud (fallback for amenities without symbol) ─────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  display: inline-block;
  text-decoration: none;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.tag:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.tag .count { color: var(--muted); font-size: 0.6rem; margin-left: 0.2rem; letter-spacing: 0; text-transform: none; }
.tag:hover .count { color: rgba(250,248,244,0.4); }

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--gold); }

/* ─── Page Header ────────────────────────────────────────────────────────── */
.page-header { margin-bottom: 3rem; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.page-desc { color: var(--muted); font-size: 0.9rem; max-width: 600px; line-height: 1.75; }
.result-count {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ─── Hotel Masthead (single page) ──────────────────────────────────────── */
.hotel-single { padding: 0 0 6rem; }
.hotel-masthead {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 4rem;
  margin-bottom: 5rem;
  overflow: hidden;
}
.hotel-masthead::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 85% 20%, rgba(184,150,12,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(26,92,58,0.07) 0%, transparent 50%);
}
/* Gold top border */
.hotel-masthead::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-lt), var(--gold), var(--gold-lt), transparent);
}
.hotel-masthead .container { position: relative; }
.hotel-masthead .breadcrumb { color: rgba(250,248,244,0.35); margin-bottom: 2.5rem; }
.hotel-masthead .breadcrumb a { color: rgba(250,248,244,0.4); }
.hotel-masthead .breadcrumb a:hover { color: rgba(250,248,244,0.9); }
.hotel-masthead .breadcrumb .sep { color: rgba(184,150,12,0.5); }

.hotel-stars-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.hotel-stars-display > span:first-child {
  color: var(--gold-lt);
  font-size: 1rem;
  letter-spacing: 0.18em;
}
.star-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.6);
}

.hotel-masthead h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  max-width: 820px;
}

.hotel-location-line {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.4);
  margin-bottom: 2rem;
}
.hotel-location-line span { color: rgba(250,248,244,0.75); }

.hotel-masthead-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.score-badge { display: flex; align-items: center; gap: 0.75rem; }
.score {
  background: var(--forest);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  letter-spacing: 0.02em;
}
.score-text { font-size: 0.72rem; color: rgba(250,248,244,0.45); line-height: 1.4; }
.score-text strong { display: block; color: rgba(250,248,244,0.85); font-weight: 500; }

/* ─── Hotel Body ─────────────────────────────────────────────────────────── */
.hotel-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: start;
}
@media (max-width: 960px) { .hotel-body { grid-template-columns: 1fr; gap: 3rem; } }

.hotel-description h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.hotel-description p { color: #3d3830; line-height: 1.85; font-size: 1rem; }

.highlights { list-style: none; margin-top: 2.5rem; display: grid; gap: 0.85rem; }
.highlights li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.5;
}
.highlights li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ─── Sidebar ────────────────────────────────────────────────────────────── */
.hotel-sidebar { position: sticky; top: 84px; align-self: start; }
.price-box {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem;
  text-align: center;
  margin-bottom: 0.75rem;
}
.price-from {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.4);
  margin-bottom: 0.5rem;
}
.price {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}
.price-unit {
  font-size: 0.7rem;
  color: rgba(250,248,244,0.35);
  display: block;
  margin-top: 0.35rem;
  letter-spacing: 0.08em;
}

.btn-book {
  display: block;
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  padding: 1.1rem 1.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-lt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn-book:hover::before { transform: scaleX(1); }
.btn-book span { position: relative; z-index: 1; }

.amenity-list { background: var(--warm); padding: 1.5rem; border: 1px solid var(--border); }
.amenity-list h3 {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.amenity-list ul { list-style: none; }
.amenity-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--sand-deep);
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.amenity-list li:last-child { border-bottom: none; }
.amenity-list li::before { content: '✦'; color: var(--gold); font-size: 0.45rem; }

/* Sidebar location block */
.sidebar-location {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--warm);
  border: 1px solid var(--border);
}
.sidebar-location h3 {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.sidebar-location p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.sidebar-address {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.hotel-address { font-size: 0.78rem; opacity: 0.65; }

/* ─── Related Links ──────────────────────────────────────────────────────── */
.related-links { padding-top: 4rem; border-top: 1px solid var(--border); }
.related-links h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.related-links ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.related-links a {
  text-decoration: none;
  color: var(--ink-soft);
  background: var(--warm);
  border: 1px solid var(--sand-deep);
  padding: 0.45rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.related-links a:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-all {
  display: inline-block;
  margin-top: 3rem;
  padding: 0.85rem 2.5rem;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background 0.25s, color 0.25s;
}
.btn-all:hover { background: var(--ink); color: var(--cream); }

/* ─── Taxonomy pages ─────────────────────────────────────────────────────── */
.taxonomy-page, .term-page, .hotel-list { padding: 3rem 0 6rem; }
.section-desc { color: var(--muted); font-size: 0.9rem; max-width: 600px; line-height: 1.75; margin-bottom: 2rem; }

.term-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.term-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.term-card:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(184,150,12,0.1);
}
.term-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.term-count {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(250,248,244,0.35);
  padding: 4rem 0 3rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,248,244,0.55);
}
.footer-logo span { font-style: normal; font-weight: 500; color: var(--gold-lt); }
.footer-ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(184,150,12,0.3);
  font-size: 0.5rem;
  letter-spacing: 0.5em;
}
.footer-ornament::before,
.footer-ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(184,150,12,0.2);
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 2rem;
}
.site-footer nav a {
  color: rgba(250,248,244,0.35);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-footer nav a:hover { color: rgba(250,248,244,0.8); }
.footer-copy { font-size: 0.65rem; letter-spacing: 0.08em; margin-top: 0.5rem; }

/* ─── Pagination ─────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 0.375rem;
  justify-content: center;
  margin-top: 5rem;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  min-width: 42px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.pagination .active,
.pagination a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card:first-child { grid-row: auto; }
  .stats-bar .container { gap: 1.5rem; }
  .stat-divider { display: none; }
  .hotel-body { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .site-header nav a:not(:last-child) { display: none; }
  .hero { padding: 6rem 0 5rem; }
  section { padding: 4rem 0; }
}

/* ─── Prev/Next Pagination ───────────────────────────────────────────────── */
.pagination { display:flex; align-items:center; justify-content:center; gap:1.5rem; padding:3rem 0 1rem; }
.pagination .page-prev, .pagination .page-next { padding:.6rem 1.4rem; border:1px solid var(--ink); color:var(--ink); text-decoration:none; font-size:.875rem; letter-spacing:.04em; transition:background .2s,color .2s; }
.pagination .page-prev:hover, .pagination .page-next:hover { background:var(--ink); color:var(--cream); }
.pagination .page-info { font-size:.8rem; color:#888; letter-spacing:.06em; }

/* ─── SEO img replacements for background images ────────────────────────── */
/* Featured cards */
.featured-card-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
}
.featured-card:hover .featured-card-bg img { transform: scale(1.04); }

/* Hotel cards */
.hotel-card-img {
  overflow: hidden;
  height: 320px;
  flex-shrink: 0;
}
.hotel-card-img img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  transition: height 0.35s var(--ease), transform 0.4s var(--ease);
}
.hotel-card:hover .hotel-card-img { height: 340px; }
.hotel-card:hover .hotel-card-img img { height: 340px; }

/* Hotel masthead photo */
.masthead-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.masthead-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,11,9,.45) 0%, rgba(12,11,9,.88) 100%);
}

/* ─── Destinations toggle ────────────────────────────────────────────────── */
.dest-hidden { display: none; }
.dest-toggle-wrap { text-align: center; margin-top: 2rem; }
.dest-toggle {
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .7rem 2rem;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.dest-toggle:hover { background: var(--ink); color: var(--cream); }

/* ─── Review score in masthead ──────────────────────────────────────────── */
.masthead-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.score-badge {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  line-height: 1;
}
.score-stars { font-size: 0.85rem; letter-spacing: 0.05em; }
.score-stars .s-filled { color: var(--gold-lt); }
.score-stars .s-empty  { color: rgba(250,248,244,0.25); }
.score-count {
  font-size: 0.7rem;
  color: rgba(250,248,244,0.5);
  letter-spacing: 0.08em;
}

/* ─── Guest reviews section ─────────────────────────────────────────────── */
.guest-reviews {
  margin: 3rem 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.guest-reviews h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.reviews-score-inline {
  font-size: 0.9rem;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.review-card {
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 1.5rem;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 0.5rem;
}
.review-author {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--ink);
}
.review-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.15rem; }
.review-stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.08em; }
.review-time  { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.06em; }
.review-text  { font-size: 0.82rem; line-height: 1.7; color: var(--ink-soft); }

/* ─── Amenity tags in description area ──────────────────────────────────── */
.amenity-tags {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.amenity-tags h3 {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.amenity-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.amenity-tag {
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.amenity-tag:hover {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--ink);
}
.desc-map-link {
  margin-top: 1.75rem;
  font-size: 0.78rem;
}
.desc-map-link a {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.desc-map-link a:hover { text-decoration: underline; }

/* ─── Sidebar score box ─────────────────────────────────────────────────── */
.sidebar-score-box {
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.75rem;
}
.sidebar-score-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  min-width: 2.5rem;
}
.sidebar-score-label {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* ─── Swatch city label (no-image fallback) ─────────────────────────────── */
.swatch-city {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.55);
  position: relative;
  z-index: 1;
}
