:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #202731;
  --body: #4b5563;
  --muted: #6b7280;
  --accent: #3563b9;
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--paper); color: var(--body); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
::selection { background: #dbeafe; color: var(--ink); }
a { color: #526b87; text-decoration: none; transition: color 160ms; }
a:hover { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 2px; }
.page { min-height: 100svh; display: flex; flex-direction: column; }
.masthead { width: min(100% - 80px, 1060px); margin: 0 auto; height: 80px; display: flex; align-items: center; justify-content: space-between; }
.wordmark { color: var(--ink); font: bold 31px Georgia, serif; letter-spacing: -3px; text-decoration: none; }
.wordmark span { color: var(--accent); }
.socials { display: flex; align-items: center; gap: 24px; margin-top: 16px; font-size: 12px; }
.socials a { text-decoration: none; padding: 5px 0; }
main { width: min(100% - 48px, 760px); margin: 14px auto 0; position: relative; z-index: 1; }
.eyebrow { color: var(--muted); margin: 0 0 15px; font-size: 10px; }
h1 { font: 400 clamp(44px, 5vw, 64px)/1.07 Georgia, "Times New Roman", serif; letter-spacing: -2.8px; color: var(--ink); margin: 0; }
.heading-dot { color: var(--accent); }
.subtitle { font: italic 19px/1.4 Georgia, serif; color: var(--muted); margin: 10px 0 24px; }
.intro { margin-bottom: 24px; }
.story { font-size: 14px; line-height: 1.75; }
.story p { margin: 0 0 11px; }
.heart { color: var(--accent); font-size: 15px; }
.yc { color: var(--muted); font-size: 12px; }
.motto { color: var(--ink); font: italic 16px/1.5 Georgia, serif; margin: 22px 0 2px; }
.footer { width: 100%; margin: auto auto 0; }
.life-illustration { display: block; width: 100%; height: clamp(190px, 27vh, 310px); object-fit: cover; object-position: center 45%; mix-blend-mode: multiply; mask-image: linear-gradient(to bottom, transparent, black 20%); }

@media (min-width: 761px) and (max-height: 800px) {
  .masthead { height: 60px; }
  main { margin-top: 8px; }
  h1 { font-size: 55px; }
  .eyebrow { margin-bottom: 10px; }
  .subtitle { margin: 8px 0 17px; }
  .story { line-height: 1.65; }
  .story p { margin-bottom: 9px; }
  .motto { margin-top: 16px; }
  .life-illustration { height: 230px; }
}
@media (max-width: 760px) {
  .masthead { width: calc(100% - 44px); height: 74px; }
  main { margin-top: 24px; max-width: 560px; }
  h1 { letter-spacing: -2px; }
  .eyebrow { font-size: 9px; letter-spacing: 1px; }
  .subtitle { font-size: 18px; margin-bottom: 26px; }
  .story { font-size: 15px; line-height: 1.75; }
  .story p { margin-bottom: 17px; }
  .motto { font-size: 15px; max-width: 320px; margin: 26px 0 8px; }
  .life-illustration { height: auto; margin-top: 22px; }
}
@media (prefers-reduced-motion: reduce) { a { transition: none; } }
