:root {
  --bg: #0b090c;
  --bg-soft: #141015;
  --surface: #18141b;
  --surface-strong: #211923;
  --surface-warm: #2a1d17;
  --control: #1c171f;
  --control-hover: #241d27;
  --text: #fbf7ef;
  --muted: #c7bdb2;
  --muted-strong: #eadfd3;
  --accent: #f2c14e;
  --accent-strong: #ff9f43;
  --green: #42d392;
  --red: #f06464;
  --plum: #9b6bff;
  --border: rgba(251, 247, 239, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    linear-gradient(145deg, rgba(68, 30, 43, 0.38), transparent 34rem),
    linear-gradient(215deg, rgba(27, 83, 68, 0.24), transparent 30rem),
    var(--bg);
  color: var(--text);
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 9, 12, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand,
.footer-brand {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0.82rem 1.15rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 36px rgba(242, 193, 78, 0.18);
  color: #171006;
}

.button-secondary {
  background: rgba(251, 247, 239, 0.075);
  border: 1px solid var(--border);
}

.button-secondary:hover {
  background: rgba(251, 247, 239, 0.12);
  border-color: rgba(251, 247, 239, 0.22);
}

.button-sm {
  min-height: 40px;
  padding: 0.68rem 0.9rem;
  font-size: 0.9rem;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-travel {
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-copy-block h1 {
  margin: 1rem 0 1.2rem;
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.hero-copy p,
.hero-copy-block p,
.section-head p {
  margin: 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-actions-compact {
  align-self: end;
  margin-top: 0;
}

.travel-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 1.2rem;
  align-items: start;
}

.travel-hero-main {
  display: grid;
  gap: 1rem;
}

.hero-more-row {
  display: flex;
  justify-content: flex-start;
}

.hero-showcase,
.hero-side-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-side-panel {
  grid-template-columns: 1fr;
  border: 1px solid rgba(251, 247, 239, 0.1);
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 10, 14, 0.56);
  box-shadow: var(--shadow);
}

.hero-metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-stat,
.hero-feature,
.summary-bar,
.city-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(251, 247, 239, 0.055);
  box-shadow: var(--shadow);
}

.hero-stat {
  min-height: 112px;
  border-radius: 8px;
  padding: 1rem;
}

.hero-stat-wide {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(242, 193, 78, 0.16), rgba(66, 211, 146, 0.08)),
    rgba(251, 247, 239, 0.06);
}

.hero-stat span {
  display: block;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 0.9;
}

.hero-stat p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.hero-feature-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.side-panel-block {
  display: grid;
  gap: 0.75rem;
}

.hero-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hero-feature {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  padding: 1rem;
  text-decoration: none;
}

.hero-feature-list .hero-feature {
  min-height: 116px;
}

.hero-feature::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82));
  content: '';
}

.hero-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-feature span,
.hero-feature small {
  position: relative;
  z-index: 2;
}

.hero-feature span {
  font-weight: 900;
}

.hero-feature small {
  margin-top: 0.2rem;
  color: var(--muted-strong);
}

.loading-text {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}

.section-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-head {
  max-width: 680px;
}

.hero-travel .section-head {
  max-width: 920px;
}

.hero-travel .section-head h1 {
  margin: 1rem 0 1rem;
  max-width: 980px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.section-head h2 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.filters,
.filter-panel {
  display: grid;
  gap: 1rem;
}

.filter-panel,
.filters {
  border: 1px solid rgba(251, 247, 239, 0.1);
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 10, 14, 0.5);
}

.filters {
  margin-bottom: 1rem;
}

.filters input,
.filters select,
.filter-row input,
.filter-row select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(251, 247, 239, 0.14);
  border-radius: 8px;
  background-color: var(--control);
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.filters input:hover,
.filters select:hover,
.filter-row input:hover,
.filter-row select:hover {
  border-color: rgba(251, 247, 239, 0.23);
  background-color: var(--control-hover);
}

.filters input:focus,
.filters select:focus,
.filter-row input:focus,
.filter-row select:focus {
  border-color: rgba(242, 193, 78, 0.7);
  box-shadow: 0 0 0 4px rgba(242, 193, 78, 0.12);
}

.filters input::placeholder,
.filter-row input::placeholder {
  color: rgba(199, 189, 178, 0.8);
}

.filters select,
.filter-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  color-scheme: dark;
  cursor: pointer;
  padding-right: 2.6rem;
}

