:root {
  --bg: #0a201e;
  --bg-2: #0f2e2b;
  --ink: #f4f1ea;
  --ink-soft: #c9d4d0;
  --ink-muted: #8aa19b;
  --gold: #c9a24b;
  --gold-soft: #e7d29a;
  --teal: #1f6f64;
  --teal-bright: #2fa18f;
  --line: rgba(233, 226, 210, 0.14);
  --card: rgba(255, 255, 255, 0.04);
  --radius: 16px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient aurora background */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(47, 161, 143, 0.22), transparent 60%),
    radial-gradient(50% 50% at 85% 20%, rgba(201, 162, 75, 0.16), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(31, 111, 100, 0.30), transparent 70%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 80px);
  backdrop-filter: blur(10px);
  background: rgba(10, 32, 30, 0.55);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: #0a201e;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 6px 20px rgba(201, 162, 75, 0.25);
}
.brand-mark.small { width: 30px; height: 30px; font-size: 17px; border-radius: 9px; }

.brand-text {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.site-nav { display: flex; gap: 30px; }
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.2s ease;
}
.site-nav a:hover { color: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(70px, 12vw, 140px) clamp(20px, 6vw, 40px) clamp(60px, 9vw, 110px);
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 26px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 8vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 300;
  color: var(--ink-soft);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
  margin-bottom: 38px;
}
.status-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 0 rgba(47, 161, 143, 0.6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 161, 143, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(47, 161, 143, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 161, 143, 0); }
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  color: #0a201e;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201, 162, 75, 0.38); }
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--card);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--gold-soft); }

/* ---------- Bands ---------- */
.band { padding: clamp(60px, 10vw, 110px) clamp(20px, 6vw, 40px); }
.band-alt { background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-inner { max-width: 980px; margin: 0 auto; }

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-bright);
  margin-bottom: 14px;
}

.band h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.body {
  max-width: 640px;
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.pillar {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(201, 162, 75, 0.4); }
.pillar h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold-soft);
}
.pillar p { font-size: 15px; color: var(--ink-muted); font-weight: 300; }

/* Categories */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 44px;
}
.category {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.category:hover { transform: translateY(-4px); color: var(--gold-soft); border-color: rgba(201, 162, 75, 0.4); }

.footnote { margin-top: 34px; font-size: 14px; color: var(--ink-muted); letter-spacing: 0.3px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(201, 162, 75, 0.4); }
.contact-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: var(--ink-muted);
}
.contact-value { font-size: 19px; color: var(--ink); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 50px clamp(20px, 6vw, 80px);
  background: rgba(8, 25, 23, 0.6);
}
.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.footer-brand { display: flex; align-items: center; gap: 11px; font-size: 17px; }
.footer-meta p { font-size: 14px; color: var(--ink-muted); }
.copyright { font-size: 13px; color: var(--ink-muted); margin-top: 4px; }

@media (max-width: 560px) {
  .site-nav { display: none; }
}
