:root {
  color-scheme: light dark;
  --background: #f4f5f2;
  --foreground: #17232b;
  --accent: #0b6f70;
  --muted: #59666b;
  font-family: Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  text-rendering: optimizeLegibility;
}
@media (prefers-color-scheme: dark) {
  :root {
    --background: #152127;
    --foreground: #f4f5f2;
    --accent: #6bc5be;
    --muted: #aab7ba;
  }
}
* { box-sizing: border-box; }
body { margin: 0; }
::selection { background: var(--accent); color: var(--background); }

.site-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 68.75rem);
  min-height: max(40.625rem, 100svh);
  margin-inline: auto;
  padding: 1.875rem min(7vw, 4.8125rem) 1.5625rem;
  text-align: center;
}
.site-header { display: flex; justify-content: center; }
.brand-lockup { display: block; width: 15.3125rem; max-width: 100%; }
.brand-lockup img { display: block; width: 100%; height: auto; }

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 3rem 2.5rem;
}
.hero-title {
  max-width: 100%;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.75rem, 8.8vw, 5.75rem);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}
.hero-title span, .hero-title em { display: block; }
.hero-title em { margin-top: 0.4375rem; color: var(--accent); font-weight: 400; }

.site-footer { display: flex; flex-direction: column; align-items: center; }
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  max-width: 100%;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 0.375rem;
  text-decoration-thickness: 1px;
  overflow-wrap: anywhere;
}
.site-footer a:hover { color: var(--accent); }
.site-footer a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.copyright { margin: 0.5rem 0 0; color: var(--muted); font-size: 0.75rem; line-height: 1.5; }

@media (max-width: 36.25rem) {
  .site-shell { min-height: max(38.125rem, 100svh); padding: 1.625rem 8%; }
  .brand-lockup { width: 13.75rem; }
  .hero { padding-block: 3.25rem 3.125rem; }
  .hero-title { font-size: clamp(2.5rem, 11.5vw, 4rem); line-height: 1.17; }
}
@media (forced-colors: active) {
  .hero-title em { color: CanvasText; }
  .site-footer a { color: LinkText; }
}
