/* ── SHARED STYLES — Paul Arroyo subpages ────────────────────────── */
:root {
  --navy:      #f5f0eb;
  --navy-mid:  #ece5dc;
  --navy-lite: #d8cfc1;
  --gold:      #b5341a;
  --gold-lite: #d04a2e;
  --cream:     #faf6f0;
  --white:     #1a1a1a;
  --gray:      #6b6259;
  --border:    rgba(26,26,26,.12);
  --ff-serif:  'Playfair Display', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;
  --ease-out:  cubic-bezier(0.22,1,0.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--navy) 92%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  color: color-mix(in srgb, var(--white) 65%, transparent);
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase;
  transition: background .2s, color .2s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

/* ── PAGE HEADER ─────────────────────────────────────────────────── */
.page-hero {
  padding: 180px 48px 80px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.page-title {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  max-width: 900px;
  text-wrap: balance;
}
.page-title em {
  font-style: italic;
  color: var(--gold);
}
.page-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 680px;
  margin-top: 24px;
  text-wrap: pretty;
}
.breadcrumb {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: .4; }

/* ── CONTENT WRAPPER ─────────────────────────────────────────────── */
main.page-main {
  padding: 96px 48px;
}
.page-main-inner {
  max-width: 760px;
  margin: 0 auto;
}
.page-main-inner.wide {
  max-width: 1200px;
}

.prose h2 {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--white);
  margin: 56px 0 20px;
  text-wrap: balance;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 32px 0 12px;
}
.prose p {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--white) 88%, transparent);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.prose p.lead {
  font-size: 21px;
  line-height: 1.6;
  color: var(--gray);
  font-style: italic;
  font-family: var(--ff-serif);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0 40px;
}
.prose ul, .prose ol {
  margin: 0 0 24px 24px;
  font-size: 17px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--white) 88%, transparent);
}
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--white); font-weight: 600; }
.prose a { color: var(--gold); border-bottom: 1px solid color-mix(in srgb, var(--gold) 40%, transparent); transition: border-color .2s; }
.prose a:hover { border-color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 48px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-copy { font-size: 13px; color: var(--gray); }
.footer-links {
  display: flex;
  list-style: none;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── BACK LINK ───────────────────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  transition: gap .2s;
}
.back-link:hover { gap: 12px; }

/* ── MOBILE ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  nav.site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-hero { padding: 130px 24px 60px; }
  main.page-main { padding: 56px 24px; }
  .page-main-inner { max-width: 100%; }
  footer.site-footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
