
      :root {
        --font-body: "Source Sans 3", system-ui, -apple-system, Segoe UI, sans-serif;
        --font-heading: "Cormorant Garamond", Georgia, serif;
        --radius-card: 16px;
        --radius-pill: 999px;
        --maxw: 1080px;
      }

      html[data-theme="dark"] {
        color-scheme: dark;
        --bg: #0f1712;
        --bg-accent: radial-gradient(
            1200px 600px at 50% -10%,
            rgba(52, 84, 58, 0.35),
            transparent 60%
          );
        --text: #dce7dc;
        --heading: #f2f8f0;
        --muted: #95a697;
        --card-bg: linear-gradient(
          180deg,
          rgba(23, 38, 27, 0.94),
          rgba(14, 24, 17, 0.98)
        );
        --card-border: rgba(120, 157, 123, 0.2);
        --card-hover-border: rgba(161, 196, 158, 0.42);
        --card-hover-bg: rgba(52, 84, 58, 0.16);
        --pill-bg: rgba(196, 223, 196, 0.06);
        --pill-border: rgba(120, 157, 123, 0.28);
        --pill-hover-bg: rgba(68, 111, 74, 0.3);
        --pill-hover-border: rgba(161, 196, 158, 0.56);
        --divider: rgba(120, 157, 123, 0.2);
        --shadow-card: 0 18px 32px rgba(0, 0, 0, 0.22);
        --shadow-card-hover: 0 22px 40px rgba(0, 0, 0, 0.3);
        --accent: #8fbc8a;
      }

      html[data-theme="light"] {
        color-scheme: light;
        --bg: #f5f7f2;
        --bg-accent: radial-gradient(
            1200px 600px at 50% -10%,
            rgba(120, 157, 123, 0.22),
            transparent 60%
          );
        --text: #24312a;
        --heading: #1c2a20;
        --muted: #5f6f61;
        --card-bg: linear-gradient(180deg, #ffffff, #f3f7f0);
        --card-border: rgba(80, 116, 84, 0.22);
        --card-hover-border: rgba(60, 96, 64, 0.45);
        --card-hover-bg: rgba(120, 157, 123, 0.1);
        --pill-bg: rgba(52, 84, 58, 0.06);
        --pill-border: rgba(80, 116, 84, 0.3);
        --pill-hover-bg: rgba(52, 84, 58, 0.12);
        --pill-hover-border: rgba(52, 84, 58, 0.5);
        --divider: rgba(80, 116, 84, 0.2);
        --shadow-card: 0 14px 28px rgba(31, 51, 36, 0.1);
        --shadow-card-hover: 0 18px 34px rgba(31, 51, 36, 0.16);
        --accent: #3f7a4a;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: 1.12rem;
        line-height: 1.7;
        color: var(--text);
        background-color: var(--bg);
        background-image: var(--bg-accent);
        background-repeat: no-repeat;
        min-height: 100vh;
        -webkit-font-smoothing: antialiased;
      }

      a {
        color: var(--accent);
      }

      .wrap {
        max-width: var(--maxw);
        margin: 0 auto;
        padding: 0 1.25rem;
      }

      .topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.25rem 0 0;
      }

      .back-link {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        text-decoration: none;
        color: var(--muted);
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.2s ease;
      }
      .back-link:hover {
        color: var(--heading);
      }

      .theme-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid var(--pill-border);
        background: var(--pill-bg);
        color: inherit;
        font: inherit;
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0.4rem 0.85rem;
        border-radius: var(--radius-pill);
        cursor: pointer;
        transition:
          background-color 0.2s ease,
          border-color 0.2s ease;
      }
      .theme-toggle:hover {
        background: var(--pill-hover-bg);
        border-color: var(--pill-hover-border);
      }

      header.hero {
        padding: 2.75rem 0 0.5rem;
      }
      header.hero h1 {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--heading);
        font-size: clamp(2.6rem, 6vw, 3.6rem);
        line-height: 1.05;
        margin: 0 0 0.5rem;
      }
      header.hero p {
        margin: 0;
        color: var(--muted);
        max-width: 46ch;
        font-size: 1.15rem;
      }

      section.category {
        margin: 2.75rem 0 0;
      }
      .category-head {
        display: flex;
        align-items: baseline;
        gap: 0.75rem;
        border-bottom: 1px solid var(--divider);
        padding-bottom: 0.6rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
      }
      .category-head h2 {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--heading);
        font-size: clamp(1.8rem, 4vw, 2.25rem);
        line-height: 1.1;
        margin: 0;
      }
      .category-head .blurb {
        color: var(--muted);
        font-size: 1rem;
      }

      ul.grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.25rem;
        list-style: none;
        padding: 0;
        margin: 0;
      }

      li.card {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: var(--radius-card);
        padding: 1.4rem 1.4rem 1.5rem;
        box-shadow: var(--shadow-card);
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          border-color 0.2s ease,
          background-color 0.2s ease;
      }
      li.card:hover {
        transform: translateY(-3px);
        border-color: var(--card-hover-border);
        background-color: var(--card-hover-bg);
        box-shadow: var(--shadow-card-hover);
      }
      li.card h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        color: var(--heading);
        font-size: 1.5rem;
        line-height: 1.15;
        margin: 0;
      }
      li.card .desc {
        margin: 0;
        color: var(--text);
        opacity: 0.82;
        font-size: 1rem;
        line-height: 1.55;
      }
      li.card .host {
        margin: 0;
        color: var(--muted);
        font-size: 0.85rem;
        letter-spacing: 0.01em;
        word-break: break-word;
      }
      li.card .actions {
        margin-top: auto;
        padding-top: 0.3rem;
      }
      .visit {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.45rem 1rem;
        border-radius: var(--radius-pill);
        border: 1px solid var(--pill-border);
        background: var(--pill-bg);
        color: inherit;
        text-decoration: none;
        font-size: 0.92rem;
        font-weight: 600;
        transition:
          background-color 0.2s ease,
          border-color 0.2s ease;
      }
      .visit:hover {
        background: var(--pill-hover-bg);
        border-color: var(--pill-hover-border);
      }
      .visit .arrow {
        transition: transform 0.2s ease;
      }
      .visit:hover .arrow {
        transform: translate(2px, -2px);
      }

      footer.page-foot {
        margin: 3.5rem 0 2.5rem;
        padding-top: 1.25rem;
        border-top: 1px solid var(--divider);
        color: var(--muted);
        font-size: 0.95rem;
      }

      .status {
        margin: 2.5rem 0;
        color: var(--muted);
        font-size: 1.05rem;
      }

      @media (max-width: 480px) {
        body {
          font-size: 1.05rem;
        }
      }
    