:root {
  --bg-app: #0a0a0f;
  --bg-surface: #13131a;
  --bg-card: #1a1a24;
  --bg-card-hover: #22222e;
  --bg-glass: rgba(26, 26, 36, 0.85);
  --bg-overlay: rgba(10, 10, 15, 0.7);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  --accent-gold: #ffe600;
  --accent-gold-dim: rgba(255, 230, 0, 0.15);
  --accent-wine: #8b2252;
  --accent-wine-light: #c44d7b;
  --accent-sunset: #ff6b35;
  --accent-sky: #4a9eff;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --gradient-hero: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0a1628 100%);
  --gradient-wine: linear-gradient(135deg, #2d1b3d 0%, #1a0a2e 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, #ffc107 100%);
  --gradient-sunset: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffe600 100%);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(255, 230, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-app);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo {
  background: #1a1a24;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.nav-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.nav-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--accent-gold);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1599566150163-29194dcaad36?w=1920') center/cover no-repeat;
  background-image: url('https://images.unsplash.com/photo-1516490701691-bc725b3b2e36?w=1920&q=80');
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 10, 15, 0.3) 0%,
    rgba(10, 10, 15, 0.5) 40%,
    rgba(10, 10, 15, 0.85) 80%,
    var(--bg-app) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(139, 34, 82, 0.2) 0%,
    transparent 50%,
    rgba(255, 230, 0, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent-gold-dim);
  border: 1px solid rgba(255, 230, 0, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 0%, #e0e0e0 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-date {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  border: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--accent-gold);
  color: #0a0a0f;
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 230, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: 100px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   WEATHER STRIP
   ============================================ */
.weather-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.weather-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition-fast);
}

