:root {
  --ink: #172026;
  --muted: #61707c;
  --paper: #f7f4ec;
  --surface: #ffffff;
  --line: rgba(23, 32, 38, 0.14);
  --brick: #b64235;
  --copper: #c8793f;
  --forest: #1f6f63;
  --river: #2a6f97;
  --gold: #d8a331;
  --night: #20323a;
  --shadow: 0 18px 50px rgba(31, 45, 52, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brick), var(--forest));
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(182, 66, 53, 0.24);
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 6px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(31, 111, 99, 0.1);
}

.hero {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(23, 32, 38, 0.9), rgba(23, 32, 38, 0.45) 52%, rgba(23, 32, 38, 0.18)),
    radial-gradient(circle at 78% 22%, rgba(216, 163, 49, 0.45), transparent 24%),
    linear-gradient(135deg, #20323a 0%, #1f6f63 46%, #b64235 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background:
    linear-gradient(145deg, transparent 0 22%, rgba(255, 255, 255, 0.12) 22% 23%, transparent 23% 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.22) 0 2px, transparent 2px 78px);
  opacity: 0.8;
}

.hero-inner,
.page-hero-inner,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: 42px;
  align-items: center;
  padding: 94px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 86px);
}

h2 {
  font-size: clamp(30px, 4vw, 52px);
}

h3 {
  font-size: 24px;
}

.lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.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 transparent;
  border-radius: 6px;
  background: var(--gold);
  color: #172026;
  font-weight: 800;
}

.button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.city-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.city-map {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, transparent 0 33%, rgba(255,255,255,0.16) 33% 36%, transparent 36%),
    linear-gradient(30deg, transparent 0 48%, rgba(42, 111, 151, 0.9) 48% 54%, transparent 54%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 2px, transparent 2px 46px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 46px),
    rgba(23, 32, 38, 0.48);
}

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(216, 163, 49, 0.2);
}

.pin.one { left: 24%; top: 36%; }
.pin.two { left: 56%; top: 48%; background: #fff; }
.pin.three { left: 72%; top: 28%; background: var(--copper); }
.pin.four { left: 42%; top: 72%; background: var(--forest); }

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  padding: 26px;
  background: var(--surface);
}

.fact strong {
  display: block;
  color: var(--brick);
  font-size: 30px;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: #fff;
}

.section.dark {
  color: #fff;
  background: var(--night);
}

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

.section-head p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  min-height: 100%;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 32px rgba(23, 32, 38, 0.06);
}

.dark .card {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.card p,
.timeline p,
.route-step p,
.place-info p {
  color: var(--muted);
}

.dark .card p,
.dark .timeline p {
  color: rgba(255, 255, 255, 0.74);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--forest);
  background: rgba(31, 111, 99, 0.1);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: stretch;
}

.visual-block {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12) 0 18%, transparent 18% 100%),
    linear-gradient(35deg, rgba(42,111,151,0.82), rgba(31,111,99,0.82)),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(255,255,255,0.2) 46px 48px);
}

.visual-block::before,
.visual-block::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 58%;
  background:
    linear-gradient(to top, rgba(23,32,38,0.8), rgba(23,32,38,0.25)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,0.24) 34px 38px);
  clip-path: polygon(0 100%, 0 30%, 11% 30%, 11% 14%, 22% 14%, 22% 38%, 36% 38%, 36% 24%, 51% 24%, 51% 8%, 64% 8%, 64% 36%, 78% 36%, 78% 18%, 100% 18%, 100% 100%);
}

.visual-block::after {
  left: 28%;
  right: 0;
  height: 42%;
  opacity: 0.64;
}

.story {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story p {
  color: var(--muted);
  font-size: 18px;
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(23,32,38,0.92), rgba(23,32,38,0.52)),
    linear-gradient(135deg, var(--night), var(--river) 55%, var(--brick));
}

.page-hero-inner {
  padding: 82px 0;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.year {
  color: var(--brick);
  font-size: 34px;
  font-weight: 900;
}

.place-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.place-visual {
  min-height: 220px;
  background:
    linear-gradient(135deg, rgba(23,32,38,0.18), rgba(23,32,38,0.0)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 2px, transparent 2px 34px),
    linear-gradient(135deg, var(--river), var(--forest));
}

.place-visual.warm {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 2px, transparent 2px 40px),
    linear-gradient(135deg, var(--brick), var(--gold));
}

.place-visual.darkish {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.16) 0 2px, transparent 2px 36px),
    linear-gradient(135deg, var(--night), var(--river));
}

.place-info {
  padding: 24px;
}

