:root {
  --ink: #17343a;
  --muted: #526b70;
  --deep: #163f47;
  --deep-2: #0d3037;
  --teal: #177466;
  --teal-soft: #e1f0eb;
  --gold: #dcae4d;
  --paper: #fbfcfa;
  --mist: #eef4f2;
  --line: #cbdad6;
  --white: #fff;
  --shadow: 0 16px 45px rgba(15, 55, 62, .10);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { color-scheme: light; scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
}
a { color: #0b665c; text-underline-offset: .18em; }
a:hover { color: #084a43; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; border-radius: 4px; box-shadow: 0 0 0 6px #0b665c; }
.shell { width: min(1120px, calc(100% - 2.2rem)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .7rem 1rem; background: var(--white); color: var(--deep); font-weight: 700; }
.skip-link:focus { top: 1rem; }

.site-header { position: relative; z-index: 10; background: rgba(251, 252, 250, .96); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; color: var(--deep); text-decoration: none; line-height: 1.05; }
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; letter-spacing: -.015em; }
.brand small { display: block; margin-top: .28rem; color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.brand-mark { width: 48px; height: 48px; flex: 0 0 auto; }
.brand-mark circle { fill: var(--deep); }
.brand-mark path { fill: var(--teal-soft); stroke: none; }
.brand-mark .brand-tick { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.site-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .15rem; }
.site-nav a { padding: .55rem .72rem; color: var(--ink); font-size: .92rem; font-weight: 700; text-decoration: none; border-radius: 999px; }
.site-nav a:hover { background: var(--mist); }
.site-nav a[aria-current="page"] { background: var(--deep); color: var(--white); }

.hero { position: relative; overflow: hidden; padding: clamp(4rem, 9vw, 7.5rem) 0; color: var(--white); background: linear-gradient(135deg, var(--deep-2), var(--deep) 56%, #1a695f); }
.hero::after { content: ""; position: absolute; width: 34rem; height: 34rem; right: -13rem; top: -17rem; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(255,255,255,.03), 0 0 0 10rem rgba(255,255,255,.025); }
.hero .shell { position: relative; z-index: 1; }
.eyebrow { display: inline-block; margin: 0 0 1rem; color: #0b665c; font-size: .8rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow { color: var(--gold); }
.hero h1, .page-hero h1 { max-width: 830px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.04; letter-spacing: -.035em; }
.hero .lead { max-width: 760px; margin: 1.4rem 0 0; color: #e7f2ef; font-size: clamp(1.15rem, 2.2vw, 1.4rem); line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: .7rem 1.1rem; border: 2px solid var(--gold); border-radius: 999px; background: var(--gold); color: #21383c; font-weight: 800; text-decoration: none; }
.button:hover { background: #f0c76f; color: #17343a; }
.button-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.button-secondary:hover { background: rgba(255,255,255,.1); color: var(--white); }

.page-hero { padding: 4.4rem 0 3.3rem; background: var(--mist); border-bottom: 1px solid var(--line); }
.page-hero h1 { color: var(--deep); font-size: clamp(2.4rem, 5vw, 4.2rem); }
.page-hero .lead { max-width: 780px; margin: 1rem 0 0; color: var(--muted); font-size: 1.2rem; }
.section { padding: clamp(3.4rem, 7vw, 6rem) 0; }
.section-soft { background: var(--mist); }
.prose { max-width: 780px; }
.prose h2, .section-heading h2 { margin: 0 0 1rem; color: var(--deep); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 3.3vw, 2.7rem); line-height: 1.15; }
.prose h3 { margin-top: 2.2rem; color: var(--deep); font-size: 1.25rem; }
.prose p:first-of-type { font-size: 1.14rem; }
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section-heading p { color: var(--muted); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.spaced-grid { margin-top: 1.2rem; }
.card { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(15,55,62,.05); }
.card h2, .card h3 { margin: 0 0 .65rem; color: var(--deep); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.2; }
.card p { margin: .55rem 0; }
.card .meta { color: var(--muted); font-size: .86rem; font-weight: 700; letter-spacing: .02em; }
.card-link { display: inline-block; margin-top: .55rem; font-weight: 800; }
.status { display: inline-flex; margin-bottom: .85rem; padding: .2rem .58rem; border-radius: 999px; background: var(--teal-soft); color: #0f5a50; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.status-archive { background: #f4ead1; color: #6b511b; }
.callout { padding: 1.5rem 1.6rem; background: var(--teal-soft); border-left: 5px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; }
.callout h2, .callout h3 { margin-top: 0; color: var(--deep); }
.contact-panel { display: grid; grid-template-columns: 1.3fr .7fr; gap: 1.2rem; align-items: start; padding: clamp(1.5rem, 4vw, 2.5rem); background: var(--deep); color: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-panel h2 { margin: 0 0 .65rem; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.contact-panel p { margin: .45rem 0; color: #e1efec; }
.contact-panel a { color: var(--white); }
.contact-panel .button { color: #21383c; }
.source-note { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.clean-list { padding-left: 1.2rem; }
.clean-list li { margin-bottom: .55rem; }

.site-footer { padding: 3rem 0 1.4rem; background: #0f3037; color: #d7e6e3; }
.site-footer a { color: #fff; }
.site-footer p { margin: .55rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2rem; }
.footer-note { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.16); color: #abc3bf; font-size: .84rem; }

@media (max-width: 820px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding-block: 1rem; }
  .site-nav { justify-content: flex-start; }
  .grid, .grid-two, .contact-panel, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-block: 4.5rem; }
}
@media (max-width: 520px) {
  body { font-size: 1rem; }
  .shell { width: min(100% - 1.25rem, 1120px); }
  .site-nav a { padding: .45rem .55rem; font-size: .84rem; }
  .brand strong { font-size: 1.05rem; }
  .brand-mark { width: 42px; height: 42px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
