:root {
  --ink: #221916;
  --muted: #665a52;
  --paper: #f7f0e4;
  --stone: #ded0bd;
  --clay: #9f4e35;
  --clay-dark: #673122;
  --river: #24677b;
  --cypress: #254a37;
  --gold: #c28b2c;
  --white: #fffaf1;
  --shadow: 0 18px 60px rgba(35, 21, 13, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(19, 14, 12, 0.72), rgba(19, 14, 12, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 250, 241, 0.68);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.1);
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(22, 13, 10, 0.78) 0%, rgba(22, 13, 10, 0.48) 39%, rgba(22, 13, 10, 0.1) 74%),
    linear-gradient(0deg, rgba(34, 25, 22, 0.66) 0%, rgba(34, 25, 22, 0) 38%);
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  padding: clamp(132px, 18vh, 190px) 0 170px;
  margin-left: clamp(18px, 7vw, 104px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.band h2,
.visit h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(4.4rem, 13vw, 10rem);
  line-height: 0.86;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  color: rgba(255, 250, 241, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 250, 241, 0.45);
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 250, 241, 0.12);
  backdrop-filter: blur(8px);
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 68px);
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(560px, calc(100% - 36px));
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 6px;
  background: rgba(28, 18, 13, 0.58);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid rgba(255, 250, 241, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  font-family: Cinzel, Georgia, serif;
  font-size: 2rem;
}

.hero-panel span {
  display: block;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.band,
.section,
.visit {
  padding: clamp(66px, 10vw, 120px) clamp(18px, 6vw, 84px);
}

.intro,
.civic {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(26px, 7vw, 96px);
  align-items: start;
  background: var(--white);
}

.intro h2,
.section h2,
.civic h2,
.visit h2 {
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.intro > p {
  max-width: 680px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--clay-dark);
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.district-card {
  min-height: 310px;
  padding: 22px;
  border: 1px solid rgba(103, 49, 34, 0.18);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(222, 208, 189, 0.58));
}

.district-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  border-radius: 50%;
  color: var(--white);
  background: var(--clay);
  font-family: Cinzel, Georgia, serif;
  font-weight: 700;
}

.district-card h3,
.feature-list h3,
.timeline h3 {
  margin: 0 0 10px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.32rem;
}

.district-card p,
.feature-list p,
.timeline p,
.visit-copy p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.map-section {
  padding: clamp(66px, 10vw, 120px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.74), rgba(222, 208, 189, 0.6)),
    var(--stone);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: 32px;
  border: 1px dashed rgba(103, 49, 34, 0.34);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.58);
  box-shadow: 0 12px 36px rgba(35, 21, 13, 0.08);
  text-align: center;
}

.map-placeholder p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.civic {
  background:
    linear-gradient(90deg, rgba(36, 103, 123, 0.12), rgba(194, 139, 44, 0.12)),
    var(--stone);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(34, 25, 22, 0.18);
}

.calendar {
  background: var(--paper);
}

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

.timeline article {
  padding: 24px;
  border-left: 5px solid var(--river);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(35, 21, 13, 0.08);
}

.timeline time {
  display: block;
  margin-bottom: 28px;
  color: var(--clay-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 74px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 74, 55, 0.95), rgba(36, 103, 123, 0.92)),
    var(--cypress);
}

.visit .section-kicker,
.visit-copy p,
.visit-details span {
  color: rgba(255, 250, 241, 0.74);
}

.visit-copy p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.visit-details {
  display: grid;
  gap: 12px;
}

.visit-details div {
  padding: 20px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 6px;
  background: rgba(255, 250, 241, 0.1);
}

.visit-details span,
.visit-details strong {
  display: block;
}

.visit-details span {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visit-details strong {
  font-family: Cinzel, Georgia, serif;
  font-size: 1.2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 84px);
  color: var(--white);
  background: var(--ink);
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

  .hero-content {
    padding-top: 124px;
    margin-left: 18px;
  }

  .hero-panel {
    left: 18px;
    right: auto;
    grid-template-columns: 1fr;
    width: min(360px, calc(100% - 36px));
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .intro,
  .civic,
  .visit {
    grid-template-columns: 1fr;
  }

  .district-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 860px;
  }

  .hero h1 {
    font-size: clamp(4rem, 23vw, 6.2rem);
  }

  .button {
    width: 100%;
  }

  .district-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .district-card {
    min-height: 240px;
  }

  .district-number {
    margin-bottom: 36px;
  }

  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
