:root {
  --navy: #0b1f2e;
  --navy-soft: #142f42;
  --cream: #f5f1e8;
  --white: #ffffff;
  --gold: #c7a66a;
  --muted: #a9b4bc;
  --border: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--navy);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(199, 166, 106, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 38%);
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 34px 0;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding: 88px 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 46px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d8e0e5;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(199, 166, 106, 0.1);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 span {
  color: var(--cream);
}

.intro {
  max-width: 660px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.locations span {
  padding: 10px 13px;
  border: 1px solid var(--border);
  color: #dbe2e6;
  font-size: 0.82rem;
}

.hero-card {
  padding: 34px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(10px);
}

.card-label,
.card-footer {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-number {
  margin: 24px 0 10px;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
}

.card-copy {
  color: #c7d0d6;
  line-height: 1.65;
}

.card-line {
  height: 1px;
  margin: 30px 0;
  background: var(--border);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 34px;
  border-top: 1px solid var(--border);
  color: #788a96;
  font-size: 0.75rem;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 32px, 680px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 64px 0;
  }

  .status {
    margin-bottom: 36px;
  }

  .hero-card {
    max-width: 420px;
  }

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

@media (max-width: 480px) {
  .site-header {
    padding: 24px 0;
  }

  .hero {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }
}
