:root {
  --gold: #b88a24;
  --gold-2: #d1a238;
  --gold-dark: #805f15;
  --charcoal: #121212;
  --muted: #5f6368;
  --soft: #fbf8f1;
  --cream: #fffdf8;
  --line: #e7dcc9;
  --green: #214f3a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0,0,0,.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: #111;
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.035);
}

.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 238px;
}

.brand img {
  width: 70px;
  height: auto;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: .08em;
  line-height: 1.05;
}

.brand span {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .24em;
  line-height: 1.05;
}

.menu {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 800;
}

.menu a {
  text-decoration: none;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--gold-dark);
}

.btn,
.menu .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #111;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  box-shadow: 0 14px 28px rgba(184,138,36,.20);
}

.btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.28);
  color: #fff !important;
  box-shadow: none !important;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--charcoal);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.page-hero {
  background:
    radial-gradient(circle at 88% 16%, rgba(184,138,36,.18), transparent 26%),
    linear-gradient(135deg, #111, #202018);
  color: #fff;
  padding: 104px 0;
}

.kicker,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(184,138,36,.14);
  color: #f2d37d;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 22px;
}

.page-hero h1 {
  font-size: clamp(54px, 7vw, 96px);
  line-height: .96;
  letter-spacing: -.07em;
  margin: 0 0 24px;
  max-width: 900px;
}

.page-hero p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,.84);
  max-width: 760px;
  margin: 0;
}

.section {
  padding: 84px 0;
  background: #fff;
}

.section.alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -.055em;
  margin: 0 0 18px;
  max-width: 860px;
}

.lead {
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
  max-width: 760px;
  margin: 0 0 34px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(0,0,0,.05);
}

.card.featured {
  grid-column: span 2;
  background:
    radial-gradient(circle at 100% 0%, rgba(184,138,36,.12), transparent 34%),
    #fff;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -.025em;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.notice {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffaf0;
  padding: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(0,0,0,.04);
}

.timeline-date {
  font-weight: 900;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(184,138,36,.16), transparent 32%),
    linear-gradient(135deg, #111, #202018);
  color: #fff;
  border-radius: 32px;
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0 0 14px;
  color: #fff;
}

.cta-panel p {
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}

.footer {
  background: #111;
  color: #fff;
  padding: 34px 0;
}

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

.footer p {
  margin: 0 0 10px;
  line-height: 1.55;
}

.footer a {
  color: #f2d37d;
  font-weight: 900;
  text-decoration: none;
}

.footer-right {
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .menu {
    gap: 9px;
    font-size: 12px;
  }

  .menu .btn {
    padding: 0 14px;
  }
}

@media (max-width: 980px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 12px 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .menu {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .nav-inner.menu-open .menu {
    display: grid;
  }

  .menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
  }

  .menu .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .card.featured {
    grid-column: span 1;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-right {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 100%);
  }

  .topbar-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
  }

  .brand img {
    width: 58px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand span {
    font-size: 12px;
  }

  .page-hero,
  .section {
    padding: 68px 0;
  }

  .page-hero h1,
  .section h2 {
    font-size: clamp(42px, 12vw, 58px);
  }
}
