/* ── Brand tokens ─────────────────────────────────────────── */
:root {
  --color-bg:        #0B1320;
  --color-framework: #3A4B66;
  --color-lines:     #E6EDF6;
  --color-muted:     #8A9BBF;
  --font-heading:    "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:       "Inter", system-ui, -apple-system, sans-serif;
}

/* ── Reset & base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-lines);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--color-lines); text-decoration: none; }
a:hover { color: #fff; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  padding: 2rem 2rem 0;
  text-align: center;
}

.logo-mark {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.firm-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lines);
}

.firm-name span {
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 0.75em;
  display: block;
  margin-top: 0.15em;
  color: var(--color-muted);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
}

.invitation-badge {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-muted);
  border: 1px solid var(--color-framework);
  padding: 0.75rem 2.5rem;
  margin-bottom: 3rem;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 480px;
  line-height: 1.8;
}

/* ── Divider (brand line motif) ──────────────────────────── */
.brand-divider {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 2.5rem 0;
}

.brand-divider span {
  display: block;
  width: 3px;
  height: 36px;
  background: var(--color-lines);
  opacity: 0.35;
}

/* ── Contact section ─────────────────────────────────────── */
.contact {
  text-align: center;
  padding: 2rem 2rem 3rem;
}

.contact h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-lines);
  margin-bottom: 1.25rem;
}

.contact-info {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 2;
}

.contact-info a {
  color: var(--color-lines);
  border-bottom: 1px solid var(--color-framework);
  transition: border-color 0.2s;
}

.contact-info a:hover {
  border-color: var(--color-lines);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.8rem;
  color: var(--color-framework);
  border-top: 1px solid rgba(58, 75, 102, 0.3);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .firm-name {
    font-size: 1.4rem;
  }
  .firm-name span {
    font-size: 0.7em;
  }
  .hero {
    padding: 3rem 1.5rem;
  }
  .invitation-badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    letter-spacing: 0.25em;
  }
}
