:root {
  --paper: #f3efe6;
  --paper-deep: #e8e1d4;
  --cream: #faf7f1;
  --ink: #1c1f1d;
  --pine: #2f3d38;
  --stone: #8a8478;
  --muted: #5e5a53;
  --line: rgba(28, 31, 29, 0.14);
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 500;
  margin: 0;
}
p { margin: 0 0 1rem; }
.wrap { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .wrap { padding: 0 2rem; } }

.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 230, 0.92);
  backdrop-filter: blur(12px);
}
.header-bar {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.5rem;
}
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--ink); }
.logo-mark {
  width: 2.75rem; height: 2.75rem; background: var(--pine);
  border-radius: 4px; padding: 0.25rem; display: flex;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.logo-kicker { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.7; }
.logo-name { font-family: var(--display); font-size: 1.25rem; letter-spacing: 0.12em; margin-top: 0.15rem; }
.nav-desktop { display: none; gap: 1.75rem; }
.nav-desktop a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; text-decoration: none; color: var(--muted);
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 2.75rem; padding: 0 1.25rem; border-radius: 4px;
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  background: var(--ink); color: var(--paper); border: 0;
}
.btn:hover { background: var(--pine); }
.btn-sm { height: 2.25rem; padding: 0 0.9rem; font-size: 0.75rem; }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(28,31,29,0.28);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.menu-btn {
  width: 2.75rem; height: 2.75rem; border: 0; background: none; font-size: 1.4rem; cursor: pointer;
}
.nav-mobile { display: none; border-top: 1px solid var(--line); padding: 1.5rem 1.25rem; }
.nav-mobile.open { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile a {
  min-height: 2.75rem; display: flex; align-items: center;
  font-family: var(--display); font-size: 1.5rem; text-decoration: none;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: block; }
  .menu-btn { display: none; }
}
.header-cta { display: none; }

.hero {
  position: relative; min-height: 78vh; display: flex; align-items: flex-start;
  padding: 7rem 0 2.5rem; background: var(--paper-deep);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-panel {
  position: relative; max-width: 42rem;
  background: rgba(243,239,230,0.95); border-radius: 14px; padding: 2.25rem;
  box-shadow: 0 0 0 1px rgba(28,31,29,0.08), 0 8px 24px -8px rgba(28,31,29,0.12);
}
.eyebrow { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.snpi { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); margin-top: 0.5rem; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 1rem; }
.lede { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }
.missions { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); list-style: none; }
.missions li { margin: 0 0 0.4rem; }
.missions a { text-decoration: none; display: grid; gap: 0.15rem; font-size: 0.8rem; }
.missions strong { font-weight: 500; }
.missions span { color: var(--muted); }
@media (min-width: 640px) {
  .missions a { grid-template-columns: 8.5rem 1fr; align-items: baseline; gap: 0.75rem; }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.page-hero { padding: 4.5rem 0 2rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.75rem); margin-top: 0.75rem; max-width: 40rem; }

.section { padding: 3.5rem 0; }
.section h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-top: 0.75rem; max-width: 48rem; }
.prose { max-width: 48rem; color: var(--muted); margin-top: 2rem; }
.prose p { margin-bottom: 1.25rem; }

.cards { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .cards.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards.four { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--cream); border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(28,31,29,0.08);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 1.25rem 1.35rem 1.5rem; }
.card .num { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
.card h3 { font-size: 1.5rem; margin: 0.4rem 0 0.6rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

.benefit {
  margin-top: 1.5rem; padding: 1rem 1.1rem;
  border-left: 2px solid var(--pine); color: var(--ink); font-size: 0.95rem;
}
.lists { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .lists.two { grid-template-columns: 1fr 1fr; } }
.lists h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.lists ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.lists li { margin: 0.35rem 0; }

.block { margin-top: 3rem; }
.photo { border-radius: 14px; width: 100%; object-fit: cover; }

.cta {
  background: var(--ink); color: var(--paper); padding: 4rem 0;
}
.cta h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); max-width: 40rem; }
.cta p { color: rgba(243,239,230,0.7); max-width: 36rem; margin: 1rem 0 0; }
.cta .btn { background: var(--paper); color: var(--ink); margin-top: 1.5rem; }
.cta .btn:hover { background: var(--paper-deep); }

.site-footer { background: var(--pine); color: var(--paper); padding: 4rem 0 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 5fr 7fr; }
  .footer-cols { grid-template-columns: 1fr 1fr 1fr; }
}
.footer-cols { display: grid; gap: 2rem; }
.site-footer .label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(243,239,230,0.55); }
.site-footer ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.site-footer a { color: rgba(243,239,230,0.85); text-decoration: none; font-size: 0.9rem; }
.site-footer a:hover { color: var(--paper); }
.site-footer .tag { color: rgba(243,239,230,0.75); max-width: 22rem; margin-top: 1.5rem; font-size: 0.9rem; }
.foot-legal {
  border-top: 1px solid rgba(243,239,230,0.1);
  margin-top: 3rem; padding: 1.25rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  font-size: 0.75rem; color: rgba(243,239,230,0.5);
}
.logo-white { height: 5rem; width: auto; }

.contact-mail {
  font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem);
  text-decoration: none; display: block; margin-top: 1rem;
}
.contact-mail:hover { color: var(--pine); }

.hierarchy { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .hierarchy { grid-template-columns: 1fr 1fr 1fr; } }
.hi {
  background: var(--cream); padding: 1.25rem; border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(28,31,29,0.08);
}
.hi .mark {
  font-family: var(--display); font-size: 1.5rem; color: var(--pine);
}
