/* ─── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #0a0906;
  color: #e8e0d4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ─── CSS VARIABLES ───────────────────────────────── */
:root {
  --bg-deep: #0a0906;
  --bg-dark: #110f0b;
  --bg-card: #181410;
  --bg-card2: #1e1a14;
  --amber: #c8873a;
  --amber-light: #e8a855;
  --amber-dim: #7a4e1a;
  --cream: #e8e0d4;
  --cream-dim: #9a9080;
  --border: rgba(200,135,58,0.15);
  --border-soft: rgba(232,224,212,0.08);
  --glow: rgba(200,135,58,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ─── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--amber-dim); border-radius: 3px; }

/* ─── TYPOGRAPHY ──────────────────────────────────── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
em { font-style: italic; color: var(--amber-light); }

/* ─── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: #0a0906;
  padding: 12px 28px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px;
  border: none; cursor: pointer; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: 0 8px 24px var(--glow); }
.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--cream-dim);
  padding: 12px 24px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 400; font-size: 15px;
  border: 1px solid var(--border-soft); cursor: pointer; transition: var(--transition);
}
.btn-ghost:hover { color: var(--cream); border-color: var(--border); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--amber);
  padding: 12px 28px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px;
  border: 1px solid var(--amber); cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: rgba(200,135,58,0.1); }
.btn-large { padding: 16px 36px; font-size: 16px; }

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,9,6,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  padding: 20px 32px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--cream); white-space: nowrap;
}
.logo span { color: var(--amber); margin: 0 2px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px; color: var(--cream-dim);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--amber); transform: scaleX(0); transition: var(--transition);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: var(--transition); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(10,9,6,0.97); border-top: 1px solid var(--border-soft);
  padding: 16px 32px 24px;
}
.mobile-menu a {
  padding: 12px 0; border-bottom: 1px solid var(--border-soft);
  font-size: 15px; color: var(--cream-dim);
}
.mobile-menu a:last-child { border: none; margin-top: 8px; }
.mobile-menu.open { display: flex; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, #1a1208 0%, #0a0906 70%);
}
/* Animated smoke blobs */
.smoke {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18; animation: drift 12s ease-in-out infinite;
}
.smoke-1 { width: 500px; height: 500px; background: #7a4e1a; top: 20%; left: 10%; animation-duration: 14s; }
.smoke-2 { width: 400px; height: 400px; background: #3a2a0a; top: 40%; right: 5%; animation-duration: 18s; animation-delay: -6s; }
.smoke-3 { width: 300px; height: 300px; background: #5a3d18; bottom: 10%; left: 40%; animation-duration: 10s; animation-delay: -3s; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}
/* Grain texture */
.grain {
  position: absolute; inset: 0; opacity: 0.04;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-content { position: relative; text-align: center; max-width: 780px; z-index: 1; }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title {
  font-size: clamp(52px, 8vw, 96px);
  color: var(--cream); line-height: 1.05; margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-sub {
  font-size: 18px; color: var(--cream-dim); margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.8s ease 0.55s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Search bar */
.search-bar {
  display: flex; align-items: center;
  background: rgba(24,20,16,0.9); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 60px;
  padding: 8px 8px 8px 24px;
  max-width: 680px; margin: 0 auto 48px;
  opacity: 0; animation: fadeUp 0.8s ease 0.65s forwards;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.search-field { display: flex; align-items: center; gap: 10px; flex: 1; }
.search-field svg { color: var(--cream-dim); flex-shrink: 0; }
.search-field input {
  background: none; border: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--cream); width: 100%;
}
.search-field input::placeholder { color: var(--cream-dim); }
.search-divider { width: 1px; height: 24px; background: var(--border); margin: 0 16px; }
.search-btn {
  background: var(--amber); color: #0a0906;
  border: none; border-radius: 50px; padding: 12px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.search-btn:hover { background: var(--amber-light); }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 36px; color: var(--amber); }
.stat-label { font-size: 13px; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-sep { width: 1px; height: 40px; background: var(--border); }
.hero-scroll {
  position: absolute; bottom: 32px;
  animation: bob 2s ease-in-out infinite;
  color: var(--amber-dim); opacity: 0.6;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ─── SECTIONS ────────────────────────────────────── */
.section { padding: 100px 0; }
.section-dark { background: var(--bg-dark); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-header { margin-bottom: 60px; }
.section-tag {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px); color: var(--cream); line-height: 1.1;
}

/* ─── CATEGORIES ──────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.cat-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 32px;
  cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(200,135,58,0.06) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
}
.cat-card:hover { border-color: var(--border); transform: translateY(-2px); }
.cat-card:hover::before { opacity: 1; }
.cat-featured { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; min-height: 300px; }
.cat-featured { background: linear-gradient(135deg, #1a1408 0%, #241c10 100%); }
.cat-icon { font-size: 32px; margin-bottom: 16px; }
.cat-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; color: var(--cream); }
.cat-card p { font-size: 14px; color: var(--cream-dim); line-height: 1.5; margin-bottom: 16px; }
.cat-count { font-size: 12px; color: var(--amber); letter-spacing: 0.05em; }
.cat-arrow {
  position: absolute; top: 28px; right: 28px;
  color: var(--amber-dim); font-size: 20px; transition: var(--transition);
}
.cat-card:hover .cat-arrow { color: var(--amber); transform: translate(3px,-3px); }

/* ─── FILTER BAR ──────────────────────────────────── */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 20px; border-radius: 50px;
  border: 1px solid var(--border-soft);
  background: transparent; color: var(--cream-dim);
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  cursor: pointer; transition: var(--transition);
}
.chip:hover { border-color: var(--border); color: var(--cream); }
.chip.active { background: var(--amber); color: #0a0906; border-color: var(--amber); font-weight: 500; }
.filter-right { display: flex; align-items: center; gap: 12px; }
.filter-select {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  color: var(--cream-dim); padding: 8px 16px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; cursor: pointer; outline: none;
}
.view-toggle {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  color: var(--cream-dim); padding: 9px; border-radius: 8px;
  cursor: pointer; transition: var(--transition); display: flex; align-items: center;
}
.view-toggle:hover { border-color: var(--border); color: var(--cream); }

/* ─── LISTING CARDS ───────────────────────────────── */
.listings-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
  transition: var(--transition);
}
.listings-grid.list-view { grid-template-columns: 1fr; }
.listing-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer;
  transition: var(--transition); position: relative;
  animation: fadeUp 0.5s ease both;
}
.listing-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.listing-img {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1a1408, #2a1e0a);
}
.listing-img-inner {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 64px; transition: transform 0.4s ease;
}
.listing-card:hover .listing-img-inner { transform: scale(1.05); }
.listing-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--amber); color: #0a0906;
  font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 20px;
}
.listing-badge.featured { background: linear-gradient(90deg, var(--amber), var(--amber-light)); }
.listing-fav {
  position: absolute; top: 12px; right: 12px;
  background: rgba(10,9,6,0.7); border: none; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--cream-dim); font-size: 16px; transition: var(--transition);
}
.listing-fav.active { color: #e74c3c; }
.listing-fav:hover { color: #e74c3c; background: rgba(10,9,6,0.9); }
.listing-body { padding: 20px; }
.listing-type { font-size: 11px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.listing-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cream); margin-bottom: 6px; }
.listing-addr { font-size: 13px; color: var(--cream-dim); margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.listing-meta { display: flex; align-items: center; justify-content: space-between; }
.listing-rating { display: flex; align-items: center; gap: 6px; }
.stars { color: var(--amber); font-size: 13px; letter-spacing: 2px; }
.rating-num { font-size: 13px; font-weight: 500; color: var(--cream); }
.rating-count { font-size: 12px; color: var(--cream-dim); }
.listing-price { font-size: 14px; color: var(--cream-dim); }
.listing-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.listing-tag {
  font-size: 11px; padding: 3px 10px; border-radius: 20px;
  border: 1px solid var(--border-soft); color: var(--cream-dim);
}
/* List view card override */
.listings-grid.list-view .listing-card { display: flex; }
.listings-grid.list-view .listing-img { width: 200px; height: auto; flex-shrink: 0; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.listings-grid.list-view .listing-body { flex: 1; }
.load-more-wrap { text-align: center; margin-top: 48px; }

/* ─── MAP ─────────────────────────────────────────── */
.map-layout { display: flex; height: 600px; }
.map-sidebar {
  width: 360px; flex-shrink: 0;
  background: var(--bg-dark); border-right: 1px solid var(--border-soft);
  display: flex; flex-direction: column; overflow: hidden;
}
.map-search { padding: 20px; border-bottom: 1px solid var(--border-soft); }
.map-search-input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border-soft);
  color: var(--cream); padding: 10px 16px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none;
}
.map-search-input:focus { border-color: var(--border); }
.map-filters { padding: 16px 20px; border-bottom: 1px solid var(--border-soft); display: flex; flex-direction: column; gap: 12px; }
.toggle-row { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 13px; color: var(--cream-dim); }
.toggle-switch {
  appearance: none; width: 36px; height: 20px; border-radius: 10px;
  background: var(--bg-card2); cursor: pointer; position: relative; transition: var(--transition);
  border: 1px solid var(--border-soft);
}
.toggle-switch::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cream-dim); transition: var(--transition);
}
.toggle-switch:checked { background: var(--amber); border-color: var(--amber); }
.toggle-switch:checked::after { left: 18px; background: #0a0906; }
.map-list { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.map-list-item {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 14px; cursor: pointer; transition: var(--transition);
}
.map-list-item:hover { border-color: var(--border); }
.map-list-item h4 { font-size: 14px; font-weight: 500; color: var(--cream); margin-bottom: 4px; }
.map-list-item p { font-size: 12px; color: var(--cream-dim); }
.map-list-rating { font-size: 12px; color: var(--amber); margin-top: 4px; }
.map-area { flex: 1; position: relative; overflow: hidden; }
.map-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d0b07 0%, #12100a 50%, #0f0d08 100%);
  position: relative;
}
.map-grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,135,58,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,135,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.map-placeholder-inner { position: relative; width: 100%; height: 100%; }
.map-dot {
  position: absolute; width: 16px; height: 16px;
  background: var(--amber-dim); border: 2px solid var(--amber);
  border-radius: 50%; cursor: pointer; transition: var(--transition);
  transform: translate(-50%, -50%);
}
.map-dot::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: rgba(200,135,58,0.2); opacity: 0; transition: var(--transition);
}
.map-dot:hover, .map-dot.active { background: var(--amber); box-shadow: 0 0 0 6px rgba(200,135,58,0.2); }
.map-dot:hover::before, .map-dot.active::before { opacity: 1; }
.map-popup {
  position: absolute; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; width: 220px; z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}
.map-popup h4 { font-size: 15px; color: var(--cream); margin-bottom: 4px; }
.map-popup p { font-size: 12px; color: var(--cream-dim); }
.map-popup .stars { font-size: 12px; margin-top: 6px; }
.map-note {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(10,9,6,0.8); backdrop-filter: blur(8px);
  border: 1px solid var(--border-soft); border-radius: 8px;
  padding: 8px 14px; font-size: 12px; color: var(--cream-dim);
  display: flex; align-items: center; gap: 6px;
}

/* ─── EVENTS ──────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.event-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); cursor: pointer;
}
.event-card:hover { border-color: var(--border); transform: translateY(-2px); }
.event-date-bar {
  background: var(--amber); color: #0a0906;
  padding: 8px 20px; font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.event-body { padding: 20px; }
.event-body h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin-bottom: 6px; color: var(--cream); }
.event-body p { font-size: 13px; color: var(--cream-dim); line-height: 1.5; margin-bottom: 12px; }
.event-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--amber-dim); }

/* ─── STEPS / HOW IT WORKS ────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 48px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden;
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
}
.step-num {
  font-family: 'Playfair Display', serif; font-size: 48px; color: var(--amber-dim);
  line-height: 1; margin-bottom: 16px; opacity: 0.4;
}
.step-card h3 { font-size: 17px; color: var(--cream); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--cream-dim); line-height: 1.6; }
.steps-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
}
.price-featured {
  border-color: var(--amber); background: linear-gradient(135deg, #1a1408, #231b0d);
  transform: translateY(-8px);
}
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #0a0906;
  font-size: 12px; font-weight: 500; padding: 4px 16px; border-radius: 20px;
  white-space: nowrap;
}
.price-tier { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 52px; color: var(--cream); margin-bottom: 28px; }
.price-amount span { font-size: 18px; color: var(--cream-dim); }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { font-size: 14px; color: var(--cream-dim); }
.price-features li.off { opacity: 0.35; }
.price-featured .price-features li:not(.off) { color: var(--cream); }

/* ─── BLOG ────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: var(--transition);
}
.blog-card:hover { border-color: var(--border); transform: translateY(-2px); }
.blog-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 56px; background: linear-gradient(135deg, #1a1408, #241c10);
}
.blog-body { padding: 24px; }
.blog-tag { font-size: 11px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.blog-body h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--cream); margin-bottom: 10px; line-height: 1.3; }
.blog-body p { font-size: 13px; color: var(--cream-dim); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--cream-dim); }

/* ─── NEWSLETTER ──────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, #1a1408, #0e0b05);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.newsletter-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.newsletter-text h2 { font-size: 36px; color: var(--cream); }
.newsletter-text p { color: var(--cream-dim); margin-top: 8px; }
.newsletter-form { display: flex; gap: 12px; flex: 1; max-width: 440px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border-soft);
  color: var(--cream); padding: 14px 20px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none;
}
.newsletter-form input:focus { border-color: var(--border); }
.newsletter-form button { @extend .btn-primary; flex-shrink: 0; }
.newsletter-form button {
  background: var(--amber); color: #0a0906;
  border: none; border-radius: 50px; padding: 14px 28px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.newsletter-form button:hover { background: var(--amber-light); }

/* ─── FOOTER ──────────────────────────────────────── */
.footer { background: var(--bg-deep); border-top: 1px solid var(--border-soft); padding: 80px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px;
}
.footer-brand .logo { font-size: 24px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--cream-dim); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--cream-dim); transition: var(--transition);
}
.social-links a:hover { border-color: var(--amber); color: var(--amber); }
.footer-col h4 { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--cream-dim); margin-bottom: 12px; transition: var(--transition); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border-soft); padding-top: 32px;
  font-size: 13px; color: var(--cream-dim);
}

