:root {
  --paper: #faf6ef;
  --cream: #f4ede3;
  --ink: #151c25;
  --muted: #756d61;
  --ocean: #1f4861;
  --ocean-deep: #0e2a3d;
  --gold: #b8915a;
  --clay: #b8653d;
  --hairline: rgba(18, 44, 59, 0.14);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  background: rgba(250,246,239,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18,44,59,0.08);
}
.brand {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  text-decoration: none;
}
.nav-links { display: flex; gap: 1.2rem; align-items: center; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links .cta { color: #fff; background: var(--clay); padding: 0.75rem 1rem; border-radius: 999px; }
.hero {
  min-height: 82vh;
  display: grid;
  align-items: end;
  padding: 8rem clamp(1.25rem, 5vw, 5rem) 5rem;
  background:
    linear-gradient(180deg, rgba(14,42,61,0.18), rgba(14,42,61,0.78)),
    var(--image) center/cover;
  color: #fff;
}
.hero-inner { max-width: 820px; }
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #dfc28b;
  font-weight: 700;
}
h1, h2 { font-family: Georgia, serif; font-style: italic; font-weight: 300; letter-spacing: -0.04em; }
h1 { margin: 1rem 0; font-size: clamp(3rem, 8vw, 6.8rem); line-height: 0.95; }
.hero p { max-width: 58ch; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; color: rgba(255,255,255,0.82); }
.btns { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}
.btn.primary { background: var(--clay); color: #fff; }
.btn.secondary { border: 1px solid rgba(255,255,255,0.42); color: #fff; }
.section { padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem); }
.grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.section h2 { margin: 0; font-size: clamp(2.2rem, 5vw, 4.4rem); line-height: 1; }
.copy { color: var(--muted); font-size: 1rem; line-height: 1.8; }
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.card { background: var(--paper); padding: 1.35rem; }
.card span { color: var(--gold); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; }
.card strong { display: block; margin: 0.45rem 0; font-family: Georgia, serif; font-size: 1.25rem; font-style: italic; font-weight: 300; }
.card p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 0.92rem; }
.band { background: var(--ocean-deep); color: #fff; text-align: center; }
.band h2 { margin: 0 auto 1rem; max-width: 13ch; }
.band p { margin: 0 auto; max-width: 62ch; color: rgba(255,255,255,0.72); line-height: 1.8; }
/* Related-pages internal-link nav (SEO: no page is orphaned) */
.related {
  background: #0b1119;
  padding: clamp(2.4rem, 5vw, 3.4rem) clamp(1.25rem, 5vw, 5rem) 2.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.related-label {
  display: block;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  max-width: 1180px;
}
.related-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.related-links a:hover { color: #fff; }
.footer { padding: 2rem clamp(1.25rem, 5vw, 5rem); background: #101721; color: rgba(255,255,255,0.55); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.82rem; }
@media (max-width: 760px) {
  .nav { position: absolute; }
  .nav-links a:not(.cta) { display: none; }
  .grid, .cards { grid-template-columns: 1fr; }
  .hero { min-height: 74vh; }
  .btns { flex-direction: column; align-items: stretch; }
}
