:root {
  --ocean: #0f6d70;
  --deep: #123f46;
  --sand: #f5ead4;
  --coral: #e76f51;
  --ink: #24383b;
  --muted: #607477;
  --paper: #fffdf8;
  --line: #d8e4e2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #edf5f3;
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--ocean); }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 20; background: white; padding: .75rem; }
.site-header {
  max-width: 960px;
  margin: auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50% 50% 44% 56%;
  background: var(--ocean);
  color: white;
  font: 700 28px/1 "Playfair Display", Georgia, serif;
}
.eyebrow { margin: 0; color: var(--coral); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; }
.brand-name { margin: 0; color: var(--deep); font: 700 22px/1.2 "Playfair Display", Georgia, serif; }
.hero { background: linear-gradient(135deg, var(--deep), var(--ocean)); color: white; }
.hero-inner { max-width: 960px; margin: auto; padding: 56px 24px 64px; }
.pill { display: inline-block; margin: 0 0 16px; padding: 6px 12px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; font-size: 13px; }
.hero h1 { margin: 0 0 10px; font: 700 clamp(38px, 7vw, 62px)/1.06 "Playfair Display", Georgia, serif; }
.hero p { max-width: 650px; }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.quick-links a { padding: 10px 15px; border-radius: 8px; background: var(--sand); color: var(--deep); font-weight: 700; text-decoration: none; }
.quick-links a + a { background: transparent; color: white; border: 1px solid rgba(255,255,255,.5); }
.content-card {
  max-width: 900px;
  margin: -24px auto 48px;
  padding: clamp(26px, 6vw, 58px);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(18,63,70,.12);
}
.content-card > h1:first-child, .content-card > h2:nth-child(2) { display: none; }
.content-card h2 {
  margin: 2.3rem 0 .75rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  color: var(--deep);
  font: 700 25px/1.25 "Playfair Display", Georgia, serif;
}
.content-card h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.content-card p { margin: .65rem 0; }
.content-card ul { padding-left: 1.25rem; }
.content-card li { margin: .35rem 0; }
.content-card strong { color: var(--deep); }
.content-card hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.content-card .updated { margin: 0 0 1.5rem; color: var(--muted); font-size: 14px; }
.content-card .notice {
  margin: 1.5rem 0 2rem;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  border-radius: 0 10px 10px 0;
  background: var(--sand);
  color: var(--deep);
}
.privacy-content > h1:first-child { display: none; }
.privacy-content h3 { color: var(--deep); }
footer { max-width: 900px; margin: 0 auto; padding: 0 24px 48px; color: var(--muted); text-align: center; font-size: 14px; }

@media (max-width: 700px) {
  body { font-size: 15px; }
  .site-header { padding: 14px 18px; }
  .hero-inner { padding: 42px 20px 54px; }
  .content-card { margin: -18px 12px 32px; padding: 28px 22px; border-radius: 14px; }
  .content-card h2 { font-size: 22px; }
}

@media print {
  body { background: white; color: #111; font-size: 10pt; }
  .site-header, .quick-links, .skip-link { display: none; }
  .hero { background: white; color: #111; }
  .hero-inner { padding: 0 0 14pt; }
  .pill, .hero p { display: none; }
  .hero h1 { font-size: 24pt; }
  .content-card { margin: 0; padding: 0; max-width: none; box-shadow: none; }
  .content-card h2 { font-size: 14pt; break-after: avoid; }
  .content-card p, .content-card li { orphans: 3; widows: 3; }
  footer { padding-top: 20pt; }
}
