/* ── SHARED STYLES — all pages use this ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #1a1814;
  --ink-soft:   #4a4740;
  --ink-muted:  #8a8680;
  --paper:      #faf8f4;
  --paper-mid:  #f0ede6;
  --paper-deep: #e4e0d8;
  --teal:       #2a6b5e;
  --teal-light: #d6ede8;
  --teal-mid:   #3d8e7e;
  --gold:       #b07d2e;
  --gold-light: #f5edda;
  --white:      #ffffff;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-width: 1100px;
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-deep);
  padding: 0 2rem;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.875rem; color: var(--ink-soft); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal); color: var(--white) !important;
  padding: 0.45rem 1.1rem; border-radius: var(--radius-sm); font-weight: 500 !important;
}
.nav-cta:hover { background: var(--teal-mid) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 500;
  padding: 0.65rem 1.4rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--transition); border: 1.5px solid transparent;
}
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-mid); color: var(--white); border-color: var(--teal-mid); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--paper-deep); }
.btn-outline:hover { border-color: var(--ink-muted); color: var(--ink); }

/* ── PAGE HEADER ── */
.page-header { padding: 3.5rem 2rem 2.5rem; max-width: var(--max-width); margin: 0 auto; border-bottom: 1px solid var(--paper-deep); }
.page-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem;
}
.page-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal); }
.page-header h1 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.page-header p { font-size: 1rem; color: var(--ink-soft); max-width: 55ch; line-height: 1.7; }

/* ── DIVIDER ── */
.section-divider { border: none; border-top: 1px solid var(--paper-deep); margin: 0; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--teal); padding: 3.5rem 2rem; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; }
.newsletter-inner p { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; }
.newsletter-form { display: flex; gap: 0.6rem; max-width: 420px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 0.7rem 1rem; border-radius: var(--radius-sm); border: none;
  font-size: 0.9rem; background: rgba(255,255,255,0.15); color: var(--white); outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { background: rgba(255,255,255,0.25); }
.btn-newsletter {
  background: var(--white); color: var(--teal); border: none;
  padding: 0.7rem 1.4rem; border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 500; cursor: pointer; white-space: nowrap;
}
.btn-newsletter:hover { background: var(--paper-mid); }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--white); padding: 2.5rem 2rem; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .newsletter-form { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