.route {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.route:last-child {
  border-bottom: 0;
}

.route-time {
  color: var(--forest);
  font-weight: 900;
}

.route-step {
  padding-left: 22px;
  border-left: 4px solid var(--gold);
}

.event-list {
  display: grid;
  gap: 14px;
}

.event {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event-date {
  color: var(--brick);
  font-weight: 900;
  text-transform: uppercase;
}

.event p {
  margin: 6px 0 0;
  color: var(--muted);
}

.pill {
  padding: 8px 10px;
  color: var(--river);
  background: rgba(42, 111, 151, 0.1);
  border-radius: 6px;
  font-weight: 800;
  white-space: nowrap;
}

.columns {
  columns: 2 320px;
  column-gap: 44px;
}

.columns p {
  break-inside: avoid;
  margin-top: 0;
  color: var(--muted);
}

.wide-panel {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.wide-panel p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.mini-list div {
  padding: 16px;
  background: rgba(31, 111, 99, 0.08);
  border-left: 4px solid var(--forest);
  border-radius: 6px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  color: var(--brick);
  font-size: 34px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.districts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.district {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(23,32,38,0.92), rgba(23,32,38,0.14)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 2px, transparent 2px 42px),
    linear-gradient(135deg, var(--river), var(--copper));
}

.district:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(23,32,38,0.9), rgba(23,32,38,0.12)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.18) 0 2px, transparent 2px 38px),
    linear-gradient(135deg, var(--forest), var(--night));
}

.district:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(23,32,38,0.9), rgba(23,32,38,0.12)),
    linear-gradient(135deg, var(--brick), var(--gold));
}

.district:nth-child(4) {
  background:
    linear-gradient(0deg, rgba(23,32,38,0.9), rgba(23,32,38,0.12)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.16) 0 2px, transparent 2px 36px),
    linear-gradient(135deg, var(--night), var(--river));
}

.district p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
}

.table-like {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 1fr;
  gap: 1px;
  background: var(--line);
}

.table-row > div {
  padding: 18px;
  background: #fff;
}

.table-row strong {
  color: var(--brick);
}

.quote-band {
  padding: 54px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(23,32,38,0.94), rgba(31,111,99,0.84)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 2px, transparent 2px 60px);
  border-radius: var(--radius);
}

.quote-band p {
  max-width: 900px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.8);
  font-size: 20px;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.season {
  padding: 24px;
  background: #fff;
  border-top: 6px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 32, 38, 0.08);
}

.season:nth-child(2) { border-top-color: var(--forest); }
.season:nth-child(3) { border-top-color: var(--river); }
.season:nth-child(4) { border-top-color: var(--brick); }

.season p {
  color: var(--muted);
}

.dense-text p {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mega-card {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mega-card h3 {
  font-size: 22px;
}

.mega-card p,
.faq-item p,
.guide-block p,
.note p,
.portrait-card p {
  color: var(--muted);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--brick);
  border-radius: 8px;
  font-weight: 900;
}

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

.guide-block {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(23, 32, 38, 0.07);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item h3 {
  font-size: 21px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 18px;
}

.mosaic-tile {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(23,32,38,0.9), rgba(23,32,38,0.18)),
    linear-gradient(135deg, var(--river), var(--gold));
}

.mosaic-tile:nth-child(2n) {
  background:
    linear-gradient(0deg, rgba(23,32,38,0.88), rgba(23,32,38,0.16)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.16) 0 2px, transparent 2px 44px),
    linear-gradient(135deg, var(--brick), var(--night));
}

.mosaic-tile:nth-child(3n) {
  background:
    linear-gradient(0deg, rgba(23,32,38,0.88), rgba(23,32,38,0.16)),
    linear-gradient(135deg, var(--forest), var(--river));
}

.mosaic-tile.big {
  grid-row: span 2;
}

.mosaic-tile p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
}

.note {
  padding: 30px;
  background: rgba(216, 163, 49, 0.12);
  border: 1px solid rgba(216, 163, 49, 0.32);
  border-radius: var(--radius);
}

.portrait-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.portrait-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.avatar {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    radial-gradient(circle at 34% 26%, rgba(255,255,255,0.85), transparent 18%),
    linear-gradient(135deg, var(--river), var(--brick));
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 0;
}

.check-list li {
  list-style: none;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--forest);
  font-weight: 900;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #172026;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner strong {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .nav,
  .hero-inner,
  .feature-band,
  .footer-inner {
    display: block;
  }

  .nav {
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .city-panel,
  .visual-block {
    margin-top: 30px;
  }

  .fact-strip,
  .grid.three,
  .grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .event {
    grid-template-columns: 1fr;
  }

  .split,
  .districts,
  .metric-grid,
  .season-grid,
  .mega-grid,
  .guide-grid,
  .portrait-row,
  .check-list {
    grid-template-columns: 1fr 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .lead,
  .page-hero p {
    font-size: 18px;
  }

  .fact-strip,
  .grid.three,
  .grid.two,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .timeline-item,
  .card,
  .story,
  .event {
    padding: 20px;
  }

  .route {
    grid-template-columns: 1fr;
  }

  .split,
  .districts,
  .metric-grid,
  .season-grid,
  .mega-grid,
  .guide-grid,
  .portrait-row,
  .check-list,
  .mosaic {
    grid-template-columns: 1fr;
  }

  .quote-band {
    padding: 28px;
  }

  .portrait-card {
    grid-template-columns: 1fr;
  }
}
