:root {
  --bg: #0a0b0d;
  --bg-soft: rgba(20, 22, 27, 0.78);
  --panel: rgba(14, 16, 20, 0.7);
  --panel-border: rgba(214, 177, 91, 0.22);
  --text: #f5f1e8;
  --muted: #b7ad9a;
  --gold: #d8b36a;
  --gold-soft: #f0d9a1;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(216, 179, 106, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(216, 179, 106, 0.12), transparent 28%),
    linear-gradient(135deg, #08090b 0%, #0f1115 48%, #0b0c0f 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 32px;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.45;
}

.ambient-left {
  top: -140px;
  left: -180px;
  background: rgba(216, 179, 106, 0.12);
}

.ambient-right {
  right: -180px;
  bottom: -120px;
  background: rgba(216, 179, 106, 0.08);
}

.topbar,
.footer-bar,
.glass-panel {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.62);
  box-shadow: var(--shadow);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 20px rgba(216, 179, 106, 0.55);
}

.brand-overline,
.brand-subline,
.eyebrow,
.card-kicker,
.info-label,
.timeline-label,
.microcopy,
.footer-bar p {
  margin: 0;
}

.brand-overline,
.eyebrow,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.73rem;
  color: var(--gold-soft);
}

.brand-subline,
.lead,
.timeline-label,
.microcopy,
.footer-bar p,
.status-pill {
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(216, 179, 106, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(216, 179, 106, 0.15);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 28px;
  padding: 56px 0 32px;
  align-items: stretch;
}

.glass-panel {
  position: relative;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 56px;
  overflow: hidden;
}

.hero-copy::before,
.card-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 179, 106, 0.16), transparent 45%);
  pointer-events: none;
}

.hero-copy h1,
.hero-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  margin: 18px 0 22px;
}

.hero-copy h1 {
  font-size: clamp(3.8rem, 8vw, 7rem);
  max-width: 10ch;
}

.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #fff6df 0%, var(--gold) 45%, #a97b2c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 40rem;
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-btn {
  background: linear-gradient(135deg, #f2ddb0 0%, var(--gold) 46%, #b17c2f 100%);
  color: #16120d;
  font-weight: 600;
}

.secondary-btn {
  border-color: rgba(216, 179, 106, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.primary-btn:focus-visible,
.secondary-btn:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  transform: translateY(-2px);
}

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

.info-grid article,
.timeline-block > div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.info-label,
.timeline-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-grid strong,
.timeline-block strong {
  font-size: 1rem;
  font-weight: 500;
}

.hero-card {
  position: relative;
}

.card-frame {
  height: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.hero-card p {
  margin: 0;
  line-height: 1.8;
}

.timeline-block {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 8px 0 18px;
  background: linear-gradient(90deg, transparent, rgba(216, 179, 106, 0.5), transparent);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.55);
}

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

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

  .card-frame {
    padding: 28px;
  }

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

  .footer-bar {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 24px, 1240px);
    padding-top: 16px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}
