/* ═══════════════════════════════════════════════════════════════
   Texas Road Trip 2027 — Stylesheet
   ═══════════════════════════════════════════════════════════════ */

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

:root {
  /* Palette */
  --sand: #F5EDD8;
  --rust: #C8481A;
  --rust-deep: #8B2F0E;
  --midnight: #0D1117;
  --dusk: #141B27;
  --panel: #0F1620;
  --gold: #D4A843;
  --muted: #7A6E5F;
  --border: rgba(200, 72, 26, 0.18);

  /* Category colors */
  --cat-city: #63B3ED;
  --cat-nature: #68D391;
  --cat-culture: #B794F4;

  /* Layout */
  --nav-height: 64px;
  --content-padding: 4rem;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--midnight);
  color: var(--sand);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ═══ HERO ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem var(--content-padding);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.38) saturate(1.3);
  transform: scale(1.05);
  animation: heroZoom 24s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 17, 23, 0.97) 0%,
    rgba(13, 17, 23, 0.2) 65%,
    transparent 100%
  );
}

.hero__tag {
  position: relative;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero h1 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  line-height: 0.92;
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s ease forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--rust);
}

.hero__sub {
  position: relative;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(245, 237, 216, 0.7);
  max-width: 480px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}

.hero__pills {
  position: relative;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s ease forwards;
}

.pill {
  padding: 0.35rem 1rem;
  border: 1px solid rgba(245, 237, 216, 0.22);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--sand);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.pill--accent {
  border-color: var(--rust);
  color: var(--rust);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--content-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(245, 237, 216, 0.3);
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}

.hero__scroll::after {
  content: '';
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(245, 237, 216, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══ NAV ════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13, 17, 23, 0.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem var(--content-padding);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--rust);
  margin-right: auto;
  text-decoration: none;
}

.nav a:not(.nav__logo) {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(245, 237, 216, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.nav a:not(.nav__logo):hover {
  color: var(--sand);
}

/* ═══ STATS ══════════════════════════════════════════════════ */
.stats {
  background: var(--dusk);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem var(--content-padding);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--rust);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(245, 237, 216, 0.4);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ═══ MAIN LAYOUT (content + sticky map) ═════════════════════ */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: start;
}

.content-col {
  min-width: 0;
}

.map-col {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  background: #e8e2d6;
  border-left: 1px solid var(--border);
}

#map {
  width: 100%;
  height: 100%;
}

/* ═══ WEEK HEADER ════════════════════════════════════════════ */
.week-header {
  padding: 3rem var(--content-padding) 1rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.week-header__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(200, 72, 26, 0.1);
  letter-spacing: -0.02em;
}

.week-header__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sand);
}

.week-header__info p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ═══ CARDS ══════════════════════════════════════════════════ */
.cards {
  padding: 1rem var(--content-padding) 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 280px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--dusk);
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  border-color: rgba(200, 72, 26, 0.65);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.card--reversed {
  grid-template-columns: 1fr 360px;
}

.card--reversed .card__image {
  order: 2;
}

.card--reversed .card__content {
  order: 1;
}

.card__image {
  position: relative;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

.card:hover .card__image img {
  transform: scale(1.07);
}

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 17, 23, 0.4) 0%, transparent 55%);
}

.card__day-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.75rem;
  background: var(--rust);
  color: #fff;
  border-radius: 4px;
}

.card__hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover .card__hint {
  opacity: 1;
}

.card__content {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card__top {
  flex: 1;
}

.card__type {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  border: 1px solid;
  margin-bottom: 0.7rem;
}

.card__type--city {
  color: var(--cat-city);
  border-color: rgba(99, 179, 237, 0.3);
}

.card__type--nature {
  color: var(--cat-nature);
  border-color: rgba(104, 211, 145, 0.3);
}

.card__type--culture {
  color: var(--cat-culture);
  border-color: rgba(183, 148, 244, 0.3);
}

.card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.card__sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.card__desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(245, 237, 216, 0.7);
  margin-bottom: 1rem;
}

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.7rem;
  padding: 0.18rem 0.55rem;
  background: rgba(200, 72, 26, 0.1);
  border: 1px solid rgba(200, 72, 26, 0.18);
  border-radius: 3px;
  color: rgba(245, 237, 216, 0.55);
}

.card__warn {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  background: rgba(212, 168, 67, 0.07);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 6px;
  font-size: 0.76rem;
  color: var(--gold);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.76rem;
  color: var(--muted);
}

.card__see-more {
  font-size: 0.75rem;
  color: var(--rust);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ═══ MAP WIDGETS ════════════════════════════════════════════ */
.map-label {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  text-align: center;
  backdrop-filter: blur(8px);
  background: rgba(13, 17, 23, 0.88);
  border: 1px solid var(--rust);
  border-radius: 8px;
  color: #fff;
  padding: 0.5rem 1.1rem;
  transition: opacity 0.3s;
  pointer-events: none;
}

.map-label__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  line-height: 1.1;
}

.map-label__day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--rust);
  margin-top: 0.1rem;
}

