:root {
  --black: #0B0908;
  --black-alt: #1B1112;
  --gold: #EDE791;
  --burgundy: #6E1E2B;
  --burgundy-light: #8C2C3B;
  --cream: #F5F1E6;
  --muted: #B9AFA0;
  --border: #35262A;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.125rem;
  color: var(--cream);
  background: var(--black);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow {
  max-width: 720px;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--cream);
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }

.hero-wordmark img {
  width: min(100%, 480px);
  height: auto;
}
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--gold); }

h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gold);
  margin: 32px 0 8px;
}

p { margin: 0 0 16px; }

a { color: var(--gold); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 9, 8, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 12px;
}

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.wordmark img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 500;
  font-size: 1.05rem;
}

.nav-cta {
  background: var(--burgundy);
  color: var(--cream) !important;
  padding: 8px 18px;
  border-radius: 999px;
}

/* Hero */
.hero { padding-top: 56px; }

.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-text { flex: 1 1 420px; }
.hero-media { flex: 0 1 320px; }

.hero-media img {
  border-radius: 16px;
  border: 2px solid var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.hero-lede {
  font-size: 1.15rem;
  max-width: 52ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--burgundy-light);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.speaking-badge {
  margin-top: 48px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 16px 0;
}

.speaking-badge .wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: baseline;
}

.badge-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.badge-detail {
  font-size: 1rem;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--black-alt);
}

.seat-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}

.coming-soon {
  font-size: 0.95rem;
  color: var(--muted);
}

.link-arrow {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  margin-top: 8px;
}

/* Family gallery - preserve full photo, no forced cropping */
.family-gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.family-gallery figure {
  margin: 0;
  height: 340px;
  border-radius: 12px;
  background: var(--black-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.family-gallery img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Connect */
.connect-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.substack-embed {
  padding-top: 8px;
}

.substack-embed-label {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--cream);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .family-gallery { grid-template-columns: 1fr; }
  .family-gallery figure { height: 280px; }
  .hero-media { order: -1; flex-basis: 240px; }
}
