  :root {
    --navy:      #013461;
    --navy-l:    #0a4f8f;
    --ink:       #0a0e14;
    --paper:     #f5f8fc;
    --paper-d:   #e4ecf5;
    --rule:      #b8cde0;
    --accent:    #025a9e;
    --link:      #013461;
    --link-h:    #0a4f8f;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Open Sans', Helvetica, sans-serif;
    font-weight: 400;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
    max-width: 60em;
    margin: 0 auto;
    padding: 0 1.5em 4em;
  }

  /* ── HERO ── */
  .hero {
    text-align: center;
    padding: 4em 0 2.5em;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 2.5em;
    animation: fadeDown 0.7s ease both;
  }

  .hero-title {
    font-family: 'Merriweather', Georgia, serif;
    /*font-weight: 400;*/
    font-size: clamp(3rem, 10vw, 5.5rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.05;
  }

  .hero-sub {
    margin-top: 0.75em;
    font-size: 1.1rem;
    color: #2a4a6a;
    font-style: italic;
    max-width: 36em;
    margin-inline: auto;
  }

  .hero-cta {
    display: inline-block;
    margin-top: 1.5em;
    background: var(--navy);
    color: #FFD535;
    text-decoration: none;
    padding: 0.55em 1.6em;
    border-radius: 2px;
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.03em;
    transition: background 0.2s;
  }
  .hero-cta:hover { background: var(--navy-l); }

  /* ── KEYWORD BAND ── */
  .keywords { 
    background: var(--paper-d);
    border: 1px solid var(--rule);
    border-radius: 3px;
    padding: 0.8em 1.2em;
    font-size: 0.82rem;
    color: #2a4a6a;
    line-height: 1.6;
    margin-bottom: 3em;
    animation: fadeUp 0.7s 0.15s ease both;
  }
  .keywords strong { color: var(--navy); }

  /* ── SECTIONS ── */
  main { animation: fadeUp 0.7s 0.25s ease both; }

  section { margin-bottom: 3em; }

  h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 600;
    font-size: 1.45rem;
    color: var(--navy);
    border-bottom: 1px solid var(--rule);
    padding-bottom: 0.3em;
    margin-bottom: 0.9em;
  }

  h3 {
    font-family: 'Merriweather', Georgia, serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--accent);
    margin: 1.2em 0 0.5em;
  }

  p { margin-bottom: 0.8em; }

  /* ── LISTS ── */
  ul {
    list-style: none;
    padding: 0;
  }

  ul li {
    padding: 0.3em 0 0.3em 1.4em;
    position: relative;
    border-bottom: 1px dotted var(--rule);
  }
  ul li:last-child { border-bottom: none; }

  ul li::before {
    content: '♩';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-size: 0.75em;
    top: 0.45em;
  }

  /* ── LINKS ── */
  a {
    color: var(--link);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 3px;
    transition: color 0.15s, text-decoration-color 0.15s;
  }
  a:hover {
    color: var(--link-h);
    text-decoration-color: var(--link-h);
  }

  /* ── BOOK ENTRY ── */
  .book {
    display: flex;
    gap: 1em;
    align-items: flex-start;
    padding: 0.4em 0 0.4em 1.4em;
    border-bottom: 1px dotted var(--rule);
    position: relative;
  }
  .book::before {
    content: '♩';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-size: 0.75em;
    top: 0.7em;
  }
  .book:last-child { border-bottom: none; }
  .book img {
    width: 52px;
    flex-shrink: 0;
    border: 1px solid var(--rule);
    box-shadow: 2px 2px 6px rgba(0,0,0,0.12);
  }

  /* ── NOTICE (abandoned links) ── */
  .muted { color: #aaa; text-decoration: line-through; font-style: italic; }

  /* ── FOOTER ── */
  footer {
    margin-top: 3em;
    padding-top: 1em;
    border-top: 1px solid var(--rule);
    font-size: 0.82rem;
    color: #999;
    text-align: right;
  }
  footer a { color: #999; }
  footer a:hover { color: var(--link-h); }

  /* ── ANIMATIONS ── */
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
