  :root {
    --forest: #2f4a2a; --moss: #4a6b3e; --sage: #8aa57a; --sage-pale: #c9d4ba;
    --cream: #f6efe1; --paper: #faf5e9; --paper-dark: #ede4cf;
    --bark: #4a3424; --bark-soft: #6b4d33;
    --terracotta: #b06a45; --terracotta-pale: #d99e7e; --gold: #c89b56;
    --ink: #2a221b; --muted: #6b5d4b; --rule: rgba(74, 52, 36, 0.16);
    --serif: 'Fraunces', 'Georgia', serif;
    --sans: 'Outfit', system-ui, sans-serif;
    --hand: 'Caveat', cursive;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; scroll-padding-top: 90px; }
  body {
    font-family: var(--sans); color: var(--ink); background: var(--paper);
    line-height: 1.65; overflow-x: hidden;
    background-image:
      radial-gradient(ellipse 60% 40% at 15% 20%, rgba(176, 106, 69, 0.05) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 85% 80%, rgba(74, 107, 62, 0.04) 0%, transparent 55%),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='3' seed='8'/%3E%3CfeColorMatrix values='0 0 0 0 0.29 0 0 0 0 0.20 0 0 0 0 0.14 0 0 0 0.05 0'/%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.018em; line-height: 1.1; color: var(--ink); }
  h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); font-variation-settings: "SOFT" 70, "opsz" 144; }
  h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-variation-settings: "SOFT" 60, "opsz" 100; }
  h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-variation-settings: "SOFT" 50, "opsz" 48; }
  em { font-style: italic; font-variation-settings: "SOFT" 100; }
  .label { font-family: var(--sans); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--moss); }

  /* NAV */
  .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 48px; background: rgba(250, 245, 233, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--rule); transition: padding 0.25s ease; }
  .nav.scrolled { padding: 12px 48px; box-shadow: 0 2px 24px rgba(74, 52, 36, 0.05); }
  .nav-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .brand { display: flex; align-items: baseline; gap: 10px; font-family: var(--serif); font-size: 1.55rem; color: var(--forest); font-variation-settings: "SOFT" 80; }
  .brand .leaf { width: 22px; height: 22px; color: var(--moss); transform: translateY(2px); }
  .brand em { color: var(--bark-soft); font-size: 0.92em; font-variation-settings: "SOFT" 100; }
  .brand-img { height: 48px; width: auto; display: block; transition: opacity 0.2s ease; }
  .brand:hover .brand-img { opacity: 0.82; }
  @media (max-width: 600px) {
    .brand-img { height: 40px; }
  }
  @media (max-width: 420px) {
    .brand-img { height: 36px; }
  }
  .nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
  .nav-links > li > a { display: inline-block; padding: 10px 16px; font-size: 0.94rem; color: var(--ink); border-radius: 999px; transition: all 0.2s ease; }
  .nav-links > li > a:hover { background: rgba(74, 107, 62, 0.08); color: var(--forest); }
  .dropdown { position: relative; }
  .dropdown > a::after { content: ''; display: inline-block; margin-left: 6px; width: 6px; height: 6px; border-right: 1.4px solid currentColor; border-bottom: 1.4px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform 0.2s ease; }
  .dropdown:hover > a::after { transform: translateY(1px) rotate(225deg); }
  .dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px); min-width: 230px; padding-top: 10px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease; }
  .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
  .dropdown-menu-inner { background: var(--paper); border: 1px solid var(--rule); border-radius: 14px; padding: 8px; box-shadow: 0 12px 36px rgba(74, 52, 36, 0.13); list-style: none; }
  .dropdown-menu a { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: 10px; font-size: 0.9rem; color: var(--bark); white-space: nowrap; }
  .dropdown-menu a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex-shrink: 0; transition: background 0.2s ease, transform 0.2s ease; }
  .dropdown-menu a:hover { background: rgba(74, 107, 62, 0.09); color: var(--forest); }
  .dropdown-menu a:hover::before { background: var(--terracotta); transform: scale(1.4); }
  .nav-cta { padding: 10px 22px !important; background: var(--forest); color: var(--cream) !important; border-radius: 999px !important; font-weight: 500; transition: all 0.25s ease !important; }
  .nav-cta:hover { background: var(--bark); transform: translateY(-1px); }
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
  .nav-toggle svg { width: 26px; height: 26px; }

  /* PAGE HEADER */
  .page-header { padding: 170px 48px 90px; text-align: center; position: relative; overflow: hidden; }
  .page-header::before, .page-header::after { content: ''; position: absolute; pointer-events: none; opacity: 0.5; }
  .page-header::before { top: 130px; left: -30px; width: 240px; height: 240px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' fill='none'%3E%3Ccircle cx='160' cy='80' r='9' fill='%234a6b3e' opacity='0.45'/%3E%3Ccircle cx='200' cy='130' r='6' fill='%23b06a45' opacity='0.5'/%3E%3Ccircle cx='140' cy='160' r='11' fill='%234a6b3e' opacity='0.4'/%3E%3Ccircle cx='180' cy='40' r='4' fill='%23c89b56' opacity='0.65'/%3E%3Ccircle cx='220' cy='90' r='5' fill='%23b06a45' opacity='0.35'/%3E%3Ccircle cx='190' cy='200' r='7' fill='%234a6b3e' opacity='0.35'/%3E%3Ccircle cx='150' cy='110' r='3' fill='%23c89b56' opacity='0.55'/%3E%3C/svg%3E") no-repeat; }
  .page-header::after { top: 110px; right: -30px; width: 220px; height: 220px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240' fill='none'%3E%3Ccircle cx='80' cy='80' r='9' fill='%234a6b3e' opacity='0.45'/%3E%3Ccircle cx='40' cy='130' r='6' fill='%23b06a45' opacity='0.5'/%3E%3Ccircle cx='100' cy='160' r='11' fill='%234a6b3e' opacity='0.4'/%3E%3Ccircle cx='60' cy='40' r='4' fill='%23c89b56' opacity='0.65'/%3E%3Ccircle cx='20' cy='90' r='5' fill='%23b06a45' opacity='0.35'/%3E%3Ccircle cx='50' cy='200' r='7' fill='%234a6b3e' opacity='0.35'/%3E%3Ccircle cx='90' cy='110' r='3' fill='%23c89b56' opacity='0.55'/%3E%3C/svg%3E") no-repeat; }
  .page-header-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
  .page-header .label { display: inline-block; margin-bottom: 22px; }
  .page-header h1 { margin-bottom: 28px; }
  .page-header h1 em { color: var(--terracotta); }
  .page-header p { font-size: 1.12rem; color: var(--bark-soft); line-height: 1.65; max-width: 620px; margin: 0 auto; }
  .page-header-flourish { margin-top: 36px; display: inline-flex; align-items: center; gap: 12px; color: var(--moss); opacity: 0.7; }
  .page-header-flourish .line { width: 32px; height: 1px; background: currentColor; }
  .page-header-flourish svg { width: 18px; height: 18px; color: var(--moss); }

  /* PROGRAMS ARCHIVE */
  .programs-archive { padding: 50px 48px 110px; }
  .programs-archive-inner { max-width: 1180px; margin: 0 auto; }

  .year-group { margin-bottom: 80px; }
  .year-group:last-child { margin-bottom: 0; }
  .year-header {
    display: flex; align-items: center; gap: 24px;
    margin-bottom: 36px;
  }
  .year-header h2 {
    font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest); font-variation-settings: "SOFT" 100, "opsz" 100;
    font-style: italic;
  }
  .year-header .line {
    flex: 1; height: 1px; background: var(--rule);
  }
  .year-header .count {
    font-family: var(--serif); font-style: italic; color: var(--terracotta);
    font-size: 1rem; font-variation-settings: "SOFT" 100;
  }

  .program-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  }
  .program-card {
    background: var(--paper); border: 1px solid var(--rule);
    border-radius: 14px; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex; flex-direction: column;
    cursor: pointer;
  }
  .program-card:hover {
    border-color: var(--moss); transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(74, 52, 36, 0.12);
  }
  .program-card-img {
    aspect-ratio: 4/5; position: relative; overflow: hidden;
    background-size: cover; background-position: center top;
    background-color: var(--paper);
  }
  .program-card-img .photo-tape {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-2deg);
    width: 70px; height: 22px;
    background: linear-gradient(180deg, rgba(176, 106, 69, 0.4), rgba(176, 106, 69, 0.2));
    border-radius: 2px; opacity: 0; transition: opacity 0.3s;
  }
  .program-card:hover .program-card-img .photo-tape { opacity: 1; }
  .program-card-empty { cursor: default; }
  .program-card-empty:hover { transform: none; box-shadow: 0 6px 16px rgba(74, 52, 36, 0.06); }
  .program-card-empty:hover .program-card-img .photo-tape { opacity: 0; }
  .program-date-badge {
    position: absolute; top: 10px; left: 10px;
    background: rgba(246, 239, 225, 0.94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: 9px;
    padding: 5px 9px; text-align: center; min-width: 42px;
    box-shadow: 0 3px 12px rgba(74, 52, 36, 0.18);
  }
  .program-date-badge .month {
    font-size: 0.55rem; text-transform: uppercase;
    letter-spacing: 0.16em; color: var(--terracotta); font-weight: 500;
  }
  .program-date-badge .day {
    font-family: var(--serif); font-size: 1.1rem; color: var(--forest);
    line-height: 1; margin-top: 2px; font-variation-settings: "SOFT" 80;
  }

  .program-card-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
  .program-card .program-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--serif); font-style: italic; font-size: 0.72rem;
    color: var(--terracotta); font-variation-settings: "SOFT" 100;
    margin-bottom: 6px;
  }
  .program-card .program-tag::before {
    content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--terracotta);
  }
  .program-card h3 { margin-bottom: 8px; color: var(--ink); font-size: 1.02rem; line-height: 1.25; }
  .program-card p { color: var(--bark-soft); font-size: 0.78rem; line-height: 1.5; flex: 1; }
  .program-card .view-more {
    margin-top: 12px;
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--forest); font-weight: 500; font-size: 0.75rem;
    border-bottom: 1px solid currentColor; padding-bottom: 2px;
    align-self: flex-start;
    transition: gap 0.25s ease, color 0.2s;
  }
  .program-card:hover .view-more { gap: 12px; color: var(--terracotta); }
  .program-card .view-more svg { width: 11px; height: 11px; }

  /* SUGGEST CTA */
  .suggest-cta { padding: 110px 48px; background: var(--forest); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
  .suggest-cta::before { content: ''; position: absolute; pointer-events: none; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 15% 30%, rgba(201, 212, 186, 0.15), transparent 40%), radial-gradient(circle at 85% 70%, rgba(217, 158, 126, 0.12), transparent 45%); }
  .suggest-cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
  .suggest-cta .label { color: var(--terracotta-pale); display: inline-block; margin-bottom: 18px; }
  .suggest-cta h2 { color: var(--cream); margin-bottom: 20px; font-size: clamp(2rem, 4vw, 3rem); }
  .suggest-cta p { color: var(--sage-pale); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
  .suggest-cta a { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; background: var(--cream); color: var(--forest); border-radius: 999px; font-weight: 500; font-size: 0.96rem; transition: all 0.3s cubic-bezier(0.34, 1.4, 0.64, 1); }
  .suggest-cta a:hover { background: var(--terracotta-pale); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2); }
  .suggest-cta a svg { width: 16px; height: 16px; transition: transform 0.25s; }
  .suggest-cta a:hover svg { transform: translateX(4px); }

  /* LIGHTBOX */
  .modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(42, 34, 27, 0.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.3s ease, visibility 0.3s ease; }
  .modal-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
  .modal-box { position: relative; max-width: 800px; width: 100%; transform: scale(0.96); transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1); }
  .modal-overlay.open .modal-box { transform: scale(1); }
  .modal-img { width: 100%; height: min(72vh, 720px); border-radius: 18px; background-size: contain; background-position: center; background-repeat: no-repeat; background-color: var(--paper); box-shadow: 0 32px 80px rgba(0,0,0,0.4); }
  .modal-thumbs-wrap { position: relative; margin-top: 14px; }
  .modal-thumbs {
    display: flex; gap: 8px;
    overflow-x: auto; scroll-behavior: smooth;
    padding: 4px 36px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .modal-thumbs::-webkit-scrollbar { display: none; }
  .modal-thumb { flex-shrink: 0; width: 64px; height: 64px; border-radius: 8px; background-size: cover; background-position: center; cursor: pointer; border: 2px solid rgba(246, 239, 225, 0.4); transition: border-color 0.2s, transform 0.2s; padding: 0; background-color: var(--paper); }
  .modal-thumb.active { border-color: var(--gold); }
  .modal-thumb:hover { transform: scale(1.06); }
  .thumbs-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 32px; height: 32px;
    background: rgba(74, 52, 36, 0.78); border: none; border-radius: 50%;
    color: var(--paper); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 3; padding: 0;
    transition: background 0.2s, opacity 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
  .thumbs-arrow svg { width: 18px; height: 18px; }
  .thumbs-arrow:hover { background: var(--bark); }
  .thumbs-arrow-prev { left: 2px; }
  .thumbs-arrow-next { right: 2px; }
  .thumbs-arrow[hidden] { display: none; }
  .modal-caption { text-align: center; color: var(--cream); margin-top: 18px; font-family: var(--serif); font-size: 1.1rem; font-style: italic; font-variation-settings: "SOFT" 100; }
  .modal-caption-sub { display: block; font-style: normal; font-family: var(--sans); font-size: 0.85rem; color: var(--sage-pale); margin-top: 6px; letter-spacing: 0.06em; }
  .modal-close { position: absolute; top: -18px; right: -18px; width: 40px; height: 40px; border-radius: 50%; background: var(--cream); color: var(--bark); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,0.3); transition: transform 0.2s; }
  .modal-close:hover { transform: scale(1.1) rotate(90deg); }
  .modal-close svg { width: 16px; height: 16px; }

  /* FOOTER */
  .footer { background: var(--bark); color: var(--cream); padding: 90px 48px 32px; }
  .footer-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
  .footer-brand { max-width: 360px; }
  .footer-brand .brand { color: var(--cream); margin-bottom: 20px; }
  .footer-brand .brand em { color: var(--terracotta-pale); }
  .footer-brand p { color: rgba(246, 239, 225, 0.65); line-height: 1.7; font-size: 0.96rem; }
  .footer-brand .signoff { margin-top: 22px; font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--terracotta-pale); font-variation-settings: "SOFT" 100; }
  .footer-col h4 { font-family: var(--sans); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--terracotta-pale); margin-bottom: 22px; font-weight: 500; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a { color: rgba(246, 239, 225, 0.75); font-size: 0.94rem; transition: color 0.2s ease; }
  .footer-col a:hover { color: var(--cream); }
  .footer-bottom { max-width: 1240px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(246, 239, 225, 0.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 0.84rem; color: rgba(246, 239, 225, 0.5); }
  .footer-bottom em { font-family: var(--serif); font-style: italic; color: var(--terracotta-pale); }

  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.2, 0.64, 1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 980px) {
    .nav { padding: 14px 24px; }
    .nav.scrolled { padding: 10px 24px; }
    .nav-toggle { display: block; }
    .nav-links { position: fixed; top: 70px; left: 16px; right: 16px; flex-direction: column; align-items: stretch; gap: 4px; background: var(--paper); border: 1px solid var(--rule); border-radius: 18px; padding: 14px; box-shadow: 0 24px 48px rgba(74, 52, 36, 0.15); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all 0.3s ease; }
    .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-links > li { width: 100%; }
    .nav-links > li > a { display: block; }
    .dropdown-menu,
    .dropdown:hover .dropdown-menu,
    .dropdown:focus-within .dropdown-menu { position: static; transform: none; max-height: 0; overflow: hidden; opacity: 0; visibility: visible; pointer-events: auto; padding: 0; transition: max-height 0.35s ease, opacity 0.25s ease; }
    .dropdown.open .dropdown-menu { max-height: 500px; opacity: 1; transform: none; }
    .dropdown.open > a::after { transform: translateY(1px) rotate(225deg); }
    .dropdown-menu-inner { background: transparent; border: none; box-shadow: none; padding: 4px 8px 8px 26px; }
    .page-header { padding: 130px 24px 60px; }
    .page-header::before, .page-header::after { display: none; }
    .programs-archive { padding: 30px 24px 80px; }
    .program-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .suggest-cta { padding: 80px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 600px) {
    .program-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }
  @media (hover: none) {
    .program-card:active { transform: scale(0.98); }
  }
  @media (max-width: 420px) {
    .nav { padding: 12px 16px; }
    .page-header { padding: 120px 18px 50px; }
    .programs-archive { padding: 30px 12px 70px; }
    .program-grid { gap: 10px; }
    .program-card-body { padding: 10px 12px 12px; }
    .program-card h3 { font-size: 0.92rem; margin-bottom: 6px; }
    .program-card p { font-size: 0.72rem; }
    .program-card .program-tag { font-size: 0.66rem; margin-bottom: 4px; }
    .program-card .view-more { font-size: 0.7rem; margin-top: 8px; }
    .program-date-badge { top: 8px; left: 8px; padding: 4px 7px; min-width: 36px; }
    .program-date-badge .day { font-size: 0.95rem; }
    .program-date-badge .month { font-size: 0.5rem; }
    .year-header { gap: 14px; margin-bottom: 28px; }
    .suggest-cta { padding: 70px 18px; }
  }
