:root {
  --ink: #102a32;
  --ink-soft: #38535a;
  --paper: #f4f0e8;
  --paper-deep: #e8e0d2;
  --gold: #b6844b;
  --gold-light: #d6b17d;
  --line: rgba(16, 42, 50, 0.16);
  --white: #fffdf8;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1180px, calc(100% - 48px));
  min-height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark { display: flex; flex-direction: column; gap: 4px; }
.wordmark span { font-family: Georgia, serif; font-size: 21px; letter-spacing: .01em; }
.wordmark small { color: var(--ink-soft); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.header-contact {
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  padding: 92px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .72fr);
  align-items: center;
  gap: 10vw;
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: 34px;
  border: 1px solid rgba(182, 132, 75, .34);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(182, 132, 75, .035), 0 0 0 124px rgba(182, 132, 75, .025);
  pointer-events: none;
}
.hero-copy, .principle-card { position: relative; z-index: 1; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 7.8vw, 104px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}
h1 em { color: var(--gold); font-weight: 400; }
.lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}
.button.primary { background: var(--ink); color: var(--white); }
.button.primary:hover { background: #183943; }
.text-link { font-size: 14px; font-weight: 650; }
.text-link span { margin-left: 6px; color: var(--gold); }
.principle-card {
  padding: 38px;
  background: rgba(255, 253, 248, .66);
  border: 1px solid rgba(182, 132, 75, .34);
  box-shadow: 0 24px 70px rgba(16, 42, 50, .08);
}
.card-label { color: var(--gold); font-size: 10px; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.principle-card blockquote { margin: 24px 0 28px; font-family: Georgia, serif; font-size: 25px; line-height: 1.45; }
.card-rule { width: 42px; height: 1px; margin-bottom: 22px; background: var(--gold); }
.principle-card > p:last-child { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }

.topics { padding: 100px max(24px, calc((100vw - 1180px) / 2)); background: var(--white); }
.section-heading { max-width: 680px; margin-bottom: 60px; }
.section-heading h2, .about-strip h2 { font-family: Georgia, serif; font-size: clamp(38px, 4.2vw, 60px); font-weight: 400; letter-spacing: -.035em; line-height: 1.06; }
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.topic-card { min-height: 285px; padding: 34px; background: var(--white); }
.topic-number { color: var(--gold); font-family: Georgia, serif; font-size: 14px; }
.topic-card h3 { margin: 54px 0 16px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.topic-card p { margin-bottom: 0; color: var(--ink-soft); line-height: 1.65; }

.about-strip {
  padding: 86px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10vw;
  align-items: end;
  background: var(--ink);
  color: var(--white);
}
.eyebrow.light { color: var(--gold-light); }
.about-strip h2 { margin-bottom: 0; }
.about-strip > p { margin: 0; color: rgba(255, 253, 248, .72); font-size: 17px; line-height: 1.75; }

.site-footer {
  padding: 46px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 42px;
  background: #0b2027;
  color: rgba(255, 253, 248, .76);
  font-size: 13px;
}
.site-footer strong { color: var(--white); font-family: Georgia, serif; font-size: 19px; font-weight: 400; }
.site-footer p { margin: 6px 0 0; }
.site-footer nav { display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer nav a:hover { color: var(--white); }
.copyright { white-space: nowrap; }

.legal-content {
  width: min(780px, calc(100% - 48px));
  min-height: 64vh;
  margin: 0 auto;
  padding: 92px 0 110px;
}
.legal-content > h1 { margin-bottom: 28px; font-size: clamp(52px, 7vw, 84px); }
.legal-intro { margin-bottom: 54px; color: var(--ink-soft); font-size: 19px; line-height: 1.7; }
.legal-body { max-width: 720px; }
.legal-body section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-body section:first-child { border-top-color: rgba(182, 132, 75, .5); }
.legal-body h2 { margin-bottom: 14px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.legal-body p, .legal-body address { margin-bottom: 12px; color: var(--ink-soft); font-size: 16px; font-style: normal; line-height: 1.75; }
.legal-body a { border-bottom: 1px solid rgba(182, 132, 75, .55); }
.legal-body a:hover { color: var(--gold); }
.legal-footer { margin-top: 0; }

@media (max-width: 850px) {
  .hero { grid-template-columns: 1fr; gap: 58px; padding-top: 70px; }
  .principle-card { max-width: 560px; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: auto; }
  .topic-card h3 { margin-top: 30px; }
  .about-strip { grid-template-columns: 1fr; gap: 36px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; gap: 28px; }
}
@media (max-width: 540px) {
  .site-header, .hero { width: min(100% - 32px, 1180px); }
  .wordmark small { font-size: 9px; }
  .header-contact { font-size: 11px; }
  .hero { min-height: auto; padding: 62px 0 72px; }
  h1 { font-size: 53px; }
  .lead { font-size: 16px; }
  .principle-card { padding: 28px; }
  .principle-card blockquote { font-size: 22px; }
  .topics { padding-top: 76px; padding-bottom: 76px; }
  .topic-card { padding: 28px; }
  .legal-content { width: min(100% - 32px, 780px); padding: 64px 0 82px; }
  .legal-content > h1 { font-size: 50px; }
  .legal-intro { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
