  :root {
    --sky: #bdd7ec;
    --sky-deep: #9cc0de;
    --cloud: #f7fafc;
    --card: #ffffff;
    --line: #d5e2ec;
    --ink: #1f3a55;
    --muted: #5f7d99;
    --accent: #b4552d;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: Georgia, 'Times New Roman', serif; color: var(--ink);
         background: linear-gradient(180deg, var(--sky) 0%, var(--sky-deep) 100%);
         min-height: 100vh; padding: 32px 24px 80px; }
  .clouds { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
  .cloud { position: absolute; fill: var(--cloud); opacity: 0.9; animation: drift linear infinite; }
  @keyframes drift { from { transform: translateX(-220px); } to { transform: translateX(105vw); } }
  @media (prefers-reduced-motion: reduce) { .cloud, .obj svg { animation: none !important; } }
  header, .filters, .feed { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
  header { margin-bottom: 6px; display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
  h1 { font-size: 30px; font-weight: normal; letter-spacing: 0.5px; }
  h1 span { color: var(--accent); }
  .tagline { font-style: italic; font-size: 13px; color: var(--muted); margin-top: 2px; }
  .updated { font-size: 12px; color: var(--muted); font-family: Arial, sans-serif; margin-top: 4px; }
  .monthnav { font-family: Arial, sans-serif; font-size: 13px; display: flex; gap: 10px; align-self: center; }
  .monthnav a { color: var(--ink); text-decoration: none; border: 1px solid var(--line); background: var(--card); padding: 6px 12px; border-radius: 999px; }
  .monthnav a:hover { background: var(--cloud); }
  .filters { position: sticky; top: 0; z-index: 3; margin: 18px auto 0; padding: 10px 0 12px; display: flex; flex-wrap: wrap; gap: 8px; font-family: Arial, sans-serif; font-size: 12px; background: linear-gradient(180deg, var(--sky) 82%, transparent); }
  .pill { border: 1px solid var(--line); background: var(--card); padding: 5px 11px; cursor: pointer;
          display: inline-flex; align-items: center; gap: 7px; color: var(--ink); border-radius: 999px; }
  .pill .dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
  .pill.off { opacity: 0.35; }
  .pill:hover { border-color: var(--muted); }
  .feed { padding-top: 8px; }
  .dayhead { position: sticky; top: var(--filters-h, 0px); z-index: 2; display: flex; align-items: center; gap: 12px;
             padding: 14px 4px 10px; background: linear-gradient(180deg, var(--sky) 75%, transparent); }
  .dayhead h2 { font-size: 21px; font-weight: normal; }
  .dayhead .todaytag { font-family: Arial, sans-serif; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
                       background: var(--ink); color: var(--cloud); padding: 3px 10px; border-radius: 999px; }
  .obj { width: 30px; height: 30px; flex: none; }
  .obj svg { width: 100%; height: 100%; animation: bob 6s ease-in-out infinite; }
  @keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
  .day { margin-bottom: 26px; }
  .day.past { opacity: 0.55; }
  .evt { display: flex; gap: 12px; width: 100%; text-align: left; font-family: Arial, sans-serif;
         background: var(--card); border: 1px solid var(--line); border-radius: 10px;
         padding: 10px 14px; margin-bottom: 8px; cursor: pointer; color: var(--ink);
         box-shadow: 0 1px 0 rgba(31,58,85,0.06); }
  .evt:hover { border-color: var(--muted); }
  .evt .time { flex: none; width: 74px; font-size: 12px; color: var(--muted); padding-top: 2px; }
  .evt .body { flex: 1; min-width: 0; }
  .evt .title { font-family: Georgia, serif; font-size: 16px; line-height: 1.35; }
  .evt small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
  .evt .cat { flex: none; width: 10px; height: 10px; border-radius: 50%; margin-top: 6px; }
  .jump { position: fixed; right: 22px; bottom: 22px; z-index: 3; font-family: Arial, sans-serif; font-size: 13px;
          background: var(--card); color: var(--ink); border: 1px solid var(--line); border-radius: 999px;
          padding: 9px 16px; cursor: pointer; display: none; }
  .jump:hover { background: var(--cloud); }
  .empty { font-style: italic; color: var(--muted); text-align: center; padding: 40px 0; }
  .overlay { display: none; position: fixed; inset: 0; background: rgba(31,45,60,0.6); z-index: 10;
             align-items: center; justify-content: center; padding: 24px; }
  .overlay.open { display: flex; }
  .modal { background: var(--card); max-width: 860px; width: 100%; max-height: 90vh; overflow: auto;
           padding: 24px; position: relative; border-radius: 12px; }
  .modal .close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 22px;
                  cursor: pointer; color: var(--muted); font-family: Arial, sans-serif; }
  .modal h2 { font-size: 22px; font-weight: normal; margin-bottom: 2px; }
  .modal .biz { font-family: Arial, sans-serif; font-size: 12px; text-transform: uppercase;
                letter-spacing: 1px; margin-bottom: 10px; }
  .modal .meta { font-family: Arial, sans-serif; font-size: 13px; color: var(--muted); margin-bottom: 12px; }
  .modal p { font-size: 15px; line-height: 1.5; margin-bottom: 16px; }
  .modal p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
  .modal .shots { display: flex; gap: 12px; flex-wrap: wrap; }
  .modal .shots img { width: 260px; max-width: 100%; border: 1px solid var(--line); }
