  :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%3C/filter%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.6rem, 6.4vw, 5.4rem); font-variation-settings: "SOFT" 70, "opsz" 144; }
  h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-variation-settings: "SOFT" 60, "opsz" 100; }
  h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-variation-settings: "SOFT" 50, "opsz" 48; }
  h4 { font-size: 1rem; }
  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 {
    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; }

  .hero {
    position: relative; min-height: 92vh;
    padding: 150px 48px 80px;
    overflow: hidden;
  }
  .hero-grid {
    max-width: 1320px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: end;
    min-height: 70vh;
  }
  .hero-content { position: relative; z-index: 2; padding-bottom: 24px; }
  .hero .label { display: inline-block; margin-bottom: 28px; }
  .hero .label::before {
    content: ''; display: inline-block; width: 28px; height: 1px;
    background: var(--moss); vertical-align: middle; margin-right: 12px;
  }
  .hero h1 { font-size: clamp(2rem, 4.6vw, 3.8rem); letter-spacing: -0.025em; }
  .hero h1 em { color: var(--terracotta); }
  .hero-lede {
    font-size: 1.18rem; color: var(--bark-soft); max-width: 520px;
    margin: 32px 0 36px; line-height: 1.6;
  }
  .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 999px;
    font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
    border: none;
  }
  .btn-primary { background: var(--forest); color: var(--cream); }
  .btn-primary:hover { background: var(--bark); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(47, 74, 42, 0.22); }
  .btn-primary svg { transition: transform 0.3s ease; }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-quiet {
    background: transparent; color: var(--bark);
    padding: 15px 18px;
    border-bottom: 1.5px solid var(--bark); border-radius: 0;
  }
  .btn-quiet:hover { color: var(--terracotta); border-color: var(--terracotta); }

  .hero-collage {
    position: relative; aspect-ratio: 4/5; max-width: 460px; justify-self: end;
    margin-bottom: -40px;
  }
  .collage-frame-main {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, var(--sage-pale) 0%, var(--cream) 60%, var(--terracotta-pale) 100%);
    border-radius: 240px 240px 24px 24px;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(74, 52, 36, 0.18);
  }
  .collage-frame-main::after {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 35% 30%, rgba(255,255,255,0.45), transparent 55%);
    background-size: cover;
  }
  .collage-tape {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-2deg);
    width: 90px; height: 26px;
    background: linear-gradient(180deg, rgba(176, 106, 69, 0.45), rgba(176, 106, 69, 0.25));
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(74, 52, 36, 0.1);
  }
  .collage-pin {
    position: absolute; bottom: -22px; right: -16px;
    background: var(--paper); border: 1px solid var(--rule);
    padding: 12px 18px; border-radius: 12px;
    transform: rotate(3deg);
    box-shadow: 0 12px 28px rgba(74, 52, 36, 0.14);
    font-family: var(--serif); font-size: 0.95rem; color: var(--forest);
    text-decoration: none;
    display: block;
    transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s;
  }
  .collage-pin:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 0 18px 36px rgba(74, 52, 36, 0.18);
  }
  .collage-pin .pin-label {
    font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--terracotta); margin-bottom: 2px;
    display: flex; align-items: center; gap: 6px;
  }
  .collage-pin .pin-label::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--terracotta);
    animation: pulse 2.5s ease-in-out infinite;
  }
  .collage-pin em { color: var(--bark); }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

  /* Hero collage */
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @keyframes fadeIn { to { opacity: 0.85; } }

  section { padding: 110px 48px; position: relative; }
  .container { max-width: 1240px; margin: 0 auto; }

  /* ============ FEATURED EVENT ============ */
  .featured-event {
    padding: 60px 48px;
    background: linear-gradient(135deg, #f5f3f0 0%, #ede8e3 100%);
    border-bottom: 2px solid #d4c4a8;
  }

  .featured-event .container {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .featured-event-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
  }

  .featured-flyer {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  .featured-flyer img {
    width: 100%;
    height: auto;
    display: block;
  }

  .featured-event-cta {
    flex: 1;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .featured-event-cta .btn {
    flex: 0 1 auto;
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .featured-event .container {
      flex-direction: column;
      align-items: stretch;
    }

    .featured-event-content {
      flex-direction: column;
    }

    .featured-flyer {
      width: 100%;
      max-width: 350px;
      margin: 0 auto;
    }

    .featured-event-cta {
      justify-content: center;
    }
  }

  @media (max-width: 600px) {
    .featured-event {
      padding: 40px 24px;
    }

    .featured-flyer {
      width: 100%;
    }

    .featured-event-cta {
      flex-direction: column;
    }

    .featured-event-cta .btn {
      width: 100%;
      text-align: center;
    }
  }

  .about { padding: 140px 48px 130px; position: relative; }
  .about-grid {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start;
  }
  .about-meta { padding-top: 12px; }
  .about-meta .label { display: block; margin-bottom: 24px; }
  .about-meta h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
  .about-text { font-size: 1.08rem; color: var(--bark); line-height: 1.75; }
  .about-text p { margin-bottom: 22px; }
  .about-text p:first-of-type::first-letter {
    font-family: var(--serif); font-size: 4.2rem; line-height: 0.85;
    float: left; padding: 6px 14px 0 0; color: var(--terracotta);
    font-variation-settings: "SOFT" 100;
    font-style: italic;
  }
  .about-text .signature {
    margin-top: 32px; font-family: var(--hand); font-size: 1.6rem;
    color: var(--moss); display: inline-block;
  }
  .inline-link {
    color: var(--forest); font-weight: 500;
    border-bottom: 1.5px solid var(--sage);
    transition: color 0.2s, border-color 0.2s;
  }
  .inline-link:hover { color: var(--terracotta); border-bottom-color: var(--terracotta); }

  .pullstats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    margin: 80px auto 0; max-width: 1000px;
    border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  }
  .pullstat { padding: 36px 24px; text-align: center; }
  .pullstat:not(:last-child) { border-right: 1px solid var(--rule); }
  .pullstat .num {
    font-family: var(--serif); font-size: clamp(3rem, 5vw, 4.2rem);
    color: var(--forest); line-height: 1;
    font-variation-settings: "SOFT" 90;
  }
  .pullstat .num em { color: var(--terracotta); font-variation-settings: "SOFT" 100; font-style: italic; }
  .pullstat .label { display: block; margin-top: 14px; }

  .quote-section {
    padding: 100px 48px;
    background: var(--cream);
    position: relative; text-align: center;
  }
  .quote-section::before, .quote-section::after {
    content: ''; position: absolute; left: 0; right: 0; height: 30px;
    background-size: 100% 100%; background-repeat: no-repeat;
  }
  .quote-section::before {
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath d='M0 30 Q 360 0, 720 18 T 1440 8 V0 H0 Z' fill='%23faf5e9'/%3E%3C/svg%3E");
  }
  .quote-section::after {
    bottom: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 30' preserveAspectRatio='none'%3E%3Cpath d='M0 0 Q 360 30, 720 12 T 1440 22 V30 H0 Z' fill='%23faf5e9'/%3E%3C/svg%3E");
  }
  .quote-mark {
    font-family: var(--serif); font-size: 5rem; color: var(--terracotta);
    line-height: 0.5; margin-bottom: 16px; font-style: italic;
    font-variation-settings: "SOFT" 100;
  }
  .quote-text {
    font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    color: var(--bark); font-style: italic; line-height: 1.4;
    max-width: 760px; margin: 0 auto;
    font-variation-settings: "SOFT" 80;
  }
  .quote-cite {
    margin-top: 32px;
    font-family: var(--sans); font-size: 0.85rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--moss);
  }

  .events { padding: 130px 48px; }
  .events-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 60px; gap: 40px; flex-wrap: wrap;
  }
  .events-head h2 { max-width: 540px; }
  .events-head .meta { color: var(--muted); max-width: 380px; font-size: 0.98rem; }
  .events-head .label { display: block; margin-bottom: 16px; }

  .events-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
  }
  .event-card {
    background: var(--paper); border: 1px solid var(--rule);
    border-radius: 24px; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    display: flex; flex-direction: column;
  }
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(74, 52, 36, 0.13);
    border-color: var(--moss);
  }
  .event-card-img {
    position: relative; flex-grow: 0;
    background: linear-gradient(135deg, var(--sage-pale), var(--cream));
    overflow: hidden;
  }
  .event-card.featured .event-card-img { aspect-ratio: 4/3; }
  .event-card:not(.featured) .event-card-img { aspect-ratio: 16/9; }
  .date-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--paper); border-radius: 14px;
    padding: 10px 14px; text-align: center;
    box-shadow: 0 4px 16px rgba(74, 52, 36, 0.15);
    min-width: 64px;
  }
  .date-badge .month { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--terracotta); font-weight: 500; }
  .date-badge .day { font-family: var(--serif); font-size: 1.6rem; color: var(--forest); line-height: 1; margin-top: 2px; font-variation-settings: "SOFT" 80; }

  .event-card-body { padding: 30px 32px 32px; flex: 1; display: flex; flex-direction: column; }
  .event-meta-row {
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
    font-size: 0.84rem; color: var(--muted); margin-bottom: 14px;
  }
  .event-meta-row .pin { display: inline-flex; align-items: center; gap: 6px; }
  .event-meta-row svg { width: 14px; height: 14px; color: var(--moss); }
  .event-meta-row .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
  .event-card h3 { margin-bottom: 12px; }
  .event-card p { color: var(--bark-soft); margin-bottom: 24px; flex: 1; font-size: 0.96rem; }
  .arrow-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--forest); font-weight: 500; font-size: 0.92rem;
    border-bottom: 1px solid currentColor; padding-bottom: 3px;
    transition: gap 0.25s ease; align-self: flex-start;
  }
  .arrow-link:hover { gap: 14px; color: var(--terracotta); }

  .field-notes {
    padding: 80px 48px;
    background: linear-gradient(180deg, transparent, rgba(176, 106, 69, 0.04));
  }
  .field-notes-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start;
  }
  .field-notes-tag {
    font-family: var(--hand); font-size: 1.6rem; color: var(--terracotta);
    transform: rotate(-3deg); position: sticky; top: 100px;
  }
  .field-notes-tag::after {
    content: ''; display: block; width: 60px; height: 1px;
    background: var(--terracotta); opacity: 0.5; margin-top: 8px;
    transform: rotate(2deg);
  }
  .field-notes-list { list-style: none; }
  .field-notes-list li {
    padding: 22px 0; border-bottom: 1px dashed var(--rule);
    display: grid; grid-template-columns: auto 1fr; gap: 20px;
    align-items: baseline;
  }
  .field-notes-list li:last-child { border-bottom: none; }
  .field-notes-list .when {
    font-family: var(--serif); font-style: italic; color: var(--terracotta);
    font-size: 0.95rem; min-width: 80px;
  }
  .field-notes-list .what { color: var(--bark); font-size: 1rem; line-height: 1.55; }
  .field-notes-list .what strong { color: var(--ink); font-weight: 500; }

  .speakers { background: var(--cream); padding: 130px 48px; }
  .speakers-head { text-align: center; max-width: 720px; margin: 0 auto 70px; }
  .speakers-head .label { display: block; margin-bottom: 18px; }
  .speakers-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    max-width: 1100px; margin: 0 auto;
  }
  .speaker-card { transition: transform 0.4s ease; position: relative; }
  .speaker-card:hover { transform: translateY(-5px); }
  .speaker-photo {
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, var(--sage-pale), var(--terracotta-pale));
    border-radius: 18px; position: relative; overflow: hidden;
    box-shadow: 0 14px 36px rgba(74, 52, 36, 0.13);
    margin-bottom: 18px;
  }
  .speaker-photo::after {
    content: ''; position: absolute; inset: 25%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23faf5e9'%3E%3Cpath d='M12 12c2.5 0 4.5-2 4.5-4.5S14.5 3 12 3 7.5 5 7.5 7.5 9.5 12 12 12zm0 2c-3 0-9 1.5-9 4.5V21h18v-2.5c0-3-6-4.5-9-4.5z'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.55;
  }
  .speaker-photo .photo-tape {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg);
    width: 70px; height: 22px;
    background: linear-gradient(180deg, rgba(176, 106, 69, 0.4), rgba(176, 106, 69, 0.2));
    border-radius: 2px;
    z-index: 2;
  }
  .speaker-photo.has-photo {
    background-size: cover;
    background-position: center 25%;
  }
  .speaker-photo.has-photo::after { display: none; }
  .modal-photo.has-photo {
    background-size: cover;
    background-position: center 25%;
  }
  .modal-photo.has-photo::after { display: none; }
  .speaker-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
  .speaker-card .role {
    font-size: 0.85rem; color: var(--muted);
    font-family: var(--serif); font-style: italic;
    font-variation-settings: "SOFT" 100;
  }
  .speakers-footer {
    text-align: center; margin-top: 70px;
    display: flex; justify-content: center; align-items: center; gap: 16px;
  }

  .community {
    background: var(--forest); color: var(--cream);
    padding: 130px 48px; position: relative; overflow: hidden;
  }
  .community-head {
    text-align: center; max-width: 720px; margin: 0 auto 70px;
    position: relative; z-index: 2;
  }
  .community-head .label { color: var(--terracotta-pale); display: block; margin-bottom: 16px; }
  .community-head h2 { color: var(--cream); }
  .community-head p { color: var(--sage-pale); margin-top: 18px; font-size: 1.05rem; }
  .community-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    max-width: 1080px; margin: 0 auto; position: relative; z-index: 2;
  }
  .community-card {
    background: rgba(246, 239, 225, 0.07); border: 1px solid rgba(246, 239, 225, 0.2);
    border-radius: 24px; padding: 44px;
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
  }
  .community-card:hover {
    background: rgba(246, 239, 225, 0.12); transform: translateY(-4px);
    border-color: rgba(246, 239, 225, 0.4);
  }
  .community-card .icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--cream); color: var(--forest);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
  }
  .community-card .icon svg { width: 26px; height: 26px; }
  .community-card h3 { color: var(--cream); margin-bottom: 12px; }
  .community-card p { color: var(--sage-pale); margin-bottom: 28px; line-height: 1.65; font-size: 0.98rem; }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--cream); padding: 12px 24px; border-radius: 999px;
    border: 1.4px solid var(--cream); font-size: 0.92rem; font-weight: 500;
    transition: all 0.3s ease;
  }
  .btn-outline:hover { background: var(--cream); color: var(--forest); }
  .btn-outline svg { transition: transform 0.25s ease; }
  .btn-outline:hover svg { transform: translateX(4px); }

  .sponsors { padding: 110px 48px; background: var(--cream); }
  .sponsors-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
  .sponsors-head .label { display: block; margin-bottom: 14px; }
  .sponsors-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
  .sponsors-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 14px 12px; max-width: 1080px; margin: 0 auto;
  }
  .sponsor-chip {
    padding: 13px 22px; background: var(--paper); border: 1px solid var(--rule);
    border-radius: 999px; font-size: 0.92rem; color: var(--bark);
    transition: all 0.25s ease;
  }
  .sponsor-chip:hover { border-color: var(--moss); color: var(--forest); transform: translateY(-2px); }
  .sponsors-footer { text-align: center; margin-top: 48px; }

  .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); }

  /* ============ CALENDAR ============ */
  .calendar-wrap {
    background: var(--paper); border: 1px solid var(--rule);
    border-radius: 22px; padding: 28px;
    box-shadow: 0 12px 36px rgba(74, 52, 36, 0.06);
    margin-bottom: 0;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
  }
  .calendar-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; gap: 16px;
  }
  .calendar-title {
    font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem);
    color: var(--ink); font-variation-settings: "SOFT" 80;
  }
  .cal-nav {
    background: transparent; border: 1px solid var(--rule);
    width: 34px; height: 34px; border-radius: 50%;
    cursor: pointer; color: var(--bark);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
  }
  .cal-nav:hover { background: var(--moss); color: var(--cream); border-color: var(--moss); }
  .cal-nav svg { width: 12px; height: 12px; }
  .cal-nav-group { display: flex; gap: 8px; }
  .calendar-weekdays {
    display: grid; grid-template-columns: repeat(7, 1fr);
    margin-bottom: 6px; padding: 0 4px;
  }
  .calendar-weekdays span {
    text-align: center; font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--moss);
    padding: 4px 0;
  }
  .calendar-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
  }
  .cal-day {
    aspect-ratio: 1; min-height: 38px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border-radius: 10px; font-size: 0.86rem; color: var(--bark);
    position: relative; transition: all 0.2s ease;
    border: 1px solid transparent;
  }
  .cal-day.empty { visibility: hidden; }
  .cal-day.today {
    background: var(--paper-dark); color: var(--bark); font-weight: 500;
  }
  .cal-day.has-event {
    cursor: pointer; color: var(--forest); font-weight: 500;
  }
  .cal-day.has-event::after {
    content: ''; position: absolute; bottom: 6px; left: 50%;
    transform: translateX(-50%);
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--moss);
  }
  .cal-day.has-event:hover {
    background: var(--moss); color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(47, 74, 42, 0.18);
  }
  .cal-day.has-event:hover::after { background: var(--cream); }
  .calendar-legend {
    margin-top: 24px; padding-top: 20px; border-top: 1px dashed var(--rule);
    display: flex; gap: 24px; font-size: 0.85rem; color: var(--muted);
    flex-wrap: wrap;
  }
  .calendar-legend span { display: inline-flex; align-items: center; gap: 8px; }
  .calendar-legend .dot-today {
    width: 14px; height: 14px; background: var(--paper-dark); border-radius: 4px;
  }
  .calendar-legend .dot-event {
    width: 8px; height: 8px; background: var(--moss); border-radius: 50%;
  }

  /* ============ MODAL ============ */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(42, 34, 27, 0.55);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    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 {
    background: var(--paper); border-radius: 24px;
    max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto;
    position: relative; padding: 48px 44px 40px;
    box-shadow: 0 32px 80px rgba(42, 34, 27, 0.3);
    transform: translateY(20px) scale(0.96); transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  }
  .modal-overlay.open .modal { transform: translateY(0) scale(1); }
  .modal-close {
    position: absolute; top: 18px; right: 18px;
    width: 36px; height: 36px; border-radius: 50%;
    background: transparent; border: 1px solid var(--rule);
    cursor: pointer; color: var(--bark);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
  }
  .modal-close:hover { background: var(--bark); color: var(--cream); border-color: var(--bark); }
  .modal-close svg { width: 14px; height: 14px; }
  .modal .label { display: block; margin-bottom: 12px; }
  .modal h3 {
    font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px;
    font-variation-settings: "SOFT" 80;
  }
  .modal-meta {
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px dashed var(--rule);
    font-size: 0.92rem; color: var(--muted);
  }
  .modal-meta .pin { display: inline-flex; align-items: center; gap: 6px; }
  .modal-meta svg { width: 14px; height: 14px; color: var(--moss); }
  .modal-meta .dot { width: 3px; height: 3px; background: var(--muted); border-radius: 50%; }
  .modal p { color: var(--bark); line-height: 1.7; margin-bottom: 18px; font-size: 1rem; }
  .modal-photo {
    aspect-ratio: 1; max-width: 140px; border-radius: 50%;
    background: linear-gradient(160deg, var(--sage-pale), var(--terracotta-pale));
    margin: 0 auto 24px; position: relative; overflow: hidden;
    box-shadow: 0 12px 28px rgba(74, 52, 36, 0.15);
  }
  .modal-photo::after {
    content: ''; position: absolute; inset: 28%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23faf5e9'%3E%3Cpath d='M12 12c2.5 0 4.5-2 4.5-4.5S14.5 3 12 3 7.5 5 7.5 7.5 9.5 12 12 12zm0 2c-3 0-9 1.5-9 4.5V21h18v-2.5c0-3-6-4.5-9-4.5z'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.55;
  }
  .modal-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-top: 28px;
  }

  /* speaker click overlay */
  .speaker-card { cursor: pointer; }
  .speaker-photo .photo-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; justify-content: center;
    padding: 20px;
    background: linear-gradient(180deg, transparent 50%, rgba(42, 34, 27, 0.75));
    opacity: 0; transition: opacity 0.3s ease;
  }
  .speaker-photo .photo-overlay span {
    color: var(--cream); font-size: 0.88rem; font-weight: 500;
    display: inline-flex; align-items: center; gap: 8px;
    transform: translateY(8px); transition: transform 0.3s ease;
  }
  .speaker-photo .photo-overlay svg { width: 14px; height: 14px; }
  .speaker-card:hover .photo-overlay { opacity: 1; }
  .speaker-card:hover .photo-overlay span { transform: translateY(0); }
  .speaker-card.no-bio { cursor: default; }
  .speaker-card.no-bio .photo-overlay { display: none; }

  /* ============ HOME-PAGE PARTNERS LINK ============ */
  .partners-line {
    padding: 60px 48px; text-align: center;
    background: var(--cream);
  }
  .partners-line p {
    color: var(--bark-soft); font-size: 1rem; max-width: 580px; margin: 0 auto 16px;
  }
  .partners-line a {
    color: var(--forest); font-weight: 500;
    border-bottom: 1px solid currentColor; padding-bottom: 2px;
    transition: gap 0.25s ease, color 0.2s ease;
  }
  .partners-line a:hover { color: var(--terracotta); }

  /* ============ MEDIA GALLERY ============ */
  .media { padding: 130px 48px; }
  .media-head {
    text-align: center; max-width: 720px; margin: 0 auto 60px;
  }
  .media-head .label { display: block; margin-bottom: 16px; }
  .media-head p { color: var(--muted); margin-top: 18px; font-size: 1.02rem; }
  .media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
    max-width: 1200px; margin: 0 auto;
  }
  .media-item {
    border-radius: 16px; overflow: hidden;
    cursor: pointer; position: relative;
    transition: transform 0.45s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.45s;
    box-shadow: 0 6px 20px rgba(74, 52, 36, 0.08);
  }
  .media-item:hover {
    transform: translateY(-5px) rotate(-0.6deg);
    box-shadow: 0 24px 48px rgba(74, 52, 36, 0.18);
  }
  .media-item.tall { grid-row: span 2; }
  .media-item.wide { grid-column: span 2; }
  .media-item .photo-tape {
    position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-2deg);
    width: 64px; height: 20px;
    background: linear-gradient(180deg, rgba(176, 106, 69, 0.45), rgba(176, 106, 69, 0.22));
    border-radius: 2px; opacity: 0; transition: opacity 0.3s;
    z-index: 2;
  }
  .media-item:hover .photo-tape { opacity: 1; }
  .media-item .caption {
    position: absolute; bottom: 12px; left: 12px; right: 12px;
    background: rgba(250, 245, 233, 0.92);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    padding: 8px 14px; border-radius: 999px;
    font-size: 0.78rem; color: var(--bark); font-weight: 500;
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
  }
  .media-item .caption span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .media-item .caption svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--terracotta); }
  .media-item-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .media-footer { text-align: center; margin-top: 56px; }

  /* lightbox */
  .lightbox-photo {
    width: 100%; aspect-ratio: 4/3; border-radius: 16px;
    background-size: cover; background-position: center;
    margin-bottom: 18px;
    box-shadow: 0 12px 32px rgba(74, 52, 36, 0.15);
  }

  /* ============ GET INVOLVED ============ */
  .volunteer-section { padding: 130px 48px; }
  .volunteer-section-head {
    text-align: center; max-width: 720px; margin: 0 auto 60px;
  }
  .volunteer-section-head .label { display: block; margin-bottom: 16px; }
  .volunteer-section-head p { color: var(--muted); margin-top: 18px; font-size: 1.02rem; line-height: 1.7; }
  .role-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; max-width: 1100px; margin: 0 auto 48px;
  }
  .role-card {
    background: var(--paper); border: 1px solid var(--rule);
    border-radius: 16px; padding: 22px;
    transition: all 0.35s ease;
    text-decoration: none;
    display: block;
    color: inherit;
  }
  .role-card:hover {
    border-color: var(--moss); transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(74, 52, 36, 0.08);
  }
  .role-card:hover h3 { color: var(--terracotta); }
  .role-icon {
    width: 38px; height: 38px; border-radius: 11px;
    background: var(--cream); color: var(--moss);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .role-icon svg { width: 18px; height: 18px; }
  .role-card h3 { color: var(--forest); font-size: 1.08rem; margin-bottom: 6px; font-variation-settings: "SOFT" 70; }
  .role-card p { color: var(--bark-soft); font-size: 0.88rem; line-height: 1.55; }
  .volunteer-cta { text-align: center; }

  /* ============ SUSTAINER (full version) ============ */
  .sustainer {
    background: var(--forest); color: var(--cream);
    padding: 130px 48px; position: relative; overflow: hidden;
  }
  .sustainer-head {
    text-align: center; max-width: 720px; margin: 0 auto 70px;
    position: relative; z-index: 2;
  }
  .sustainer-head .label { color: var(--terracotta-pale); display: block; margin-bottom: 16px; }
  .sustainer-head h2 { color: var(--cream); }
  .sustainer-head p { color: var(--sage-pale); margin-top: 18px; font-size: 1.05rem; }
  .sustainer-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1100px; margin: 0 auto;
    position: relative; z-index: 2;
    align-items: start;
  }
  .sustainer-list h3 {
    color: var(--cream); font-size: 1.45rem; margin-bottom: 24px;
    font-variation-settings: "SOFT" 70;
  }
  .sustainer-list ul { list-style: none; }
  .sustainer-list li {
    padding: 14px 0; display: flex; gap: 14px;
    font-size: 1rem; color: var(--sage-pale);
    align-items: flex-start;
    border-bottom: 1px dashed rgba(246, 239, 225, 0.18);
    line-height: 1.55;
  }
  .sustainer-list li:last-child { border-bottom: none; }
  .sustainer-list svg {
    width: 18px; height: 18px; color: var(--terracotta-pale);
    flex-shrink: 0; margin-top: 3px;
  }
  .donation-card {
    background: var(--paper); border-radius: 24px;
    padding: 36px 32px; color: var(--ink);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
  }
  .donation-card h3 { font-size: 1.5rem; margin-bottom: 6px; font-variation-settings: "SOFT" 80; }
  .donation-card .donation-sub {
    color: var(--muted); font-size: 0.92rem; margin-bottom: 24px;
    font-family: var(--serif); font-style: italic;
    font-variation-settings: "SOFT" 100;
  }
  .amount-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 8px; margin-bottom: 12px;
  }
  .amount-btn {
    padding: 14px 0; background: transparent;
    border: 1.5px solid var(--rule); border-radius: 12px;
    font-family: var(--serif); font-size: 1rem;
    color: var(--bark); cursor: pointer;
    transition: all 0.2s ease;
    font-variation-settings: "SOFT" 80;
  }
  .amount-btn:hover { border-color: var(--moss); color: var(--forest); }
  .amount-btn.active {
    background: var(--moss); color: var(--cream); border-color: var(--moss);
  }
  .frequency-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px; margin-bottom: 24px;
  }
  .frequency-btn {
    padding: 14px 0; background: transparent;
    border: 1.5px solid var(--rule); border-radius: 12px;
    font-family: var(--sans); font-size: 0.94rem;
    color: var(--bark); cursor: pointer;
    transition: all 0.2s ease;
  }
  .frequency-btn:hover { border-color: var(--moss); color: var(--forest); }
  .frequency-btn.active {
    background: var(--cream); color: var(--forest);
    border-color: var(--moss); font-weight: 500;
  }
  .donate-button {
    display: block; text-align: center;
    width: 100%; padding: 16px;
    background: var(--forest); color: var(--cream);
    border: none; border-radius: 999px;
    font-family: var(--sans); font-size: 1rem; font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
  }
  .donate-button:hover {
    background: var(--bark); transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(47, 74, 42, 0.32);
  }
  .donation-footer {
    margin-top: 22px; padding-top: 20px;
    border-top: 1px dashed var(--rule); text-align: center;
  }
  .donation-footer .venmo-info {
    font-size: 0.92rem; color: var(--bark); margin-bottom: 8px;
  }
  .donation-footer .venmo-info strong {
    font-weight: 500; color: var(--ink);
  }
  .donation-footer .note {
    font-size: 0.82rem; color: var(--muted);
    font-family: var(--serif); font-style: italic;
    font-variation-settings: "SOFT" 100;
  }

  /* ============ PARTNERS STRIP ============ */
  .partners-strip { padding: 120px 48px; background: var(--cream); }
  .partners-strip-head {
    text-align: center; max-width: 720px; margin: 0 auto 56px;
  }
  .partners-strip-head .label { display: block; margin-bottom: 14px; }
  .partners-strip-head p { color: var(--muted); margin-top: 14px; font-size: 1rem; }
  .partner-row {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 12px; max-width: 1080px; margin: 0 auto 36px;
  }
  .partner-link {
    padding: 14px 22px;
    background: var(--paper); border: 1px solid var(--rule);
    border-radius: 999px; font-size: 0.94rem; color: var(--bark);
    display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.25s ease;
  }
  .partner-link:hover {
    border-color: var(--moss); color: var(--forest);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 52, 36, 0.08);
  }
  .partner-link svg {
    width: 12px; height: 12px; opacity: 0.5;
    transition: transform 0.25s ease, opacity 0.25s;
  }
  .partner-link:hover svg { transform: translate(2px, -2px); opacity: 1; }
  .partners-strip-footer { text-align: center; }

  /* ============ CONNECT WITH US ============ */
  .connect { padding: 110px 48px; background: var(--cream); }
  .connect-head {
    text-align: center; max-width: 720px; margin: 0 auto 56px;
  }
  .connect-head .label { display: block; margin-bottom: 14px; }
  .connect-head p { color: var(--muted); margin-top: 14px; font-size: 1rem; }
  .connect-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    max-width: 1000px; margin: 0 auto;
  }
  .connect-card {
    background: var(--paper); border: 1px solid var(--rule);
    border-radius: 18px; padding: 30px 26px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex; flex-direction: column; align-items: center;
  }
  .connect-card:hover {
    border-color: var(--moss); transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(74, 52, 36, 0.08);
  }
  .connect-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--cream); color: var(--moss);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
  }
  .connect-card:hover .connect-icon {
    background: var(--forest); color: var(--cream);
    transform: scale(1.05);
  }
  .connect-icon svg { width: 26px; height: 26px; }
  .connect-card h3 {
    font-size: 1.18rem; margin-bottom: 10px; color: var(--ink);
    font-variation-settings: "SOFT" 70;
  }
  .connect-card p {
    color: var(--bark-soft); font-size: 0.9rem;
    line-height: 1.55; margin-bottom: 20px; flex: 1;
  }
  .connect-handle {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--forest); font-weight: 500; font-size: 0.9rem;
    border-bottom: 1px solid currentColor; padding-bottom: 3px;
    transition: gap 0.25s ease, color 0.2s;
  }
  .connect-card:hover .connect-handle { gap: 14px; color: var(--terracotta); }
  .connect-handle svg { width: 12px; height: 12px; }

  @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; }
    section { padding: 80px 24px; }
    .hero { padding: 130px 24px 60px; min-height: auto; }
    .hero-grid, .about-grid, .community-grid, .events-grid, .speakers-grid, .field-notes-grid {
      grid-template-columns: 1fr; gap: 50px;
    }
    .hero-collage { max-width: 320px; margin: 0 auto -40px; justify-self: center; }
    .speakers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .field-notes-tag { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .media-grid { grid-template-columns: repeat(2, 1fr); }
    .role-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .sustainer-grid { grid-template-columns: 1fr; gap: 40px; }
  }
  @media (max-width: 600px) {
    .speakers-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .pullstats { grid-template-columns: 1fr; }
    .pullstat:not(:last-child) { border-right: none; border-bottom: 1px solid var(--rule); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .events-head { flex-direction: column; align-items: flex-start; }
    h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
    .calendar-wrap { padding: 22px 18px; }
    .cal-day { font-size: 0.82rem; min-height: 38px; border-radius: 8px; }
    .cal-day.has-event::after { width: 5px; height: 5px; bottom: 4px; }
    .modal { padding: 38px 24px 28px; }
    .media-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; gap: 8px; }
    .media-item.tall, .media-item.wide { grid-row: auto; grid-column: auto; }
    .donation-card { padding: 28px 22px; }
    .amount-grid { grid-template-columns: repeat(2, 1fr); }
    .role-grid { grid-template-columns: 1fr; }
    .connect-grid { grid-template-columns: 1fr; gap: 14px; }
  }
  @media (hover: none) {
    .role-card:active, .connect-card:active, .stat-card:active { transform: scale(0.98); }
    .cal-day:active { background: var(--cream); }
  }
  @media (max-width: 420px) {
    .nav { padding: 12px 16px; }
    section { padding: 60px 18px; }
    .hero { padding: 120px 18px 40px; }
    h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
    h2 { font-size: clamp(1.6rem, 7vw, 2rem); }
    .hero-lede { font-size: 1.02rem; }
    .calendar-wrap { padding: 18px 12px; }
    .cal-day { font-size: 0.75rem; min-height: 34px; }
    .cal-nav button { width: 32px; height: 32px; }
    .cal-head { font-size: 0.62rem; }
    .donation-card { padding: 22px 18px; }
    .amount-btn { font-size: 0.92rem; padding: 10px 6px; }
    .modal { padding: 32px 18px 24px; }
    .modal-close { top: 12px; right: 12px; width: 32px; height: 32px; }
    .footer { padding: 60px 18px 24px; }
    .sustainer { padding: 70px 18px; }
  }