.weather-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.weather-day {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.weather-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.weather-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.weather-temp {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.weather-range {
  font-size: 13px;
  color: var(--text-secondary);
}

.weather-condition {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   FLIGHTS
   ============================================ */
.flights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.flight-group-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flight-group-title .date-badge {
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.flight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  transition: var(--transition-fast);
  cursor: default;
}

.flight-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.flight-airline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.airline-name {
  font-size: 14px;
  font-weight: 600;
}

.airline-code {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
}

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

.flight-city {
  text-align: center;
  flex: 0 0 auto;
}

.flight-code {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
}

.flight-time {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.flight-city-name {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.flight-path {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.flight-duration {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.flight-line {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  position: relative;
}

.flight-line::after {
  content: '✈';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.flight-nonstop {
  font-size: 10px;
  color: var(--accent-gold);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flight-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.price-label {
  font-size: 11px;
  color: var(--text-muted);
}

.price-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
}

/* ============================================
   ITINERARY TIMELINE
   ============================================ */
.itinerary-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}

.it-tab {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}

.it-tab:hover {
  border-color: var(--border-light);
  color: var(--text-primary);
}

.it-tab.active {
  background: var(--accent-gold);
  color: #0a0a0f;
  border-color: var(--accent-gold);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg,
    var(--accent-gold) 0%,
    var(--accent-wine) 50%,
    var(--accent-sunset) 100%);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-app);
  border: 2px solid var(--accent-gold);
  z-index: 1;
}

.timeline-dot.active {
  background: var(--accent-gold);
  box-shadow: 0 0 16px rgba(255, 230, 0, 0.4);
}

.timeline-time {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-fast);
}

.timeline-card:hover {
  border-color: var(--border-light);
  transform: translateX(4px);
}

.timeline-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-card .travel-info {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.day-panel {
  display: none;
}

.day-panel.active {
  display: block;
}

/* ============================================
   LOCATION CARDS
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.location-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.location-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.location-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.location-card:hover .location-img img {
  transform: scale(1.05);
}

.location-img .loc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.location-img .rating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-gold);
  color: #0a0a0f;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.location-body {
  padding: 24px;
}

.location-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.location-body .loc-type {
  font-size: 12px;
  color: var(--accent-wine-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.location-body .loc-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.location-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.location-links {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.loc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.loc-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: var(--border-light);
}

/* ============================================
   LOCATION DETAIL MODAL
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.modal-hero {
  height: 300px;
  position: relative;
  overflow: hidden;
}

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

.modal-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg-surface));
}

.modal-content {
  padding: 32px;
  margin-top: -40px;
  position: relative;
}

.modal-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modal-type {
  font-size: 12px;
  color: var(--accent-wine-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.info-item .info-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.info-item .info-value {
  font-size: 14px;
  font-weight: 600;
}

.modal-reviews {
  margin-top: 24px;
}

.modal-reviews h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-author {
  font-size: 13px;
  font-weight: 600;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 12px;
}

.review-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.modal-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.modal-link:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
}

.modal-link-primary {
  background: var(--accent-gold);
  color: #000;
  border-color: var(--accent-gold);
  font-weight: 700;
}

.modal-link-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
}

/* Hotel Modal */
.modal-hotel-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--accent-gold);
  color: #000;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.modal-hotel-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.modal-hotel-stars {
  display: inline-block;
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.modal-hotel-price-block {
  text-align: right;
  flex-shrink: 0;
}

.modal-hotel-price {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-hotel-rating {
  display: block;
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 2px;
}

.modal-hotel-amenities {
  margin-top: 24px;
}

.modal-hotel-amenities h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hotel-amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-amenity-tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* Instagram Gallery in Modal */
.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.instagram-gallery h3 {
  grid-column: 1 / -1;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.insta-img {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-img:hover img {
  transform: scale(1.1);
}

.insta-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s;
}

.insta-img:hover::after {
  opacity: 1;
}

/* ============================================
   DIRECTIONS
   ============================================ */
.directions-list {
  max-width: 800px;
  margin: 0 auto;
}

.direction-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition-fast);
}

.direction-card:hover {
  border-color: var(--border-light);
}

.dir-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-gold-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.dir-content {
  flex: 1;
}

.dir-from-to {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.dir-detail {
  font-size: 12px;
  color: var(--text-muted);
}

.dir-time {
  text-align: right;
}

.dir-duration {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-gold);
}

.dir-distance {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================
   HOTEL INFO
   ============================================ */
.hotel-hero {
  background: var(--gradient-wine);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.hotel-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hotel-info .hotel-addr {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.hotel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hotel-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-secondary);
}

.hotel-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}

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

/* ============================================
   WINES
   ============================================ */
.wines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.wine-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-fast);
}

.wine-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.wine-card-perfect {
  border-color: rgba(255, 215, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06) 0%, var(--bg-card) 100%);
}

.wine-card-perfect:hover {
  border-color: rgba(255, 215, 0, 0.5);
}

.wine-card-bottle {
  width: 80px;
  min-height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
}

.wine-card-bottle img {
  max-height: 160px;
  max-width: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.wine-card:hover .wine-card-bottle img {
  transform: scale(1.05);
}

.wine-card-body {
  flex: 1;
  padding: 16px 16px 16px 12px;
  display: flex;
  flex-direction: column;
}

.wine-card-winery {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.wine-card-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}

.wine-card-vintage {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.wine-card-region {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.wine-card-scores {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.wine-score {
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
}

.wine-score small {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
}

.wine-score-perfect {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
}

.wine-score-perfect small {
  color: rgba(0, 0, 0, 0.6);
}

.wine-vivino {
  font-size: 11px;
  color: var(--text-muted);
}

.wine-card-tasting {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.wine-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.wine-card-price {
  font-size: 16px;
  font-weight: 700;
}

.wine-card-source {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Wine Modal */
.wine-modal-hero {
  display: flex;
  gap: 32px;
  padding: 32px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-card) 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.wine-modal-bottle {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wine-modal-bottle img {
  max-height: 280px;
  max-width: 80px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
}

.wine-modal-headline {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wine-modal-winery {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.wine-modal-headline h2 {
  margin-bottom: 8px;
}

.wine-modal-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.wine-modal-scores-row {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.wine-modal-score {
  text-align: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.wine-modal-score.wine-score-perfect {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
  border-color: rgba(255, 215, 0, 0.4);
}

.wine-modal-score-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.wine-score-perfect .wine-modal-score-num {
  color: var(--accent-gold);
}

.wine-modal-score-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 2px;
}

.wine-modal-section {
  margin-top: 24px;
}

.wine-modal-section h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wine-tasting-full {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.wine-aging-detail {
  font-size: 13px;
  color: var(--text-secondary);
}

.wine-critic-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
}

.wine-critic-quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--accent-gold);
  border-left: 3px solid var(--accent-gold);
  padding-left: 16px;
  margin: 0;
  font-style: italic;
}

.wine-pairings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wine-pairing-tag {
  padding: 6px 14px;
  background: rgba(139, 69, 19, 0.15);
  border: 1px solid rgba(139, 69, 19, 0.25);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-secondary);
}

/* ============================================
   HOTEL OPTIONS
   ============================================ */
.hotels-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.hotels-map-container {
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 88px;
  border: 1px solid var(--border-subtle);
}

.hotels-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hotel-option-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.hotel-option-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.hotel-option-highlight {
  border-color: rgba(255, 230, 0, 0.25);
  background: linear-gradient(135deg, rgba(255, 230, 0, 0.04) 0%, var(--bg-card) 100%);
}

.hotel-option-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.hotel-option-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.hotel-option-stars {
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

.hotel-note {
  background: var(--accent-gold-dim);
  color: var(--accent-gold);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.hotel-option-addr {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hotel-option-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.hotel-option-feat {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-secondary);
}

.hotel-option-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
}

.hotel-option-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-right: 12px;
}

.hotel-option-rating {
  font-size: 12px;
  color: var(--accent-gold);
  font-weight: 600;
}

/* Map pin overlay */
.map-pins-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.map-pin:hover {
  transform: translate(-50%, -100%) scale(1.15);
  z-index: 20;
}

.map-pin:hover .map-pin-dot {
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.map-pin:hover .map-pin-label {
  background: var(--accent-gold);
  color: #000;
}

.map-pin-dot {
  width: 14px;
  height: 14px;
  background: var(--pin-color, var(--accent-gold));
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.15s ease;
}

.map-pin-label {
  background: rgba(10, 10, 15, 0.9);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 4px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background 0.15s ease, color 0.15s ease;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 24px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-text {
  text-align: right;
}

.footer-text a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
}

.footer-text a:hover {
  color: var(--text-primary);
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .flights-grid {
    grid-template-columns: 1fr;
  }

  .hotel-hero {
    grid-template-columns: 1fr;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .wines-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .hotels-layout {
    grid-template-columns: 1fr;
  }

  .hotels-map-container {
    position: relative;
    top: 0;
    height: 350px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 64px;
  }

  /* Nav */
  .nav-inner {
    height: 64px;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 16px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    font-size: 16px;
    border-radius: var(--radius-sm);
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-title {
    font-size: 14px;
  }

  .nav-subtitle {
    font-size: 10px;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 10px;
    padding: 6px 14px;
    letter-spacing: 1.5px;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .hero-date {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .scroll-indicator {
    bottom: 24px;
  }

  /* Sections */
  .section {
    padding: 60px 16px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-desc {
    font-size: 14px;
  }

  /* Weather */
  .weather-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .weather-card {
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    text-align: left;
  }

  .weather-icon {
    grid-row: 1 / 3;
    font-size: 36px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

  .weather-day {
    margin-bottom: 0;
  }

  .weather-date {
    margin-bottom: 0;
  }

  .weather-temp {
    grid-column: 1 / -1;
    font-size: 22px;
    margin-top: 8px;
  }

  .weather-range {
    grid-column: 1 / -1;
  }

  .weather-condition {
    grid-column: 1 / -1;
  }

  /* Hotel */
  .hotel-hero {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }

  .hotels-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hotels-map-container {
    height: 280px;
    position: relative;
    top: 0;
  }

  .hotel-option-card {
    padding: 16px;
  }

  .hotel-option-name {
    font-size: 15px;
  }

  .map-pin-label {
    font-size: 9px;
    padding: 2px 6px;
  }

  /* Wines */
  .wines-grid {
    grid-template-columns: 1fr;
  }

  .wine-card-bottle {
    width: 64px;
    min-height: 160px;
    padding: 12px 6px;
  }

  .wine-card-bottle img {
    max-height: 130px;
  }

  .wine-card-body {
    padding: 14px 14px 14px 10px;
  }

  .wine-card-name {
    font-size: 14px;
  }

  .wine-modal-hero {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    align-items: center;
    text-align: center;
  }

  .wine-modal-bottle {
    width: 80px;
  }

  .wine-modal-bottle img {
    max-height: 200px;
  }

  .wine-modal-scores-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .wine-modal-headline {
    align-items: center;
  }

  .hotel-info h3 {
    font-size: 20px;
  }

  .hotel-img {
    height: 200px;
  }

  /* Flights */
  .flights-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flight-group-title {
    font-size: 16px;
    flex-wrap: wrap;
  }

  .flight-card {
    padding: 16px;
  }

  .flight-code {
    font-size: 18px;
  }

  .flight-route {
    gap: 10px;
  }

  /* Itinerary */
  .itinerary-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    padding-bottom: 4px;
    gap: 6px;
  }

  .itinerary-tabs::-webkit-scrollbar {
    display: none;
  }

  .it-tab {
    padding: 10px 16px;
    font-size: 13px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .timeline::before {
    left: 16px;
  }

  .timeline-item {
    padding-left: 48px;
    padding-bottom: 24px;
  }

  .timeline-dot {
    left: 8px;
    width: 16px;
    height: 16px;
  }

  .timeline-card {
    padding: 16px;
  }

  .timeline-card h3 {
    font-size: 15px;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-img {
    height: 180px;
  }

  .location-body {
    padding: 16px;
  }

  .location-body h3 {
    font-size: 17px;
  }

  .location-links {
    flex-wrap: wrap;
  }

  .loc-link {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* Modal - full screen on mobile */
  .modal-overlay {
    padding: 0;
    align-items: stretch;
  }

  .modal {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    margin: 0;
  }

  .modal-hero {
    height: 220px;
  }

  .modal-content {
    padding: 20px 16px 32px;
  }

  .modal-content h2 {
    font-size: 22px;
  }

  .modal-desc {
    font-size: 14px;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-item {
    padding: 12px;
  }

  .info-item .info-value {
    font-size: 13px;
    word-break: break-word;
  }

  .instagram-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .modal-links {
    flex-direction: column;
    gap: 8px;
  }

  .modal-link {
    justify-content: center;
    padding: 12px 20px;
  }

  .modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  /* Directions */
  .direction-card {
    flex-direction: row;
    text-align: left;
    padding: 16px;
    gap: 12px;
  }

  .dir-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .dir-from-to {
    font-size: 13px;
  }

  .dir-detail {
    font-size: 11px;
  }

  .dir-duration {
    font-size: 14px;
  }

  .dir-time {
    text-align: right;
    white-space: nowrap;
  }

  /* Footer */
  .footer {
    padding: 32px 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-text {
    text-align: center;
  }

  .footer-copy {
    font-size: 11px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero-badge {
    font-size: 9px;
    padding: 5px 12px;
  }

  .hero-date {
    font-size: 11px;
  }

  .section {
    padding: 48px 12px;
  }

  .weather-card {
    padding: 16px;
  }

  .weather-temp {
    font-size: 20px;
  }

  .flight-code {
    font-size: 16px;
  }

  .flight-route {
    gap: 6px;
  }

  .flight-duration {
    font-size: 10px;
  }

  .hotel-hero {
    padding: 16px;
  }

  .timeline-item {
    padding-left: 40px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-dot {
    left: 4px;
    width: 14px;
    height: 14px;
  }

  .location-body {
    padding: 14px;
  }

  .modal-content {
    padding: 16px 12px 24px;
  }

  .direction-card {
    padding: 12px;
    gap: 10px;
  }

  .dir-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .flight-card:hover,
  .weather-card:hover,
  .location-card:hover,
  .timeline-card:hover,
  .direction-card:hover {
    transform: none;
  }

  .location-card:hover .location-img img {
    transform: none;
  }

  .btn-primary:hover,
  .btn-outline:hover {
    transform: none;
  }

  .loc-link,
  .modal-link,
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }

  .scroll-indicator {
    display: none;
  }

  .modal {
    max-height: 100vh;
  }

  .modal-hero {
    height: 150px;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-app);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bg-card-hover);
}
