:root {
  --bg-deep: #0c0f14;
  --bg-card: #12161e;
  --bg-elevated: #181d28;
  --gold: #c9a962;
  --gold-light: #e2cc8a;
  --gold-dim: #8a7340;
  --cream: #f4f0e6;
  --cream-muted: #b8b0a0;
  --burgundy: #4a2030;
  --border: rgba(201, 169, 98, 0.22);
  --border-strong: rgba(201, 169, 98, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream-muted);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  position: relative;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(74, 32, 48, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(201, 169, 98, 0.06), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, #0a0d12 100%);
  pointer-events: none;
  z-index: -1;
}

.header {
  text-align: center;
  padding: 3.5rem 0 2rem;
}

.crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg-card));
  box-shadow:
    0 0 0 4px rgba(201, 169, 98, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.est {
  margin: 1.25rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--gold-dim);
}

.hero {
  text-align: center;
  padding: 2rem 0 3rem;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.hero-domain {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--gold-dim);
}

.hero-lead {
  margin: 0 auto 2.25rem;
  max-width: 34rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--cream-muted);
}

.hero-note {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.18) 0%, rgba(201, 169, 98, 0.06) 100%);
  color: var(--gold-light);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.32) 0%, rgba(201, 169, 98, 0.14) 100%);
  color: var(--cream);
  box-shadow: 0 4px 24px rgba(201, 169, 98, 0.15);
}

.btn-large {
  padding: 1rem 2.8rem;
  font-size: 0.85rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 2.5rem;
  color: var(--gold-dim);
  font-size: 0.55rem;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  max-width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.divider-ornament {
  padding: 0 1.25rem;
  color: var(--gold);
  opacity: 0.7;
}

.section {
  padding: 2rem 0;
}

.section h2,
.cta h2 {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
}

.section p {
  margin: 0 0 1.25rem;
}

.section p:last-of-type {
  margin-bottom: 0;
}

.principles {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.principles li {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem 1.5rem;
  background: var(--bg-card);
}

.principle-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}

.principle-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--cream-muted);
}

.cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 3rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.cta p {
  margin: 0 auto 2rem;
  max-width: 28rem;
}

.footer {
  text-align: center;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-mark {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--gold-dim);
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(184, 176, 160, 0.5);
}

@media (max-width: 480px) {
  .page {
    padding: 0 1.15rem 2.5rem;
  }

  .header {
    padding-top: 2.5rem;
  }

  .cta {
    padding: 2.25rem 1.15rem;
  }
}