:root {
  --bg: #f4efe6;
  --paper: #fffaf2;
  --surface: rgba(255, 250, 242, 0.9);
  --ink: #1c2321;
  --muted: #5c655f;
  --line: rgba(28, 35, 33, 0.12);
  --accent: #0f766e;
  --accent-strong: #0b5f58;
  --accent-soft: rgba(15, 118, 110, 0.12);
  --shadow: 0 20px 45px rgba(28, 35, 33, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.08), transparent 32%),
    linear-gradient(180deg, #efe7da 0%, var(--bg) 40%, #f7f2eb 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 32px;
}

.brand {
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.top-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
}

.hero {
  display: block;
}

.hero-copy,
.hero-panel,
.info-card,
.timeline-step,
.city-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 40px;
}

.hero-panel {
  padding: 28px;
  align-self: end;
  background: linear-gradient(180deg, var(--paper) 0%, #f2f6f2 100%);
}

.eyebrow,
.panel-label {
  margin: 0 0 14px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: none;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.lede,
.info-card p,
.timeline-step p,
.city-card p,
.panel-list,
.top-nav a {
  font-family: "Trebuchet MS", Arial, sans-serif;
}

.lede {
  margin: 18px 0 0;
  max-width: 44rem;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.65;
}

.hero-note {
  margin: 16px 0 0;
  max-width: 42rem;
  color: var(--muted);
  font: 400 1rem/1.7 "Trebuchet MS", Arial, sans-serif;
}

.lede a,
.legal-block a,
.footer-links a,
.city-card a {
  color: var(--accent-strong);
}

.top-nav a:hover,
.footer-links a:hover,
.city-card a:hover,
.lede a:hover,
.legal-block a:hover {
  color: var(--accent);
}

.content-block {
  padding-top: 56px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font: 400 0.95rem/1.6 "Trebuchet MS", Arial, sans-serif;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  max-width: 56ch;
}

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

.footer-links a {
  text-decoration: none;
  font-weight: 700;
}

.legal-shell {
  padding-bottom: 48px;
}

.legal-page {
  padding-bottom: 24px;
  display: grid;
  gap: 22px;
}

.legal-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.legal-block h2 {
  margin-bottom: 10px;
}

.legal-block p {
  margin: 0 0 14px;
  color: var(--muted);
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-intro {
  max-width: 60ch;
}

.legal-note {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font: 700 0.92rem/1.4 "Trebuchet MS", Arial, sans-serif;
}

.section-heading {
  margin-bottom: 24px;
}

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

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

.info-card,
.city-card {
  padding: 24px;
}

.info-card p,
.city-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.city-card a {
  text-decoration: none;
}

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

.timeline-step {
  position: relative;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-weight: 700;
}

@media (max-width: 900px) {
  .timeline,
  .card-grid,
  .card-grid.three-up {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 200px;
  }

  .hero-copy {
    padding: 28px;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1120px);
  }

  h1 {
    max-width: none;
  }

  .hero-copy,
  .hero-panel,
  .info-card,
  .timeline-step,
  .city-card {
    border-radius: 20px;
  }
}