.map-label__route {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: rgba(245, 237, 216, 0.65);
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-label__route span {
  padding: 0.1rem 0.4rem;
  background: rgba(200, 72, 26, 0.15);
  border-radius: 3px;
}

.map-legend {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 340px;
}

.map-pill {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  background: rgba(20, 27, 39, 0.82);
  border: 1px solid rgba(200, 72, 26, 0.4);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.map-pill--active {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}

.lf-marker {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-family: 'Bebas Neue', sans-serif;
  cursor: pointer;
  transition: transform 0.3s;
}

.lf-marker--active {
  transform: scale(1.4);
  z-index: 1000 !important;
}

/* ═══ DRAWER (detail panel) ══════════════════════════════════ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 300;
  pointer-events: none;
  transition: background 0.35s;
}

.overlay--open {
  background: rgba(0, 0, 0, 0.72);
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(640px, 100vw);
  background: var(--panel);
  border-left: 1px solid var(--border);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.drawer--open {
  transform: translateX(0);
}

.drawer__head {
  position: relative;
  height: 280px;
  flex-shrink: 0;
  overflow: hidden;
}

.drawer__head img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.drawer__head-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--panel) 0%, transparent 60%);
}

.drawer__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--sand);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.drawer__close:hover {
  background: var(--rust);
}

.drawer__badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.75rem;
  background: var(--rust);
  border-radius: 4px;
  color: #fff;
}

.drawer__title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.8rem;
  right: 4rem;
}

.drawer__title h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--sand);
  line-height: 1;
}

.drawer__sub {
  font-size: 0.82rem;
  color: rgba(245, 237, 216, 0.55);
  margin-top: 0.4rem;
}

.drawer__body {
  padding: 2rem 2rem 3rem;
  flex: 1;
}

.section {
  margin-bottom: 2rem;
}

.section__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--rust);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.day-block {
  margin-bottom: 1.2rem;
}

.day-block__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.day-block__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.day-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: rgba(245, 237, 216, 0.72);
  line-height: 1.55;
}

.day-item__icon {
  flex-shrink: 0;
  font-size: 0.95rem;
  margin-top: 0.1rem;
}

.day-item strong {
  color: var(--sand);
  font-weight: 500;
}

.rest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.rest-card {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.rest-card__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sand);
  margin-bottom: 0.15rem;
}

.rest-card__sub {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

.rest-card__price {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 0.2rem;
}

.tip-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tip-item {
  display: flex;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: rgba(245, 237, 216, 0.68);
  line-height: 1.55;
}

.tip-item__icon {
  flex-shrink: 0;
}

.budget-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 0.5rem 0 1rem;
}

.budget-item {
  padding: 0.8rem;
  background: rgba(200, 72, 26, 0.07);
  border: 1px solid rgba(200, 72, 26, 0.15);
  border-radius: 6px;
}

.budget-item__label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.budget-item__value {
  font-size: 0.9rem;
  color: var(--sand);
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.78rem;
  color: rgba(245, 237, 216, 0.6);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.map-btn:hover {
  border-color: var(--rust);
  color: var(--sand);
}

/* ═══ SECTIONS ═══════════════════════════════════════════════ */
.flight-section,
.tips-section,
.budget-section {
  padding: 4rem var(--content-padding);
}

.flight-section,
.tips-section {
  background: var(--dusk);
  border-top: 1px solid var(--border);
}

.flight-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.flight-route__code {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--sand);
}

.flight-route__arrow {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rust), transparent);
  position: relative;
}

.flight-route__arrow::after {
  content: '\2708';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: var(--rust);
}

.flight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  align-content: start;
}

.flight-detail {
  padding: 0.9rem 1.2rem;
  background: rgba(200, 72, 26, 0.07);
  border: 1px solid rgba(200, 72, 26, 0.18);
  border-radius: 8px;
}

.flight-detail__label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.flight-detail__value {
  font-size: 0.92rem;
  color: var(--sand);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tip-card {
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.3s;
}

.tip-card:hover {
  border-color: rgba(200, 72, 26, 0.4);
}

.tip-card__icon {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
  display: block;
}

.tip-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 0.55rem;
}

.tip-card__text {
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(245, 237, 216, 0.55);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.86rem;
}

th {
  text-align: left;
  padding: 0.65rem 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(200, 72, 26, 0.08);
  color: rgba(245, 237, 216, 0.75);
}

tr.total td {
  border-top: 1px solid var(--border);
  border-bottom: none;
  padding-top: 1rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--rust);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--sand);
  margin-bottom: 1.2rem;
}

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

/* ═══ FOOTER ═════════════════════════════════════════════════ */
.footer {
  padding: 2.5rem var(--content-padding);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--rust);
}

.footer__credits {
  text-align: right;
  font-size: 0.73rem;
  line-height: 1.9;
}

.footer__credits a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(200, 72, 26, 0.3);
}

.footer__credits a:hover {
  color: var(--sand);
}

/* ═══ LEAFLET OVERRIDES ═════════════════════════════════════ */
.leaflet-tooltip-custom {
  background: rgba(20, 27, 39, 0.95) !important;
  border: 1px solid rgba(200, 72, 26, 0.4) !important;
  color: #F5EDD8 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.75rem !important;
  border-radius: 4px !important;
  padding: 0.3rem 0.6rem !important;
}

.leaflet-tooltip-custom::before {
  border-top-color: rgba(200, 72, 26, 0.4) !important;
}

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

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.13);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root {
    --content-padding: 2rem;
  }
  .main-layout {
    grid-template-columns: 1fr 300px;
  }
}

@media (max-width: 800px) {
  :root {
    --content-padding: 1.5rem;
  }
  .main-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 300px;
  }
  .map-col {
    position: relative;
    top: 0;
    height: 300px;
    border-left: none;
    border-top: 1px solid var(--border);
    order: 1;
  }
  .content-col {
    order: 2;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .card,
  .card--reversed {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }
  .card--reversed .card__image,
  .card .card__image {
    order: 1;
  }
  .card--reversed .card__content,
  .card .card__content {
    order: 2;
  }
  .tips-grid,
  .flight-box {
    grid-template-columns: 1fr;
  }
  .nav a:not(.nav__logo) {
    display: none;
  }
  .rest-grid {
    grid-template-columns: 1fr;
  }
  .budget-strip {
    grid-template-columns: 1fr 1fr;
  }
  .drawer {
    width: 100vw;
  }
}
