:root {
  --ink: #1d2433;
  --muted: #687184;
  --line: #dfe5ef;
  --surface: #ffffff;
  --wash: #f6f8fb;
  --brand: #126b5f;
  --brand-dark: #0d4f47;
  --accent: #f4b740;
  --coral: #e8614f;
  --shadow: 0 18px 48px rgba(29, 36, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
input,
select,
button {
  font: inherit;
}

.site-header,
.site-footer,
.section {
  padding-inline: clamp(20px, 5vw, 72px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(150px, 16vw, 190px);
  height: auto;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
}

.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.header-action,
.cta-band a,
.search-panel button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
  cursor: pointer;
}

.header-action {
  padding: 0 18px;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(15, 28, 39, 0.82), rgba(15, 28, 39, 0.42)),
    url("https://images.unsplash.com/photo-1516627145497-ae6968895b74?auto=format&fit=crop&w=2200&q=85") center/cover;
}

.hero-content {
  width: min(760px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.13rem;
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) auto;
  gap: 12px;
  width: min(920px, 100%);
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.search-panel button {
  align-self: end;
  min-width: 148px;
  padding: 0 18px;
}

.section {
  padding-block: clamp(52px, 7vw, 96px);
}

.search-results-section {
  background: #fff;
}

.venue-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.venue-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(29, 36, 51, 0.08);
}

.venue-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.venue-card > div,
.empty-results {
  padding: 22px;
}

.venue-card p,
.empty-results p {
  color: var(--muted);
}

.venue-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.venue-card-meta span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.venue-card-link {
  color: var(--brand-dark);
  font-weight: 850;
}

.empty-results {
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: var(--wash);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-block: 0;
  background: var(--line);
}

.stat {
  min-height: 124px;
  padding: 28px;
  background: var(--wash);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.stat span,
.section-heading p,
.split-section p,
.category-card p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(29, 36, 51, 0.08);
}

.category-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-card div {
  padding: 22px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--wash);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-list a {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.city-list a:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background: var(--brand-dark);
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.cta-band a {
  min-width: 132px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--accent);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 440px;
  margin-bottom: 0;
}

.venue-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: clamp(44px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background: var(--wash);
}

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

.venue-summary {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.15rem;
}

.venue-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.venue-meta-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 800;
}

.venue-hero-image,
.venue-hero-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.venue-hero-image {
  display: block;
  object-fit: cover;
}

.venue-hero-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--muted);
  background: #fff;
  border: 1px dashed var(--line);
  text-align: center;
  font-weight: 800;
}

.venue-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.venue-main-card,
.venue-contact-card,
.facts-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(29, 36, 51, 0.08);
}

.venue-main-card,
.venue-contact-card {
  padding: clamp(24px, 4vw, 38px);
}

.venue-main-card p,
.venue-contact-card p,
.muted-copy {
  color: var(--muted);
}

.info-callout {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: var(--wash);
}

.info-callout p {
  margin-bottom: 0;
}

.venue-contact-card h2 {
  font-size: 1.65rem;
}

.detail-action,
.detail-text-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  border-radius: 8px;
  font-weight: 850;
}

.detail-action {
  color: #fff;
  background: var(--brand);
}

.detail-action-secondary {
  color: var(--ink);
  background: var(--accent);
}

.detail-text-link {
  color: var(--brand-dark);
  border: 1px solid var(--line);
}

.venue-gallery-section {
  background: var(--wash);
}

.venue-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.venue-gallery img,
.venue-gallery-item {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.venue-gallery-item {
  position: relative;
  margin: 0;
}

.venue-gallery img {
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.venue-gallery-item figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  color: #fff;
  background: rgba(10, 15, 24, 0.68);
  font-size: 0.78rem;
  line-height: 1.25;
}

.venue-facts-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.facts-grid {
  display: grid;
  gap: 16px;
}

.facts-grid article {
  padding: 22px;
}

.facts-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.facts-grid li {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--muted);
  font-weight: 750;
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
    min-height: auto;
    padding-block: 14px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: auto;
  }

  .search-panel,
  .intro-band,
  .venue-card-grid,
  .category-grid,
  .split-section,
  .venue-hero,
  .venue-detail-layout,
  .venue-gallery,
  .venue-facts-section {
    grid-template-columns: 1fr;
  }

  .search-panel button {
    width: 100%;
  }

  .cta-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 150px;
  }

  .header-action {
    width: 100%;
  }

  .site-nav {
    font-size: 0.88rem;
  }

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