:root {
  --bg: #2d1848;
  --bg-soft: #3a2058;
  --bg-panel: rgba(232, 221, 218, 0.18);
  --bg-panel-2: rgba(214, 196, 192, 0.22);
  --text: #f5f0eb;
  --muted: #d7ccc8;
  --soft: #efe5df;
  --gold: #b79b72;
  --sage: #8b9a8c;
  --moss: #637565;
  --forest: #34463a;
  --rosegray: #b9a6a1;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 18px 45px rgba(0,0,0,0.22);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: #2d1848;
  background-image:
    radial-gradient(circle at top right, rgba(183,155,114,0.07), transparent 20%),
    radial-gradient(circle at bottom left, rgba(130,70,165,0.16), transparent 25%),
    linear-gradient(180deg, #261040 0%, #2d1848 45%, #251040 100%);
  line-height: 1.65;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow { max-width: 760px; margin: 0 auto; }
.center { text-align: center; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(14px);
  background: rgba(18, 6, 24, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex-shrink: 0;
}

.brand img {
  height: 85px;
  width: 85px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
}

.brand strong {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.02rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  transition: 0.22s ease;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  margin-left: 0.5rem;
  font-size: 0.88rem;
  padding: 0.6rem 1.1rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.22s ease;
}

/* ── Hero ── */
.hero,
.image-break {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.image-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,12,45,0.52), rgba(30,12,45,0.78));
}

.hero > *,
.image-break > * {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 7rem 0 6rem;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

.hero-grid h1,
.hero-grid h2,
.hero-grid p {
  text-shadow: 0 2px 8px rgba(0,0,0,0.95), 0 4px 24px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7);
}

.hero-grid .pill {
  background: rgba(20,10,30,0.65);
  border-color: rgba(191,163,110,0.4);
  color: var(--text);
  backdrop-filter: blur(4px);
}

/* ── Sections ── */
section { padding: 4rem 0; }
.tight { padding: 2rem 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.cards,
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }

/* ── Image break ── */
.image-break {
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.image-break h2 {
  max-width: 18ch;
  margin: 0 auto;
  color: #f6f1e8;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* ── Cards & Panels ── */
.panel,
.card {
  background: rgba(20,10,30,0.72);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.55rem;
  backdrop-filter: blur(6px);
}

/* ── Typography ── */
h1, h2, h3 { line-height: 1.14; margin: 0 0 1rem; }

h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

h2 { font-family: Georgia, serif; font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.22rem; }

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.muted  { color: var(--muted); }
.small  { font-size: 0.88rem; }

/* ── Pill ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(191,163,110,0.25);
  background: rgba(191,163,110,0.12);
  color: var(--soft);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.button-row.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d0ba91);
  color: #18211d;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--muted);
  background: rgba(255,255,255,0.04);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

/* ── List ── */
.list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
  color: var(--muted);
  margin-top: 2rem;
  background: rgba(18, 6, 24, 0.85);
  backdrop-filter: blur(8px);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.footer-inner a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.footer-inner a:hover { color: var(--text); }

.footer-inner svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .split,
  .cards,
  .three-col { grid-template-columns: 1fr; }

  .hero { padding: 5rem 0 4rem; }
  .image-break { min-height: 34vh; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(18, 6, 24, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }

  .site-header { position: relative; }
}