.filters select option,
.filter-row select option {
  background: #18141b;
  color: #fbf7ef;
}

.filters select option:checked,
.filter-row select option:checked {
  background: #2a1d17;
  color: #f2c14e;
}

.filter-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.filter-group-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.filter-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(180px, 1fr));
  gap: 1rem;
}

.filter-row-listings {
  grid-template-columns: minmax(260px, 1.7fr) repeat(4, minmax(150px, 1fr));
}

.filter-row label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.summary-bar {
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  background:
    linear-gradient(90deg, rgba(242, 193, 78, 0.12), rgba(66, 211, 146, 0.06)),
    rgba(251, 247, 239, 0.045);
}

.summary-bar p,
.no-results {
  margin: 0;
  color: var(--muted);
}

.no-results {
  display: none;
  margin-top: 1rem;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.travel-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.travel-guide-grid-hero {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.events-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 1.2rem;
  align-items: start;
}

.directory-filter-row {
  grid-template-columns: minmax(260px, 1.6fr) minmax(180px, 0.7fr);
}

.event-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(251, 247, 239, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(251, 247, 239, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.directory-card {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(251, 247, 239, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(251, 247, 239, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.travel-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  min-height: 100%;
  border: 1px solid rgba(251, 247, 239, 0.12);
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(251, 247, 239, 0.045);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.travel-card:hover {
  border-color: rgba(242, 193, 78, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.travel-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.travel-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.1;
}

.travel-count {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  white-space: nowrap;
  border: 1px solid rgba(242, 193, 78, 0.22);
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  background: rgba(242, 193, 78, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.travel-card-section {
  display: grid;
  gap: 0.45rem;
}

.travel-intro {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.92rem;
  line-height: 1.5;
}

.travel-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.travel-facts span {
  border: 1px solid rgba(66, 211, 146, 0.18);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: rgba(66, 211, 146, 0.08);
  color: #b9f4d4;
  font-size: 0.74rem;
  font-weight: 900;
}

.travel-card-section strong,
.travel-tips strong {
  color: var(--muted-strong);
  font-size: 0.86rem;
}

.travel-card-section p,
.travel-tips p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.travel-card-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hotel-picks {
  display: grid;
  gap: 0.45rem;
}

.hotel-picks a {
  display: grid;
  gap: 0.12rem;
  border: 1px solid rgba(251, 247, 239, 0.1);
  border-radius: 8px;
  padding: 0.58rem 0.62rem;
  background: rgba(251, 247, 239, 0.045);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.hotel-picks a:hover {
  border-color: rgba(242, 193, 78, 0.28);
  background: rgba(242, 193, 78, 0.08);
}

.hotel-picks span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.hotel-picks strong {
  color: var(--text);
  font-size: 0.88rem;
}

.travel-card-section li {
  border: 1px solid rgba(251, 247, 239, 0.1);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
  background: rgba(251, 247, 239, 0.055);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.travel-tips {
  display: grid;
  gap: 0.5rem;
  border-top: 1px solid rgba(251, 247, 239, 0.1);
  padding-top: 0.75rem;
}

.travel-tips strong {
  display: block;
  margin-bottom: 0.16rem;
}

.travel-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(251, 247, 239, 0.12);
  border-radius: 8px;
  padding: 0.48rem 0.72rem;
  background: rgba(251, 247, 239, 0.055);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.map-link:hover {
  border-color: rgba(242, 193, 78, 0.25);
  color: var(--accent);
}

.directory-card:hover {
  border-color: rgba(242, 193, 78, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.directory-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.directory-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(242, 193, 78, 0.16), rgba(66, 211, 146, 0.14)),
    var(--surface-strong);
}

.directory-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(11, 9, 12, 0.82));
  content: '';
}

.directory-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.directory-card:hover .directory-media img {
  transform: scale(1.035);
}

.directory-media-fallback {
  display: grid;
  place-items: center;
}

.directory-media-fallback span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(251, 247, 239, 0.2);
  border-radius: 50%;
  background: rgba(11, 9, 12, 0.46);
  color: var(--accent);
  font-size: 2rem;
  font-weight: 900;
}

.directory-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1rem;
  padding: 1rem;
}

.directory-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.directory-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.15;
}

.directory-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.directory-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.directory-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(251, 247, 239, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.62rem;
  background: rgba(251, 247, 239, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.directory-stats strong {
  margin-right: 0.25rem;
  color: var(--muted-strong);
}

.directory-meta {
  display: grid;
  gap: 0.42rem;
  align-content: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.directory-meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-tile:hover {
  border-color: rgba(242, 193, 78, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

.event-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(155, 107, 255, 0.22), rgba(66, 211, 146, 0.18)),
    var(--surface-strong);
  text-decoration: none;
}

.event-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.event-tile:hover .event-media img {
  transform: scale(1.035);
}

.event-media-fallback {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--muted);
  font-weight: 900;
}

.event-date-chip {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: grid;
  min-width: 76px;
  border: 1px solid rgba(251, 247, 239, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(11, 9, 12, 0.82);
  text-align: center;
  backdrop-filter: blur(10px);
}

.event-date-chip span {
  padding: 0.28rem 0.55rem;
  background: rgba(242, 193, 78, 0.16);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-date-chip strong {
  padding: 0.42rem 0.55rem;
  color: var(--text);
  font-size: 0.9rem;
}

.event-tile-body {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  padding: 1rem;
}

.event-tile h3 {
  margin: 0.75rem 0 0.35rem;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.event-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.event-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-size: 0.74rem;
  font-weight: 900;
}

.status-available {
  background: rgba(66, 211, 146, 0.16);
  color: #8ef0bf;
}

.status-not-many-left,
.status-alert {
  background: rgba(242, 193, 78, 0.18);
  color: #ffe09a;
}

.status-soldout {
  background: rgba(240, 100, 100, 0.18);
  color: #ffaaaa;
}

.status-partner {
  background: rgba(155, 107, 255, 0.18);
  color: #d6c5ff;
}

.event-facts {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.event-facts p {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 0.65rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.event-facts strong {
  color: var(--muted-strong);
  font-weight: 800;
}

.event-facts a {
  color: var(--accent);
  text-decoration: none;
}

.event-facts a:hover {
  text-decoration: underline;
}

.section-cities {
  padding-top: 1rem;
}

.city-section {
  display: grid;
  gap: 1.5rem;
}

.city-section-compact {
  position: sticky;
  top: 96px;
  gap: 1rem;
}

.city-section-compact .section-head h2 {
  font-size: 1.45rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.city-grid-compact {
  grid-template-columns: 1fr;
}

.city-card {
  display: grid;
  gap: 0.45rem;
  border-radius: 8px;
  padding: 1.2rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.city-card:hover {
  border-color: rgba(242, 193, 78, 0.3);
  background:
    linear-gradient(135deg, rgba(242, 193, 78, 0.12), rgba(66, 211, 146, 0.05)),
    rgba(251, 247, 239, 0.06);
  transform: translateY(-1px);
}

.city-card span {
  font-size: 1.1rem;
  font-weight: 900;
}

.city-card strong {
  color: var(--accent);
  font-size: 0.9rem;
}

.page-hero {
  padding: 4rem 0 1.5rem;
}

.hero-copy-block {
  max-width: 880px;
}

.events-panel {
  padding-top: 2rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(8, 7, 9, 0.55);
}

.footer-product-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 2rem;
  border: 1px solid rgba(242, 193, 78, 0.28);
  border-radius: 8px;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, rgba(242, 193, 78, 0.16), rgba(66, 211, 146, 0.07)),
    rgba(251, 247, 239, 0.055);
  box-shadow: var(--shadow);
}

.footer-product-callout h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.footer-product-callout p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-grid-simple {
  grid-template-columns: 1.4fr 1fr;
}

.footer-grid p {
  max-width: 420px;
  color: var(--muted);
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--text);
}

.footer-bottom {
  padding: 1.3rem 0;
  color: rgba(199, 189, 178, 0.75);
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .travel-hero-layout,
  .events-layout {
    grid-template-columns: 1fr;
  }

  .city-section-compact {
    position: static;
  }

  .tile-grid,
  .directory-grid,
  .travel-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .header-inner {
    align-items: stretch;
    flex-direction: column;
    padding: 1rem 0;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-header .button {
    align-self: flex-start;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-showcase,
  .hero-feature-grid,
  .travel-guide-grid-hero,
  .filter-group,
  .filter-group-wide,
  .filter-row,
  .filter-row-listings,
  .directory-filter-row,
  .city-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .footer-product-callout {
    align-items: start;
    flex-direction: column;
  }

}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .hero-copy h1,
  .hero-copy-block h1 {
    font-size: 2.6rem;
  }

  .tile-grid,
  .directory-grid,
  .travel-guide-grid {
    grid-template-columns: 1fr;
  }

  .event-facts p {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
