:root {
  --saffron: #d9822b;
  --saffron-soft: #f5e3d0;
  --blue-deep: #0f2f57;
  --blue-mid: #1f4f86;
  --bg: #fffaf5;
  --text: #1d2430;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 28px rgba(16, 34, 58, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdf8 0%, var(--bg) 55%, #ffffff 100%);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Merriweather", serif;
  color: var(--blue-deep);
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-banner {
  width: 100%;
  padding: 12px 24px;
}

.top-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.top-banner-col {
  display: flex;
  align-items: center;
}

.top-banner-left {
  justify-content: flex-start;
}

.top-banner-center {
  justify-content: center;
}

.top-banner-right {
  justify-content: flex-end;
}

.top-banner-logo {
  max-height: 60px;
  width: auto;
  height: auto;
}

.top-banner-map {
  max-height: 70px;
  width: auto;
  height: auto;
}

.top-banner-text {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.45;
}

.section {
  padding: 4rem 0;
}

.section--tint {
  background: linear-gradient(180deg, #fff 0%, var(--saffron-soft) 100%);
}

.hero {
  position: relative;
  background: radial-gradient(
      circle at top right,
      rgba(217, 130, 43, 0.2),
      transparent 42%
    ),
    linear-gradient(160deg, #fff5e7 0%, #fff 65%);
  border-bottom: 1px solid rgba(15, 47, 87, 0.08);
}

.hero__content {
  padding: 6rem 0 5rem;
  max-width: 780px;
}

.hero__eyebrow {
  color: var(--saffron);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.hero__meta {
  display: grid;
  gap: 0.3rem;
  margin: 1.2rem 0 2rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 47, 87, 0.24);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #0a2342;
}

.btn--secondary {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 10px 20px rgba(217, 130, 43, 0.3);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: #c16f20;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.25rem 1rem;
  border: 1px solid rgba(15, 47, 87, 0.06);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5.6rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(var(--blue-mid), var(--saffron));
}

.timeline__item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 5.2rem;
  top: 0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--saffron);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(217, 130, 43, 0.2);
}

.timeline__time {
  color: var(--blue-deep);
  font-weight: 700;
}

.footer {
  background: var(--blue-deep);
  color: #f4f7fb;
  padding: 2rem 0;
}

.footer__content {
  display: grid;
  gap: 0.15rem;
}

.footer p {
  margin: 0.2rem 0;
}

@media (max-width: 900px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .section {
    padding: 3rem 0;
  }

  .hero__content {
    padding: 4.5rem 0 3.5rem;
  }

  .grid--2,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 4.7rem;
  }

  .timeline__item {
    grid-template-columns: 4.2rem 1fr;
    gap: 0.8rem;
  }

  .timeline__item::before {
    left: 4.3rem;
  }
}

@media (max-width: 900px) {
  .top-banner-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .top-banner-center {
    align-items: flex-start;
  }

  .top-banner-center {
    justify-content: flex-start;
  }

  .top-banner-right {
    justify-content: flex-start;
  }

  .top-banner-text {
    text-align: left;
  }

  .top-banner-logo {
    max-height: 54px;
  }

  .top-banner-map {
    max-height: 60px;
  }

  .top-banner {
    padding: 12px 20px;
  }
}

.footer a,
.footer a:visited {
  color: #ffffff !important;
  text-decoration: none;
}