  :root{
    /* fixed brand constants — do not change with theme */
    --ink:#000000;
    --ink-soft:#1c1a17;
    --gold:#A6844A;
    --gold-light:#C7A768;
    --gold-deep:#7E6135;
    --white:#FFFFFF;
    --fog:#E0DFDF;
    --cream:#F7F5F1;
    --line-on-dark: rgba(255,255,255,0.16);
    --maxw: 1180px;

    /* theme-dependent surface / text tokens — light mode (default) */
    --surface: #FFFFFF;
    --surface-alt: #F7F5F1;
    --surface-fog: #E0DFDF;
    --text: #1c1a17;
    --text-muted: #5c584f;
    --line: rgba(0,0,0,0.1);

    color-scheme: light;
  }

  html[data-theme="dark"]{
    --surface: #0d0c0a;
    --surface-alt: #17150f;
    --surface-fog: #201d17;
    --text: rgba(255,255,255,0.88);
    --text-muted: rgba(255,255,255,0.52);
    --line: rgba(255,255,255,0.13);
    color-scheme: dark;
  }

  *{margin:0;padding:0;box-sizing:border-box;}

  html{scroll-behavior:smooth;}

  body{
    font-family:'Inter', -apple-system, sans-serif;
    color: var(--text);
    background: var(--surface);
    line-height:1.6;
    font-size:16px;
    -webkit-font-smoothing:antialiased;
    transition: background .4s ease, color .4s ease;
  }

  h1,h2,h3,h4{
    font-family:'Fraunces', serif;
    font-weight:500;
    line-height:1.12;
    letter-spacing:-0.01em;
    color: var(--text);
  }

  em{
    font-style:italic;
    color: var(--gold-deep);
  }

  a{ color:inherit; text-decoration:none; }

  img{max-width:100%; display:block;}

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

  .eyebrow{
    font-family:'Inter', sans-serif;
    font-size:12px;
    font-weight:600;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color: var(--gold);
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
  }
  .eyebrow::before{
    content:"";
    width:28px;
    height:1px;
    background: var(--gold);
    display:inline-block;
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'Inter', sans-serif;
    font-size:14px;
    font-weight:600;
    letter-spacing:0.03em;
    padding: 16px 30px;
    border-radius:2px;
    transition: all .25s ease;
    cursor:pointer;
    border:1px solid transparent;
    white-space:nowrap;
  }
  .btn-primary{
    background: var(--gold);
    color: var(--ink);
  }
  .btn-primary:hover{ background: var(--gold-light); transform: translateY(-1px); }

  .btn-ghost-dark{
    border-color: var(--line-on-dark);
    color: var(--white);
  }
  .btn-ghost-dark:hover{ border-color: var(--gold); color: var(--gold-light); }

  .btn-ghost-light{
    border-color: var(--line);
    color: var(--text);
  }
  .btn-ghost-light:hover{ border-color: var(--gold-deep); color: var(--gold-deep); }

  /* ---------- Logo mark (recreated) ---------- */
  .mark{ display:inline-block; }
  .mark svg{ display:block; }
  #siteHeader .brand .mark img{ height:24px; width:auto; display:block; }

  /* ---------- Header ---------- */
  header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:100;
    padding: 26px 0;
    transition: all .35s ease;
  }
  header .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  header.solid{
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(6px);
    padding: 16px 0;
    box-shadow: 0 1px 0 var(--line-on-dark);
  }

  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    font-family:'Fraunces', serif;
    font-size:20px;
    letter-spacing:0.06em;
    color: var(--white);
  }
  .brand small{
    display:block;
    font-family:'Inter', sans-serif;
    font-size:9px;
    letter-spacing:0.2em;
    color: var(--fog);
    font-weight:500;
    margin-top:2px;
  }

  nav ul{
    list-style:none;
    display:flex;
    gap:36px;
  }
  nav a{
    font-size:13px;
    font-weight:500;
    letter-spacing:0.04em;
    color: rgba(255,255,255,0.82);
    position:relative;
    padding: 4px 0;
  }
  nav a:hover{ color: var(--gold-light); }

  .nav-toggle{ display:none; }

  .header-right{
    display:flex;
    align-items:center;
    gap:34px;
  }

  /* ---------- Theme toggle ---------- */
  .theme-toggle{
    position:relative;
    width:60px;
    height:30px;
    border-radius:999px;
    border:1px solid var(--gold);
    background: linear-gradient(to right, #000000 50%, #F7F5F1 50%);
    padding:0;
    cursor:pointer;
    flex-shrink:0;
    -webkit-tap-highlight-color: transparent;
  }
  .theme-toggle:focus-visible{
    outline:2px solid var(--gold-light);
    outline-offset:3px;
  }
  .theme-toggle-thumb{
    position:absolute;
    top:2px;
    left:2px;
    width:24px;
    height:24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 0 0 1px rgba(166,132,74,0.55), 0 2px 5px rgba(0,0,0,0.3);
    transform: translateX(30px);
    transition: transform .4s cubic-bezier(.65,0,.35,1);
    background: transparent;
  }
  html[data-theme="dark"] .theme-toggle-thumb{
    transform: translateX(0);
  }
  .theme-toggle-thumb img{
    width:15px;
    height:auto;
    pointer-events:none;
  }
  .theme-toggle-label{
    position:absolute;
    width:1px; height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
  }

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    min-height:100vh;
    background: var(--ink);
    color: var(--white);
    display:flex;
    align-items:center;
    overflow:hidden;
    padding-top:120px;
    padding-bottom:80px;
  }

  .hero-bg-lines{
    position:absolute; inset:0;
    opacity:0.35;
    pointer-events:none;
  }

  .hero .wrap{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap:60px;
    align-items:center;
    width:100%;
  }

  .hero-mark{
    justify-self:end;
    opacity:0;
    animation: fadeUp 1.1s ease .2s forwards;
  }

  .hero-eyebrow{
    opacity:0;
    animation: fadeUp .9s ease .1s forwards;
  }

  .hero h1{
    font-size: clamp(38px, 5vw, 64px);
    color: var(--white);
    opacity:0;
    animation: fadeUp .9s ease .3s forwards;
  }
  .hero h1 em{ color: var(--gold-light); font-style:italic; }

  .hero p.lede{
    margin-top:26px;
    max-width:480px;
    font-size:18px;
    line-height:1.65;
    color: rgba(255,255,255,0.72);
    opacity:0;
    animation: fadeUp .9s ease .45s forwards;
  }

  .hero-cta{
    margin-top:40px;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    opacity:0;
    animation: fadeUp .9s ease .6s forwards;
  }

  @keyframes fadeUp{
    from{ opacity:0; transform:translateY(16px); }
    to{ opacity:1; transform:translateY(0); }
  }

  .scroll-cue{
    position:absolute;
    bottom:36px;
    left:40px;
    display:flex;
    align-items:center;
    gap:10px;
    font-size:11px;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color: rgba(255,255,255,0.45);
  }
  .scroll-cue .line{
    width:1px; height:38px;
    background: linear-gradient(var(--gold), transparent);
  }

  /* ---------- Section generic ---------- */
  section{ padding: 130px 0; }
  .section-cream{ background: var(--surface-alt); transition: background .4s ease; }
  .section-fog{ background: var(--surface-fog); transition: background .4s ease; }
  .section-ink{ background: var(--ink); color: rgba(255,255,255,0.82); }
  .section-ink h2{ color: var(--white); }

  .center{ text-align:center; }

  /* ---------- Premise ---------- */
  .premise .wrap{
    max-width: 860px;
  }
  .premise h2{
    font-size: clamp(28px, 3.4vw, 42px);
    margin-bottom:32px;
  }
  .premise p{
    font-size:18px;
    color: var(--text-muted);
    max-width:680px;
  }
  .premise p + p{ margin-top:20px; }
  .premise .lead-line{
    font-family:'Fraunces', serif;
    font-style:italic;
    font-size:22px;
    color: var(--text);
    margin-top:38px;
    max-width:640px;
  }

  /* ---------- Divider mark ---------- */
  .divider-mark{
    display:flex;
    justify-content:center;
    padding: 10px 0 0;
  }

  /* ---------- Pillars ---------- */
  .pillars-head{
    max-width:640px;
    margin: 0 auto 70px;
    text-align:center;
  }
  .pillars-head h2{ font-size: clamp(28px,3.4vw,42px); }
  .pillars-head p{
    margin-top:18px;
    font-size:17px;
    color: var(--text-muted);
  }

  .pillars-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:1px;
    background: var(--line);
    border:1px solid var(--line);
  }
  .pillar{
    background: var(--surface);
    padding: 48px 38px;
    transition: background .3s ease;
  }
  .pillar:hover{ background: var(--surface-alt); }
  .pillar .num{
    font-family:'Fraunces', serif;
    font-style:italic;
    color: var(--gold);
    font-size:15px;
    letter-spacing:0.06em;
    margin-bottom:22px;
    display:block;
  }
  .pillar h3{
    font-size:24px;
    margin-bottom:16px;
  }
  .pillar p{
    font-size:15.5px;
    color: var(--text-muted);
  }

  /* ---------- Collective ---------- */
  .collective .wrap{
    display:grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap:80px;
    align-items:center;
  }
  .collective-visual{
    aspect-ratio: 4/5;
    border:1px solid var(--line-on-dark);
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    background: linear-gradient(160deg, rgba(166,132,74,0.14), transparent 60%);
  }
  .collective h2{ font-size: clamp(28px,3.2vw,38px); }
  .collective p{
    margin-top:22px;
    font-size:17px;
    color: rgba(255,255,255,0.68);
    max-width:520px;
  }
  .collective .btn{ margin-top:32px; }

  .names{
    margin-top:36px;
    display:flex;
    gap:36px;
    flex-wrap:wrap;
  }
  .names div small{
    display:block;
    font-size:11px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color: var(--gold-light);
    margin-bottom:4px;
  }
  .names div span{
    font-family:'Fraunces', serif;
    font-size:17px;
    color: var(--white);
  }

  /* ---------- Setting ---------- */
  .setting .wrap{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:80px;
    align-items:center;
  }
  .setting h2{ font-size: clamp(28px,3.2vw,40px); }
  .setting p{
    margin-top:20px;
    font-size:17px;
    color: var(--text-muted);
    max-width:480px;
  }
  .setting .stats{
    display:flex;
    gap:40px;
    margin-top:36px;
  }
  .setting .stats div strong{
    font-family:'Fraunces', serif;
    font-size:30px;
    color: var(--gold-deep);
    display:block;
  }
  .setting .stats div span{
    font-size:12px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color: var(--text-muted);
  }
  .setting-visual{
    aspect-ratio: 4/3.2;
    background: var(--ink);
    position:relative;
    overflow:hidden;
  }

  /* ---------- CTA banner ---------- */
  .cta-banner{
    background: var(--gold);
    padding: 90px 0;
  }
  .cta-banner .wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
  }
  .cta-banner h2{
    color: var(--ink);
    font-size: clamp(26px,3vw,38px);
    max-width:600px;
  }
  .cta-banner p{
    margin-top:12px;
    color: rgba(0,0,0,0.65);
    font-size:15px;
  }

  /* ---------- Footer ---------- */
  footer{
    background: var(--ink);
    color: rgba(255,255,255,0.55);
    padding: 80px 0 30px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap:40px;
    padding-bottom:60px;
    border-bottom:1px solid var(--line-on-dark);
  }
  .footer-brand .brand{ margin-bottom:18px; }
  .footer-brand p{
    font-size:14px;
    max-width:280px;
    color: rgba(255,255,255,0.45);
  }
  .footer-col h4{
    font-family:'Inter', sans-serif;
    font-size:12px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color: var(--gold-light);
    font-weight:600;
    margin-bottom:20px;
  }
  .footer-col ul{ list-style:none; }
  .footer-col li{ margin-bottom:12px; }
  .footer-col a{ font-size:14px; color: rgba(255,255,255,0.6); }
  .footer-col a:hover{ color: var(--white); }

  .footer-bottom{
    padding-top:28px;
    display:flex;
    justify-content:space-between;
    font-size:12.5px;
    color: rgba(255,255,255,0.35);
    flex-wrap:wrap;
    gap:10px;
  }

  /* ---------- Events ---------- */
  .events-grid{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap:1px;
    background: var(--line);
    border:1px solid var(--line);
  }
  .event-card{
    background: var(--surface);
    padding: 32px 30px;
    display:flex;
    gap:22px;
    transition: background .3s ease;
  }
  .event-card:hover{ background: var(--surface-alt); }
  .event-date{
    flex-shrink:0;
    width:64px;
    height:64px;
    text-align:center;
    border:1px solid var(--line);
    padding: 10px 0;
  }
  .event-date .month{
    display:block;
    font-family:'Inter', sans-serif;
    font-size:11px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color: var(--gold);
    font-weight:600;
  }
  .event-date .day{
    display:block;
    font-family:'Fraunces', serif;
    font-size:26px;
    color: var(--text);
    margin-top:2px;
  }
  .event-body h3{
    font-size:18px;
    margin-bottom:8px;
  }
  .event-meta{
    font-size:13px;
    color: var(--text-muted);
    display:flex;
    flex-direction:column;
    gap:4px;
  }
  .event-meta a{ color: var(--gold-deep); }
  .event-meta a:hover{ text-decoration:underline; }
  .events-status{
    grid-column: 1/-1;
    text-align:center;
    color: var(--text-muted);
    font-size:15px;
    padding: 30px 0;
  }
  .events-footer{
    text-align:center;
    margin-top:40px;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 900px){
    .wrap{ padding: 0 24px; }
    nav{ display:none; }
    .hero .wrap{ grid-template-columns: 1fr; }
    .hero-mark{ justify-self:start; order:-1; margin-bottom:20px; }
    .hero-mark img{ width:70px; height:auto; }
    .pillars-grid{ grid-template-columns:1fr; }
    .events-grid{ grid-template-columns:1fr; }
    .collective .wrap, .setting .wrap{ grid-template-columns:1fr; }
    .collective-visual{ order:-1; }
    section{ padding:90px 0; }
    .footer-grid{ grid-template-columns: 1fr 1fr; }
  }

  /* ========== FORMS & PLACEHOLDERS ========== */
  .form-group{ margin-bottom:24px; }
  .form-group label{ display:block; font-size:14px; font-weight:500; margin-bottom:8px; color:var(--text); }
  .form-group input, .form-group textarea, .form-group select{ width:100%; padding:12px 14px; font-size:14px; border:1px solid var(--line); border-radius:2px; background:var(--surface); color:var(--text); font-family:inherit; transition:border-color .25s ease; }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus{ outline:none; border-color:var(--gold); }
  .form-group textarea{ min-height:120px; resize:vertical; }
  .form-group .honeypot{ display:none; }

  .donate-placeholder{ border:2px dashed var(--gold); border-radius:2px; padding:40px 30px; text-align:center; background:rgba(166,132,74,0.05); }
  .donate-placeholder p{ color:var(--text-muted); font-size:13px; margin:12px 0 0; }

  /* ========== GALLERY GRID ========== */
  .gallery-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(300px, 1fr)); gap:20px; }
  .gallery-item{ aspect-ratio:4/3; background:var(--surface-fog); border:1px solid var(--line); border-radius:2px; overflow:hidden; display:flex; align-items:center; justify-content:center; }
  .gallery-item img{ width:100%; height:100%; object-fit:cover; }
  .gallery-item svg{ width:100%; height:100%; }

  /* ========== MAILING LIST FORM ========== */
  .mailing-signup{ background:var(--surface-alt); border-radius:2px; padding:24px; max-width:400px; margin:20px 0; }
  .mailing-signup h4{ font-size:14px; margin-bottom:12px; }
  .mailing-signup p{ font-size:13px; color:var(--text-muted); margin-bottom:16px; }
  .mailing-signup .form-group{ margin-bottom:12px; }
  .mailing-signup .form-group label{ font-size:12px; }
  .mailing-signup button{ width:100%; }

  /* ========== FOOTER MAILING LIST SIGNUP ========== */
  .footer-signup{
    border-top:1px solid var(--line-on-dark);
    padding:40px 0;
    margin-top:20px;
  }
  .footer-signup h4{
    font-family:'Inter', sans-serif;
    font-size:12px;
    letter-spacing:0.12em;
    text-transform:uppercase;
    color:var(--gold-light);
    font-weight:600;
    margin-bottom:12px;
  }
  .footer-signup p{
    font-size:14px;
    color:rgba(255,255,255,0.6);
    margin-bottom:20px;
    max-width:400px;
  }
  .footer-signup form{
    display:flex;
    flex-direction:column;
    gap:12px;
    max-width:400px;
  }
  .footer-signup label{
    font-size:12px;
    font-weight:500;
    color:rgba(255,255,255,0.7);
    display:block;
    margin-bottom:6px;
  }
  .footer-signup input[type="email"],
  .footer-signup input[type="submit"]{
    padding:12px 14px;
    font-size:14px;
    border-radius:2px;
    border:none;
    font-family:inherit;
    transition:all .25s ease;
  }
  .footer-signup input[type="email"]{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    color:var(--white);
  }
  .footer-signup input[type="email"]::placeholder{
    color:rgba(255,255,255,0.45);
  }
  .footer-signup input[type="email"]:focus{
    outline:none;
    border-color:var(--gold);
    background:rgba(255,255,255,0.12);
  }
  .footer-signup input[type="submit"]{
    background:var(--gold);
    color:var(--ink);
    font-weight:600;
    letter-spacing:0.03em;
    cursor:pointer;
  }
  .footer-signup input[type="submit"]:hover{
    background:var(--gold-light);
    transform:translateY(-1px);
  }

  @media (max-width:600px){
    .footer-signup form{
      max-width:100%;
    }
    .footer-signup p{
      max-width:100%;
    }
  }
