@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600&display=swap');

:root {
  --lp-bg-cream: #FBF6EA;
  --lp-bg-warm: #F5EFE0;
  --lp-ink-headline: #4A2D14;
  --lp-ink-section: #5A3820;
  --lp-ink-body: #6B4520;
  --lp-ink-eyebrow: #8B5A2B;
  --lp-ink-dark: #2D1A08;
  --lp-ink: #3A2410;
  --lp-ink-soft: #5C3A18;
  --lp-accent-gold: #B8935A;
  --lp-accent-tan: #8B5A2B;
  --lp-divider: #D4C3A3;
  --lp-font-display: 'Fraunces', Georgia, serif;
  --lp-font-body: 'Fraunces', Georgia, serif;
}

body {
  background: var(--lp-bg-cream);
  color: var(--lp-ink-body);
  font-family: var(--lp-font-body);
  line-height: 1.7;
  margin: 0;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

header {
  background: var(--lp-bg-cream);
  border-bottom: 1px solid var(--lp-divider);
  padding: 8px 16px;
  margin-bottom: 0;
}

header .header-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

header .header-inner > a {
  text-decoration: none;
  flex-shrink: 0;
}

header img {
  height: 32px;
  width: auto;
  display: block;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

header nav a {
  font-size: 0.875rem;
  color: var(--lp-ink-body);
  text-decoration: underline;
  text-decoration-color: var(--lp-accent-tan);
  text-underline-offset: 4px;
}

@media (max-width: 640px) {
  h1 {
    font-size: 1.75rem;
  }

  header nav {
    gap: 16px;
  }

  header nav a {
    font-size: 0.85rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .cta-group .cta {
    width: fit-content;
  }
}

h1 {
  font-family: var(--lp-font-display);
  color: var(--lp-ink-headline);
  font-size: 2.25rem;
  line-height: 1.2;
  margin-top: 24px;
}

h2 {
  font-family: var(--lp-font-display);
  color: var(--lp-ink-section);
  font-size: 1.5rem;
  margin-top: 48px;
}

p {
  margin: 16px 0;
  font-size: 1.0625rem;
}

a {
  color: var(--lp-accent-tan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  border-top: 1px solid var(--lp-divider);
  margin-top: 64px;
  padding-top: 32px;
  text-align: center;
  font-size: 0.9rem;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta {
  display: inline-block;
  background: var(--lp-accent-tan);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 0;
}