/* ─── MODAL ───────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px;
  max-width: 480px; width: 100%; position: relative;
  transform: scale(0.95); transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-large { max-width: 800px; padding: 0; overflow: hidden; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-soft);
  color: var(--cream-dim); width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 14px; transition: var(--transition); z-index: 1;
}
.modal-close:hover { color: var(--cream); border-color: var(--border); }
.modal-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--cream); margin-bottom: 8px; }
.modal-sub { font-size: 14px; color: var(--cream-dim); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; color: var(--cream-dim); margin-bottom: 8px; }
.form-input {
  width: 100%; background: var(--bg-dark); border: 1px solid var(--border-soft);
  color: var(--cream); padding: 12px 16px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none; transition: var(--transition);
}
.form-input:focus { border-color: var(--amber); }
.form-input::placeholder { color: var(--cream-dim); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
textarea.form-input { resize: vertical; min-height: 100px; }
.modal-form-btn { width: 100%; margin-top: 8px; justify-content: center; }
/* Listing detail */
.detail-hero { height: 260px; display: flex; align-items: center; justify-content: center; font-size: 80px; background: linear-gradient(135deg, #1a1408, #241c10); }
.detail-body { padding: 32px; }
.detail-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.detail-name { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--cream); }
.detail-type { font-size: 12px; color: var(--amber); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.detail-rating { text-align: right; }
.detail-stars { font-size: 18px; color: var(--amber); }
.detail-rcount { font-size: 13px; color: var(--cream-dim); }
.detail-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.detail-info-item { background: var(--bg-dark); border-radius: var(--radius); padding: 14px; }
.detail-info-item label { display: block; font-size: 11px; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.detail-info-item span { font-size: 14px; color: var(--cream); }
.detail-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.detail-amenity { font-size: 13px; padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border-soft); color: var(--cream-dim); }
.detail-reviews { border-top: 1px solid var(--border-soft); padding-top: 20px; }
.detail-reviews h4 { font-size: 16px; color: var(--cream); margin-bottom: 16px; }
.review-item { border-bottom: 1px solid var(--border-soft); padding-bottom: 16px; margin-bottom: 16px; }
.review-top { display: flex; justify-content: space-between; margin-bottom: 6px; }
.review-author { font-size: 14px; font-weight: 500; color: var(--cream); }
.review-date { font-size: 12px; color: var(--cream-dim); }
.review-text { font-size: 13px; color: var(--cream-dim); line-height: 1.6; }

/* ─── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--cream); padding: 12px 24px; border-radius: 50px;
  font-size: 14px; z-index: 2000; opacity: 0; transition: var(--transition);
  white-space: nowrap; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-featured { grid-row: span 1; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-sidebar { width: 300px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 48px; }
  .search-bar { flex-direction: column; border-radius: 20px; padding: 16px; gap: 12px; }
  .search-divider { display: none; }
  .search-field input { width: 100%; }
  .hero-stats { gap: 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-layout { flex-direction: column; height: auto; }
  .map-sidebar { width: 100%; height: 300px; }
  .map-area { height: 400px; }
  .listings-grid.list-view .listing-card { flex-direction: column; }
  .listings-grid.list-view .listing-img { width: 100%; height: 200px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal { padding: 32px 24px; }
  .detail-info { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .section { padding: 70px 0; }
  .section-title { font-size: 30px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-sep { width: 40px; height: 1px; }
  .filter-bar { flex-direction: column; align-items: flex-start; }
}
