    :root {
      --bg: #f8f5ef;
      --surface: #fffdf8;
      --surface-2: #f1ebdf;
      --ink: #181818;
      --muted: #6f6a60;
      --line: #e5dccb;
      --line-dark: #d6c7ae;
      --gold: #b9975b;
      --gold-dark: #8f6e35;
      --green: #1f7a4d;
      --red: #a13b37;
      --shadow: 0 24px 70px rgba(25, 21, 15, .08);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      background:
        radial-gradient(circle at top left, rgba(185,151,91,.18), transparent 32rem),
        linear-gradient(180deg, #fffaf1 0%, var(--bg) 42%, #f6f0e5 100%);
      color: var(--ink);
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }
    a:hover { color: var(--gold-dark); }

    .container {
      width: min(100% - 32px, var(--max));
      margin-inline: auto;
    }

    .topbar {
      border-bottom: 1px solid rgba(229,220,203,.75);
      background: rgba(255,253,248,.78);
      backdrop-filter: blur(18px);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: -.03em;
      font-size: 1.28rem;
    }

    .brand-mark {
      width: 40px;
      height: 40px;
      border: 1px solid var(--line-dark);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, #fff, #efe4d1);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
      color: var(--gold-dark);
      font-weight: 900;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav-links a {
      font-size: .92rem;
      color: #3b372f;
      padding: 10px 12px;
      border-radius: 999px;
      font-weight: 700;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: #efe7d8;
      color: var(--ink);
    }

    .nav-cta {
      background: var(--ink) !important;
      color: #fff !important;
      padding: 11px 16px !important;
      box-shadow: 0 10px 24px rgba(24,24,24,.15);
    }

    .mobile-menu-button {
      display: none;
      border: 1px solid var(--line);
      background: var(--surface);
      border-radius: 12px;
      padding: 9px 11px;
      font-weight: 800;
    }

    .breadcrumbs {
      padding: 22px 0 0;
      font-size: .9rem;
      color: var(--muted);
    }

    .breadcrumbs a {
      color: #5f5545;
      font-weight: 700;
    }

    .hero { padding: 34px 0 34px; }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .hero-copy {
      background: rgba(255,253,248,.74);
      border: 1px solid rgba(229,220,203,.95);
      border-radius: var(--radius-xl);
      padding: clamp(28px, 5vw, 54px);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-copy::after {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      border: 1px solid rgba(185,151,91,.22);
      border-radius: 50%;
      right: -90px;
      top: -90px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-dark);
      background: rgba(185,151,91,.12);
      border: 1px solid rgba(185,151,91,.22);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: .76rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    h1, h2, h3 {
      line-height: 1.12;
      margin: 0;
      letter-spacing: -.04em;
    }

    h1 {
      margin-top: 20px;
      font-family: "Libre Baskerville", Georgia, serif;
      font-size: clamp(2.45rem, 6vw, 5rem);
      max-width: 820px;
    }

    .hero-subtitle {
      margin: 22px 0 0;
      color: var(--muted);
      font-size: clamp(1.04rem, 1.6vw, 1.25rem);
      max-width: 720px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid var(--line-dark);
      font-weight: 900;
      font-size: .95rem;
      background: var(--surface);
      transition: .18s ease;
      cursor: pointer;
    }

    .button:hover {
      transform: translateY(-1px);
      color: var(--ink);
      box-shadow: 0 14px 30px rgba(25,21,15,.08);
    }

    .button.primary {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
    }

    .button.gold {
      background: linear-gradient(135deg, #c8a768, #a57f3e);
      color: #fff;
      border: none;
    }

    .today-panel {
      background: #151515;
      color: #f8f5ef;
      border-radius: var(--radius-xl);
      padding: clamp(24px, 4vw, 36px);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      min-height: 100%;
    }

    .today-panel::before {
      content: "";
      position: absolute;
      inset: -1px;
      background:
        radial-gradient(circle at 80% 20%, rgba(185,151,91,.30), transparent 20rem),
        radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 16rem);
      pointer-events: none;
    }

    .today-inner { position: relative; z-index: 1; }

    .panel-label {
      color: #d7c39a;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-size: .76rem;
      font-weight: 900;
    }

    .today-date {
      font-size: clamp(2.4rem, 5.4vw, 4.7rem);
      font-weight: 900;
      line-height: .98;
      letter-spacing: -.08em;
      margin-top: 20px;
    }

    .today-weekday {
      font-family: "Libre Baskerville", Georgia, serif;
      font-size: clamp(1.25rem, 2.4vw, 1.9rem);
      margin-top: 18px;
    }

    .today-note {
      color: #cfc5b4;
      margin-top: 12px;
      font-weight: 600;
    }

    .mini-stats {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .mini-stat {
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.06);
      border-radius: 18px;
      padding: 14px;
    }

    .mini-stat span {
      display: block;
      color: #d7c39a;
      font-size: .76rem;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 900;
    }

    .mini-stat strong {
      display: block;
      margin-top: 4px;
      font-size: 1.04rem;
    }

    .search-band {
      width: min(100% - 32px, var(--max));
      margin: 28px auto 0;
    }

    .search-box {
      width: 100%;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 14px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      box-shadow: 0 18px 44px rgba(25,21,15,.06);
    }

    .search-box input {
      border: 0;
      outline: 0;
      padding: 16px 18px;
      background: #f8f3e9;
      border-radius: 18px;
      font: inherit;
      min-width: 0;
    }

    .search-box button {
      border: 0;
      border-radius: 18px;
      padding: 0 22px;
      font-weight: 900;
      background: var(--gold);
      color: white;
      cursor: pointer;
    }

    .quick-links {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 12px;
      color: var(--muted);
      font-size: .92rem;
    }

    .quick-links a {
      border-bottom: 1px solid rgba(143,110,53,.35);
      color: #584b35;
      font-weight: 700;
    }

    section { padding: 38px 0; }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 22px;
      align-items: end;
      margin-bottom: 18px;
    }

    .section-head h2 {
      font-size: clamp(1.75rem, 3vw, 2.7rem);
      font-family: "Libre Baskerville", Georgia, serif;
    }

    .section-head p {
      margin: 8px 0 0;
      color: var(--muted);
      max-width: 760px;
    }

    .view-all {
      color: var(--gold-dark);
      font-weight: 900;
      white-space: nowrap;
    }

    .dashboard {
      background: rgba(255,253,248,.65);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: clamp(20px, 3vw, 30px);
      box-shadow: var(--shadow);
    }

    .split-row,
    .content-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .feature-card,
    .content-card,
    .holiday-main-card,
    .holiday-side-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 28px;
      box-shadow: 0 18px 48px rgba(25,21,15,.045);
    }

    .feature-card h3,
    .content-card h2,
    .content-card h3,
    .holiday-main-card h3,
    .holiday-side-card h3 {
      font-family: "Libre Baskerville", Georgia, serif;
    }

    .feature-card p,
    .content-card p,
    .holiday-main-card p,
    .holiday-side-card p {
      color: var(--muted);
    }

    .holiday-today-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 18px;
      align-items: stretch;
    }

    .holiday-list {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .holiday-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      border: 1px solid var(--line);
      background: #fbf7ef;
      border-radius: 16px;
      padding: 13px 14px;
    }

    .holiday-item strong {
      display: block;
      font-weight: 900;
    }

    .holiday-item span {
      color: var(--gold-dark);
      font-size: .78rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .08em;
      white-space: nowrap;
    }

    .cluster-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .cluster-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: 0 16px 44px rgba(25,21,15,.045);
      transition: .18s ease;
      min-height: 190px;
      position: relative;
      overflow: hidden;
    }

    .cluster-card::after {
      content: "";
      position: absolute;
      inset: auto 18px 18px auto;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(185,151,91,.10);
      border: 1px solid rgba(185,151,91,.16);
    }

    .cluster-card:hover {
      transform: translateY(-2px);
      color: var(--ink);
      box-shadow: 0 22px 54px rgba(25,21,15,.075);
    }

    .cluster-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: #f3ebdd;
      color: var(--gold-dark);
      font-size: 1.25rem;
      margin-bottom: 18px;
    }

    .cluster-card h3 {
      font-size: 1.22rem;
      letter-spacing: -.03em;
    }

    .cluster-card p {
      color: var(--muted);
      margin: 10px 0 0;
      font-size: .95rem;
      position: relative;
      z-index: 1;
    }

    .cluster-links {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 18px;
      position: relative;
      z-index: 1;
    }

    .cluster-links span,
    .tag {
      border: 1px solid var(--line);
      background: #faf6ee;
      color: #5f5648;
      border-radius: 999px;
      padding: 6px 9px;
      font-size: .78rem;
      font-weight: 800;
      display: inline-flex;
      white-space: nowrap;
    }

    .tag.gold {
      background: rgba(185,151,91,.16);
      color: var(--gold-dark);
      border-color: rgba(185,151,91,.28);
    }

    .tag.green {
      background: rgba(31,122,77,.10);
      color: var(--green);
      border-color: rgba(31,122,77,.18);
    }

    .table-wrap {
      overflow-x: auto;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--surface);
      box-shadow: 0 18px 48px rgba(25,21,15,.045);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      min-width: 920px;
    }

    th, td {
      padding: 15px 16px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
      font-size: .94rem;
    }

    th {
      background: #f7efe2;
      color: #5f5545;
      text-transform: uppercase;
      letter-spacing: .08em;
      font-size: .76rem;
      font-weight: 900;
    }

    tr:last-child td { border-bottom: 0; }

    .month-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .month-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 17px;
      box-shadow: 0 14px 34px rgba(25,21,15,.035);
      transition: .18s ease;
    }

    .month-card:hover {
      transform: translateY(-2px);
      background: #fffaf1;
      color: var(--ink);
      box-shadow: 0 20px 46px rgba(25,21,15,.07);
    }

    .month-card span {
      display: block;
      color: var(--muted);
      font-size: .8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .month-card strong {
      display: block;
      font-size: 1.12rem;
      letter-spacing: -.03em;
      margin-top: 6px;
    }

    .link-list {
      display: grid;
      gap: 9px;
    }

    .link-list a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fbf7ef;
      font-weight: 900;
    }

    .link-list a::after {
      content: "→";
      color: var(--gold-dark);
    }

    .note-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .note-item {
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 14px;
      background: #fbf7ef;
    }

    .note-item strong {
      display: block;
      margin-bottom: 4px;
    }

    .note-item span {
      color: var(--muted);
      font-size: .95rem;
    }

    .faq {
      display: grid;
      gap: 12px;
    }

    details {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 16px 18px;
    }

    summary {
      cursor: pointer;
      font-weight: 900;
    }

    details p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .updated-note {
      color: var(--muted);
      font-size: .93rem;
      margin-top: 14px;
    }

    footer {
      background: #111;
      color: #f5f0e8;
      padding: 46px 0;
      margin-top: 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, .7fr);
      gap: 26px;
    }

    footer p, footer a { color: #c9c0b2; }

    footer h3 {
      font-size: 1rem;
      margin-bottom: 12px;
      letter-spacing: 0;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.12);
      margin-top: 34px;
      padding-top: 20px;
      color: #a99f91;
      font-size: .9rem;
    }

    @media (max-width: 980px) {
      .hero-grid,
      .holiday-today-grid,
      .split-row,
      .content-grid {
        grid-template-columns: 1fr;
      }

      .cluster-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .month-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .nav-links {
        display: none;
        width: 100%;
        padding-bottom: 16px;
      }

      .nav-links.open {
        display: flex;
        justify-content: flex-start;
      }

      .nav { flex-wrap: wrap; }

      .mobile-menu-button { display: block; }
    }

    @media (max-width: 620px) {
      .container,
      .search-band {
        width: min(100% - 22px, var(--max));
      }

      .hero { padding-top: 26px; }

      .cluster-grid,
      .month-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .mini-stats,
      .search-box {
        grid-template-columns: 1fr;
      }

      .search-box button { min-height: 48px; }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .holiday-item {
        align-items: flex-start;
        flex-direction: column;
      }

      table { min-width: 860px; }
    }