:root {
  --bg: #081c18;
  --bg2: #0b2721;
  --paper: #f3efe6;
  --ink: #0b1b18;
  --muted: rgba(11, 27, 24, 0.68);
  --mist: rgba(243, 239, 230, 0.18);
  --line: rgba(243, 239, 230, 0.2);
  --accent: #d9a441;
  --accent2: #6fb8a8;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Spline Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--paper);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(111, 184, 168, 0.28), transparent 55%),
    radial-gradient(900px 500px at 85% 5%, rgba(217, 164, 65, 0.22), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  padding: 10px 12px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
}

.skip:focus {
  left: 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(8, 28, 24, 0.72);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.9), rgba(111, 184, 168, 0.82));
  color: #06201b;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-sub {
  font-size: 12px;
  opacity: 0.78;
}

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

.nav-link {
  font-size: 14px;
  opacity: 0.88;
}

.nav-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(217, 164, 65, 0.46);
  background: rgba(217, 164, 65, 0.12);
}

.nav-cta:hover {
  background: rgba(217, 164, 65, 0.18);
}

.page {
  overflow-x: hidden;
}

.hero {
  padding: 64px 0 30px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.hero-copy {
  padding: 28px 0;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
  margin: 0 0 14px;
}

h1 {
  margin: 0 0 14px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 600;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.lede {
  margin: 0 0 22px;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.92;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(243, 239, 230, 0.24);
  background: rgba(243, 239, 230, 0.08);
  color: var(--paper);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.button:hover {
  background: rgba(243, 239, 230, 0.12);
}

.button.ghost {
  border-color: rgba(111, 184, 168, 0.35);
  background: rgba(111, 184, 168, 0.08);
}

.button.small {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 14px;
}

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

.quick-card {
  border-radius: var(--radius);
  padding: 14px 14px 12px;
  border: 1px solid rgba(243, 239, 230, 0.18);
  background: rgba(8, 28, 24, 0.38);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.quick-k {
  margin: 0 0 6px;
  font-size: 12px;
  opacity: 0.78;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-v {
  margin: 0 0 2px;
  font-weight: 600;
}

.quick-s {
  margin: 0;
  font-size: 13px;
  opacity: 0.78;
}

.hero-panel {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(243, 239, 230, 0.18);
  background:
    radial-gradient(600px 420px at 50% 20%, rgba(217, 164, 65, 0.22), transparent 55%),
    radial-gradient(520px 360px at 30% 70%, rgba(111, 184, 168, 0.18), transparent 60%),
    rgba(8, 28, 24, 0.38);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 360px;
}

.panel-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  opacity: 0.38;
  filter: saturate(0.95);
}

.panel-tile {
  border-right: 1px solid rgba(243, 239, 230, 0.08);
  border-bottom: 1px solid rgba(243, 239, 230, 0.08);
}

.panel-tile.t1 {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  background: rgba(217, 164, 65, 0.12);
}
.panel-tile.t2 {
  grid-column: 4 / 7;
  grid-row: 1 / 4;
  background: rgba(111, 184, 168, 0.12);
}
.panel-tile.t3 {
  grid-column: 1 / 3;
  grid-row: 3 / 6;
  background: rgba(243, 239, 230, 0.06);
}
.panel-tile.t4 {
  grid-column: 3 / 7;
  grid-row: 4 / 6;
  background: rgba(243, 239, 230, 0.04);
}
.panel-tile.t5 {
  grid-column: 1 / 5;
  grid-row: 6 / 7;
  background: rgba(217, 164, 65, 0.08);
}
.panel-tile.t6 {
  grid-column: 5 / 7;
  grid-row: 6 / 7;
  background: rgba(111, 184, 168, 0.08);
}

.panel-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 16px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(243, 239, 230, 0.18);
  background: rgba(8, 28, 24, 0.55);
}

.panel-title {
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.panel-body {
  margin: 0;
  opacity: 0.86;
  line-height: 1.55;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: rgba(243, 239, 230, 0.06);
  border-top: 1px solid rgba(243, 239, 230, 0.12);
  border-bottom: 1px solid rgba(243, 239, 230, 0.12);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

h2 {
  margin: 0 0 14px;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.lede2 {
  margin: 0 0 18px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 72ch;
}

.muted {
  margin: 14px 0 0;
  opacity: 0.75;
  font-size: 14px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.card {
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  border: 1px solid rgba(243, 239, 230, 0.18);
  background: rgba(8, 28, 24, 0.35);
}

.list {
  margin: 0;
  padding: 0 0 0 16px;
  opacity: 0.9;
  line-height: 1.7;
}

.search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.search input {
  flex: 1 1 320px;
  min-width: 200px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(243, 239, 230, 0.2);
  background: rgba(8, 28, 24, 0.35);
  color: var(--paper);
  outline: none;
}

.search input::placeholder {
  color: rgba(243, 239, 230, 0.6);
}

.search button {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(217, 164, 65, 0.5);
  background: rgba(217, 164, 65, 0.14);
  color: var(--paper);
  font-weight: 700;
}

.search button:hover {
  background: rgba(217, 164, 65, 0.2);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(243, 239, 230, 0.2);
  background: rgba(8, 28, 24, 0.28);
}

.pill:hover {
  background: rgba(8, 28, 24, 0.38);
}

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

.event {
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  border: 1px solid rgba(243, 239, 230, 0.18);
  background: rgba(8, 28, 24, 0.35);
}

.event-date {
  margin: 0 0 8px;
  font-size: 12px;
  opacity: 0.78;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-title {
  margin: 0 0 8px;
  font-weight: 700;
}

.event-body {
  margin: 0;
  opacity: 0.88;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 16px;
  margin-top: 16px;
}

.map-box {
  border-radius: var(--radius);
  border: 1px solid rgba(243, 239, 230, 0.18);
  background: rgba(8, 28, 24, 0.35);
  padding: 18px;
  min-height: 240px;
}

.map-box p {
  margin: 0 0 8px;
  opacity: 0.9;
}

.map-hint {
  opacity: 0.7;
  font-size: 14px;
}

.map-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.address {
  border-radius: var(--radius);
  border: 1px solid rgba(243, 239, 230, 0.18);
  background: rgba(8, 28, 24, 0.35);
  padding: 18px;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  opacity: 0.9;
}

.callout {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(243, 239, 230, 0.18);
  background:
    radial-gradient(800px 340px at 20% 0%, rgba(111, 184, 168, 0.22), transparent 60%),
    radial-gradient(700px 320px at 90% 40%, rgba(217, 164, 65, 0.22), transparent 60%),
    rgba(8, 28, 24, 0.4);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.callout-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  padding: 26px 0 32px;
  border-top: 1px solid rgba(243, 239, 230, 0.14);
  background: rgba(8, 28, 24, 0.55);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-meta {
  margin: 6px 0 0;
  opacity: 0.72;
  font-size: 14px;
}

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

.footer-link {
  opacity: 0.82;
  font-size: 14px;
}

.footer-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    min-height: 300px;
  }
  .quick {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
}

