/* ==========================================================================
   Love You Girl Foundation
   styles.css  |  V1  |  Built by SLS Digital Solutions
   ========================================================================== */

:root{
  /* Palette */
  --ink:#2A1740;          /* deep plum, near-black */
  --plum:#4F316F;         /* primary brand */
  --plum-mid:#6A4A8C;
  --rose:#E0517A;         /* accent, the "Love You Girl" warmth */
  --rose-deep:#B93A5E;
  --violet:#C49DEA;        /* logo script lettering */
  --dvam:#7B3FA0;          /* awareness month purple */
  --gold:#F0B429;         /* recognition, scholarships */
  --gold-deep:#C88F14;
  --cream:#FAF6FB;        /* warm off-white, pink cast */
  --lilac:#EAE0F4;
  --line:#E1D5EE;
  --body:#382B45;
  --muted:#6B5C7D;

  --grad-plum:linear-gradient(135deg,#4F316F 0%,#2A1740 60%,#43265C 100%);
  --grad-rose:linear-gradient(120deg,#E0517A 0%,#F0B429 100%);

  --shadow-sm:0 2px 10px rgba(42,23,64,.07);
  --shadow:0 14px 40px rgba(42,23,64,.11);
  --shadow-lg:0 30px 70px rgba(42,23,64,.18);

  --wrap:1180px;
  --r:18px;
  --r-lg:28px;

  --exit-h:46px;
  --nav-h:92px;
  --logo-h:64px;
}

/* --------------------------------------------------------------- reset */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,"Segoe UI",sans-serif;
  font-size:1.03rem;
  line-height:1.72;
  color:var(--body);
  background:var(--cream);
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block}
picture{display:contents}
figure{margin:0}   /* browser default is 1em 40px, which narrows every figure by 80px */
a{color:var(--plum);text-decoration-thickness:1px;text-underline-offset:3px}
a:hover{color:var(--rose-deep)}
button{font:inherit}
h1,h2,h3,h4{
  font-family:"Bricolage Grotesque","Manrope",system-ui,sans-serif;
  color:var(--ink);
  line-height:1.06;
  letter-spacing:-.025em;
  margin:0 0 .55em;
  font-weight:600;
}
h1{font-size:clamp(2.7rem,6.4vw,5.1rem);font-weight:700}
h2{font-size:clamp(1.95rem,3.9vw,3.05rem)}
h3{font-size:clamp(1.18rem,1.9vw,1.42rem);line-height:1.24}
h4{font-size:1.02rem;line-height:1.3}
p{margin:0 0 1.1rem}
.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:clamp(1.15rem,4vw,2.2rem)}
.narrow{max-width:820px}
.center{text-align:center}
.lead{font-size:clamp(1.1rem,1.7vw,1.28rem);line-height:1.62;color:var(--muted)}

.skip{position:absolute;left:-9999px;top:0;z-index:999;background:var(--ink);color:#fff;padding:.8rem 1.2rem;border-radius:0 0 10px 0}
.skip:focus{left:0}

:focus-visible{outline:3px solid var(--rose);outline-offset:3px;border-radius:4px}

/* ----------------------------------------------------------- hotline bar */
/* Deliberately never animated and never hidden. First in the tab order after
   the skip link, so the hotline numbers are the first thing a screen reader
   or keyboard user reaches on every page. */
.topstack{position:fixed;inset:0 0 auto 0;z-index:200}
.exitbar{
  position:relative;z-index:1;
  background:var(--ink);color:#fff;
  min-height:40px;   /* must NOT reference --exit-h: the script sets that
                        variable FROM this element's stack, so a var here
                        creates a feedback loop that inflates the bar. */
  display:flex;align-items:center;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.exitbar-in{display:flex;align-items:center;justify-content:center;text-align:center;gap:.4rem 1rem;flex-wrap:wrap;padding-block:.5rem}
.exitbar p{margin:0;font-size:.84rem;line-height:1.45;color:rgba(255,255,255,.9)}
.exitbar a{color:var(--gold);font-weight:700;text-decoration:none}
.exitbar a:hover{color:#fff;text-decoration:underline}
.exitbar .short{display:none}
@media(max-width:700px){
  .exitbar .long{display:none}
  .exitbar .short{display:inline}
  .exitbar p{font-size:.79rem}
}

/* ------------------------------------------------------------------- nav */
.nav{
  position:fixed;left:0;right:0;top:var(--exit-h);z-index:150;
  height:var(--nav-h);display:flex;align-items:center;
  transition:background .35s ease,box-shadow .35s ease,backdrop-filter .35s ease;
}
.nav.solid{background:rgba(42,23,64,.94);backdrop-filter:blur(14px);box-shadow:0 8px 30px rgba(42,23,64,.22)}
.nav-in{display:flex;align-items:center;justify-content:space-between;gap:1.4rem;width:100%}
.brand{display:flex;align-items:center;gap:.85rem;text-decoration:none;flex:0 0 auto}
.brand img{width:auto;height:var(--logo-h);flex:0 0 auto;display:block}
.brand svg{width:36px;height:36px;flex:0 0 auto}
.brand-txt b{
  font-family:"Bricolage Grotesque",sans-serif;color:#fff;font-size:1.42rem;
  font-weight:700;letter-spacing:-.01em;line-height:1.08;display:block;
}
.brand-txt > span{display:block;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);font-weight:700;line-height:1.3}
.menu{display:flex;align-items:center;gap:1.25rem;list-style:none;margin:0;padding:0}
.menu a{color:rgba(255,255,255,.88);text-decoration:none;font-size:.9rem;font-weight:600;position:relative;padding-block:.35rem}
.menu a::after{content:"";position:absolute;left:0;bottom:0;height:2px;width:0;background:var(--gold);transition:width .28s ease}
.menu a:hover,.menu a[aria-current="page"]{color:#fff}
.menu a:hover::after,.menu a[aria-current="page"]::after{width:100%}
.nav-cta{background:var(--rose);color:#fff !important;padding:.6rem 1.15rem;border-radius:999px;font-weight:800;font-size:.85rem}

/* Get Help. Deliberately never nested behind a submenu and never a plain text
   link: it is the one item a visitor may need in a hurry, so it is styled as a
   destination in its own right. Gold reads as urgent without reading as alarm. */
.nav-help{
  background:var(--gold);color:var(--ink) !important;padding:.6rem 1.15rem;
  border-radius:999px;font-weight:800;font-size:.85rem;white-space:nowrap;
}
.nav-help::after{display:none !important}
.nav-help:hover{background:#fff;color:var(--ink) !important}
.nav-help[aria-current="page"]{background:#fff;color:var(--ink) !important}
.nav-cta::after{display:none !important}
.nav-cta:hover{background:var(--gold);color:var(--ink) !important}
.burger{display:none;background:none;border:0;cursor:pointer;padding:.4rem;flex:0 0 auto}
.burger span{display:block;width:25px;height:2px;background:#fff;margin:5px 0;transition:.3s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

@media(max-width:1200px){
  :root{--nav-h:84px;--logo-h:56px}
  .brand-txt b{font-size:1.24rem}
  .brand-txt > span{font-size:.72rem}
  .menu{gap:1.15rem}
  .menu a{font-size:.86rem}
}
@media(max-width:980px){
  :root{--nav-h:78px;--logo-h:54px}
  .brand-txt b{font-size:1.3rem}
  .brand-txt > span{font-size:.74rem}
  .burger{display:block}
  .menu{
    position:fixed;top:calc(var(--exit-h) + var(--nav-h));left:0;right:0;
    background:rgba(42,23,64,.985);backdrop-filter:blur(16px);
    flex-direction:column;align-items:stretch;gap:0;
    /* Vertical padding must be zero when closed. Content clips at the padding
       edge, not the content edge, so any padding here leaks a strip of the
       first menu item through the shut drawer. Harmless when that item was a
       dark text link, very visible once it became a gold button. */
    padding:0 1.4rem;
    max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease;
  }
  .menu.open{max-height:80vh;padding-block:1.2rem 1.8rem}
  .menu li{border-bottom:1px solid rgba(255,255,255,.1)}
  .menu a{display:block;padding:.9rem 0;font-size:1rem}
  .menu a::after{display:none}
  /* In the drawer, Get Help goes first. A visitor who opened the menu because
     they need help should not have to scroll past five links and a social row
     to reach it. Give follows, then the links, then the icons. */
  .li-help{order:-2}
  .li-give{order:-1;margin-bottom:.9rem}
  .nav-social{order:9}
  .nav-help{margin:0 0 .7rem}
  .nav-cta{margin:0}
  .nav-cta,.nav-help{display:block;text-align:center;padding:.85rem 1.25rem;font-size:.95rem;border-radius:999px}
  .li-help,.li-give{border-bottom:0 !important}
  .menu li:last-child{border:0}
}

/* --------------------------------------------------------- scroll thread */
/* The signature device: one continuous line, drawn as you read, standing in
   for the single friendship the whole organization runs back to. */
.thread{
  position:fixed;left:max(14px,2.1vw);top:0;bottom:0;width:2px;z-index:90;
  background:rgba(79,49,111,.14);pointer-events:none;
}
.thread i{
  position:absolute;left:0;top:0;width:100%;height:0;
  background:linear-gradient(180deg,var(--rose),var(--gold));
  transition:height .12s linear;
}
.thread i::after{
  content:"";position:absolute;left:50%;bottom:-5px;width:10px;height:10px;
  border-radius:50%;background:var(--gold);transform:translateX(-50%);
  box-shadow:0 0 0 5px rgba(240,180,41,.2);
}
@media(max-width:1100px){.thread{display:none}}

/* ----------------------------------------------------------------- hero */
.hero{
  position:relative;isolation:isolate;overflow:hidden;
  background:var(--grad-plum);color:#fff;
  padding:calc(var(--exit-h) + var(--nav-h) + clamp(4rem,9vw,7.5rem)) 0 clamp(4rem,8vw,7rem);
}
.hero h1,.hero h2,.hero h3{color:#fff}
.orbs{position:absolute;inset:-20%;z-index:-1;filter:blur(70px);opacity:.55}
.orbs span{position:absolute;border-radius:50%;display:block;will-change:transform}
.orbs .o1{width:46vw;height:46vw;background:#E0517A;top:-6%;left:-8%;animation:drift 22s ease-in-out infinite}
.orbs .o2{width:38vw;height:38vw;background:#F0B429;bottom:-14%;right:-6%;animation:drift 27s ease-in-out infinite reverse}
.orbs .o3{width:32vw;height:32vw;background:#8B5FBF;top:34%;left:46%;animation:drift 33s ease-in-out infinite}
@keyframes drift{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(5%,-6%) scale(1.11)}
  66%{transform:translate(-6%,5%) scale(.93)}
}
.hero-grain{
  position:absolute;inset:0;z-index:-1;opacity:.5;mix-blend-mode:overlay;
  background-image:radial-gradient(rgba(255,255,255,.16) 1px,transparent 1px);
  background-size:4px 4px;
}
.hero-in{max-width:940px}
.eyebrow{
  display:inline-flex;align-items:center;gap:.6rem;
  font-size:.73rem;font-weight:800;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.4rem;
}
.eyebrow::before{content:"";width:34px;height:2px;background:var(--gold);display:block}
.hero .lead{color:rgba(255,255,255,.88);max-width:620px}

/* kinetic headline: words rise in sequence on load */
.kin{display:block}
.kin .w{display:inline-block;opacity:0;transform:translateY(.55em);animation:rise .8s cubic-bezier(.19,1,.22,1) forwards}
.kin .w.rose{color:var(--rose)}
.kin .w.gold{color:var(--gold)}
@keyframes rise{to{opacity:1;transform:translateY(0)}}

.hero-actions{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:2rem}

/* memorial rule under the hero */
.memorial{
  margin-top:clamp(2.8rem,6vw,4.4rem);padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.2);
  display:flex;align-items:baseline;gap:.7rem;flex-wrap:wrap;
}
.memorial small{font-size:.7rem;letter-spacing:.19em;text-transform:uppercase;color:rgba(255,255,255,.6);font-weight:800}
.memorial em{
  font-family:"Instrument Serif",Georgia,serif;font-style:italic;
  font-size:clamp(1.35rem,2.5vw,1.85rem);color:#fff;line-height:1.2;
}

/* ---------------------------------------------------------------- buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.92rem 1.75rem;border-radius:999px;text-decoration:none;
  font-weight:800;font-size:.94rem;letter-spacing:.005em;border:2px solid transparent;
  cursor:pointer;transition:transform .25s ease,background .25s ease,color .25s ease,box-shadow .25s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-rose{background:var(--rose);color:#fff;box-shadow:0 10px 26px rgba(224,81,122,.34)}
.btn-rose:hover{background:var(--rose-deep);color:#fff;box-shadow:0 16px 34px rgba(224,81,122,.42)}
.btn-gold{background:var(--gold);color:var(--ink);box-shadow:0 10px 26px rgba(240,180,41,.3)}
.btn-gold:hover{background:#fff;color:var(--ink)}
.btn-ghost{border-color:rgba(255,255,255,.5);color:#fff}
.btn-ghost:hover{background:#fff;color:var(--ink);border-color:#fff}
.btn-plum{background:var(--plum);color:#fff}
.btn-plum:hover{background:var(--ink);color:#fff}
.btn-outline{border-color:var(--plum);color:var(--plum)}
.btn-outline:hover{background:var(--plum);color:#fff}

/* -------------------------------------------------------------- help band */
/* Sits immediately below the hero on every page that needs it. */
.helpband{background:var(--ink);color:#fff;padding:2.4rem 0}
.helpband h2{color:#fff;font-size:clamp(1.3rem,2.2vw,1.6rem);margin-bottom:.3rem}
.helpband p{color:rgba(255,255,255,.72);font-size:.93rem;margin:0}
.help-grid{display:grid;grid-template-columns:1.25fr 2fr;gap:2rem;align-items:center}
.help-nums{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.help-num{
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);
  border-radius:14px;padding:1rem 1.1rem;text-decoration:none;display:block;
  transition:background .25s ease,transform .25s ease,border-color .25s ease;
}
.help-num:hover{background:rgba(224,81,122,.22);border-color:var(--rose);transform:translateY(-3px)}
.help-num strong{display:block;color:#fff;font-size:1.02rem;font-weight:800;font-family:"Bricolage Grotesque",sans-serif}
.help-num span{display:block;font-size:.74rem;color:rgba(255,255,255,.66);letter-spacing:.06em;text-transform:uppercase;font-weight:700;margin-top:.2rem}
@media(max-width:900px){.help-grid{grid-template-columns:1fr;gap:1.4rem}.help-nums{grid-template-columns:1fr}}

/* --------------------------------------------------------------- sections */
.band{padding:clamp(4rem,8vw,7rem) 0;position:relative}
.band.alt{background:#fff}
.band.lilac{background:var(--lilac)}
.band.deep{background:var(--grad-plum);color:rgba(255,255,255,.86)}
.band.deep h2,.band.deep h3,.band.deep h4{color:#fff}
.band.deep .lead{color:rgba(255,255,255,.82)}
.band.deep .eyebrow{color:var(--gold)}


/* kinetic mission statement */
.kinline{font-family:"Bricolage Grotesque",sans-serif;font-weight:600;
  font-size:clamp(1.5rem,3.4vw,2.5rem);line-height:1.24;letter-spacing:-.02em;color:var(--ink)}
/* Legible by default. The dim state is added by script only, so the mission
   statement is never hidden if JavaScript fails to run. */
.kinline .w{display:inline-block;transition:opacity .45s ease,color .45s ease}
.kinline.kinetic .w{opacity:.24}
.kinline.kinetic .w.lit{opacity:1}
.kinline .hi{color:var(--rose-deep)}

/* -------------------------------------------------------------- reveal fx */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s cubic-bezier(.19,1,.22,1),transform .8s cubic-bezier(.19,1,.22,1)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.09s}
.reveal.d2{transition-delay:.18s}
.reveal.d3{transition-delay:.27s}
.reveal.d4{transition-delay:.36s}

/* ----------------------------------------------------------------- stats */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.3rem;margin-top:2.6rem}
/* Six statistics sit better in threes than in a row of four plus two. */
.stats.six{grid-template-columns:repeat(3,1fr)}
@media(max-width:860px){.stats,.stats.six{grid-template-columns:1fr 1fr}}
@media(max-width:460px){.stats,.stats.six{grid-template-columns:1fr}}
.stat{
  background:#fff;border:1px solid var(--line);border-radius:var(--r);
  padding:1.7rem 1.4rem;box-shadow:var(--shadow-sm);
  transition:transform .3s ease,box-shadow .3s ease;
}
.stat:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.stat b{
  display:block;font-family:"Bricolage Grotesque",sans-serif;font-weight:700;
  font-size:clamp(2.2rem,4.6vw,3.1rem);line-height:1;color:var(--plum);letter-spacing:-.03em;
}
/* Direct child only. A descendant selector here also catches the counter
   span nested inside .stat b and collapses the number to label size. */
.stat > span{display:block;margin-top:.55rem;font-size:.87rem;color:var(--muted);line-height:1.45}
.band.deep .stat{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.16)}
.band.deep .stat b{color:var(--gold)}
.band.deep .stat > span{color:rgba(255,255,255,.76)}

/* ----------------------------------------------------------------- cards */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(258px,1fr));gap:1.4rem;margin-top:2.6rem}
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:2rem 1.7rem;position:relative;overflow:hidden;
  box-shadow:var(--shadow-sm);transition:transform .35s cubic-bezier(.19,1,.22,1),box-shadow .35s ease;
}
.card::before{
  content:"";position:absolute;inset:0 0 auto 0;height:4px;background:var(--grad-rose);
  transform:scaleX(0);transform-origin:left;transition:transform .45s cubic-bezier(.19,1,.22,1);
}
.card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg)}
.card:hover::before{transform:scaleX(1)}
.card .ico{
  width:52px;height:52px;border-radius:15px;display:grid;place-items:center;
  background:var(--lilac);color:var(--plum);margin-bottom:1.15rem;
}
.card .ico svg{width:25px;height:25px}
.card p:last-child{margin-bottom:0}
.band.deep .card{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.16);color:rgba(255,255,255,.82)}
.band.deep .card .ico{background:rgba(240,180,41,.16);color:var(--gold)}

/* ---------------------------------------------------------------- marquee */
.marquee{overflow:hidden;padding:1.15rem 0;background:var(--grad-rose);position:relative}
.marquee-track{display:flex;gap:2.6rem;width:max-content;animation:slide 34s linear infinite}
.marquee:hover .marquee-track{animation-play-state:paused}
.marquee span{
  font-family:"Bricolage Grotesque",sans-serif;font-weight:700;font-size:1.02rem;
  color:var(--ink);white-space:nowrap;display:flex;align-items:center;gap:2.6rem;letter-spacing:-.01em;
}
.marquee span::after{content:"";width:7px;height:7px;border-radius:50%;background:var(--ink);opacity:.45}
@keyframes slide{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ------------------------------------------------------------------ split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4.2rem);align-items:center}
.split.wide-left{grid-template-columns:1.15fr 1fr}
@media(max-width:900px){.split,.split.wide-left{grid-template-columns:1fr}}
.figure{
  position:relative;border-radius:var(--r-lg);overflow:hidden;
  aspect-ratio:4/5;background:var(--grad-plum);box-shadow:var(--shadow-lg);
}
.figure.wide{aspect-ratio:3/2}
.figure img{width:100%;height:100%;object-fit:cover}
.figure::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(42,23,64,.55))}
.figure figcaption{
  position:absolute;left:1.4rem;right:1.4rem;bottom:1.25rem;z-index:2;
  color:#fff;font-size:.83rem;line-height:1.45;
}

/* pull quote */
.pull{
  font-family:"Instrument Serif",Georgia,serif;font-style:italic;
  font-size:clamp(1.5rem,3.1vw,2.25rem);line-height:1.28;color:var(--plum);
  border-left:3px solid var(--gold);padding-left:1.6rem;margin:2rem 0;
}
.pull cite{
  display:block;font-family:"Manrope",sans-serif;font-style:normal;font-size:.83rem;
  font-weight:800;letter-spacing:.13em;text-transform:uppercase;color:var(--muted);margin-top:1rem;
}
.band.deep .pull{color:#fff}
.band.deep .pull cite{color:rgba(255,255,255,.62)}

/* -------------------------------------------------------------- timeline */
.tl{list-style:none;margin:2.4rem 0 0;padding:0 0 0 2.1rem;border-left:2px solid var(--line);position:relative}
.tl li{position:relative;padding-bottom:2.2rem}
.tl li:last-child{padding-bottom:0}
.tl li::before{
  content:"";position:absolute;left:calc(-2.1rem - 8px);top:.42rem;width:14px;height:14px;
  border-radius:50%;background:#fff;border:3px solid var(--rose);
}
.tl li.gold::before{background:var(--gold);border-color:var(--gold-deep)}
.tl .yr{display:block;font-weight:800;color:var(--rose-deep);font-size:.83rem;letter-spacing:.13em;text-transform:uppercase}
.tl h3{margin:.28rem 0 .4rem}
.tl p:last-child{margin-bottom:0}

/* ------------------------------------------------------------------ chips */
.chips{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.8rem}
.chip{
  background:#fff;border:1px solid var(--line);border-radius:999px;
  padding:.6rem 1.2rem;font-weight:700;font-size:.89rem;color:var(--plum);
  box-shadow:var(--shadow-sm);transition:.28s;
}
.chip:hover{background:var(--grad-rose);color:var(--ink);transform:translateY(-3px);border-color:transparent}
.band.deep .chip{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.17);color:#fff}

/* ------------------------------------------------------------------ forms */
.form{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(1.6rem,3.4vw,2.6rem);box-shadow:var(--shadow)}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:1.1rem}
@media(max-width:640px){.frow{grid-template-columns:1fr}}
label{display:block;font-weight:700;font-size:.86rem;color:var(--ink);margin-bottom:.3rem}
.field{
  width:100%;padding:.85rem 1rem;border:1.5px solid var(--line);border-radius:12px;
  font-family:inherit;font-size:.98rem;color:var(--body);background:var(--cream);margin-bottom:1.1rem;
  transition:border-color .22s ease,background .22s ease;
}
.field:focus{outline:none;border-color:var(--rose);background:#fff}
textarea.field{min-height:150px;resize:vertical}
select.field{appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E5C73' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;background-size:12px;padding-right:2.6rem}
.hint{font-size:.83rem;color:var(--muted);margin:-.6rem 0 1.2rem}

/* safety callout */
.callout{
  border-radius:var(--r);padding:1.35rem 1.5rem;margin:1.6rem 0;
  background:#fff;border:1.5px solid var(--rose);border-left-width:5px;
}
.callout.gold{border-color:var(--gold)}
.callout h4{margin-bottom:.4rem}
.callout p:last-child{margin-bottom:0}
.callout p{font-size:.93rem}
.band.deep .callout{background:rgba(255,255,255,.08);border-color:var(--gold);color:rgba(255,255,255,.88)}

/* --------------------------------------------------------------- resource */
.res{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.2rem;margin-top:2.2rem}
.res-item{
  background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:1.5rem;
  display:flex;flex-direction:column;gap:.4rem;transition:transform .3s ease,box-shadow .3s ease;
}
.res-item:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.res-item h3{font-size:1.06rem;margin:0}
.res-item .num{font-family:"Bricolage Grotesque",sans-serif;font-weight:700;font-size:1.32rem;color:var(--rose-deep);text-decoration:none;letter-spacing:-.02em}
.res-item .num:hover{color:var(--plum)}
.res-item p{font-size:.9rem;color:var(--muted);margin:0}

/* ---------------------------------------------------------------- gallery */
.grid-g{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1.1rem;margin-top:2.4rem}
/* Six tiles in a four-column grid strands two on the second row, so the
   community band runs in threes. The boutique gallery keeps four. */
.grid-g.six{grid-template-columns:repeat(3,1fr)}
@media(max-width:900px){.grid-g.six{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.grid-g.six{grid-template-columns:1fr}}
.tile{
  position:relative;border-radius:var(--r);overflow:hidden;aspect-ratio:1;
  background:var(--grad-plum);box-shadow:var(--shadow-sm);
}
.tile img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.19,1,.22,1)}
.tile:hover img{transform:scale(1.07)}
.tile figcaption{
  position:absolute;inset:auto 0 0 0;padding:2.4rem 1.1rem .95rem;color:#fff;font-size:.85rem;
  background:linear-gradient(180deg,transparent,rgba(42,23,64,.82));
}

/* ----------------------------------------------------------------- footer */
footer.site{background:var(--ink);color:rgba(255,255,255,.74);padding:clamp(3.4rem,6vw,5rem) 0 2rem}
footer.site h4{color:#fff;font-size:.79rem;letter-spacing:.16em;text-transform:uppercase;margin-bottom:1rem}
footer.site a{color:rgba(255,255,255,.74);text-decoration:none}
footer.site a:hover{color:var(--gold)}
.foot-grid{display:grid;grid-template-columns:1.7fr 1fr 1fr 1.35fr;gap:2.2rem}
@media(max-width:900px){.foot-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.foot-grid{grid-template-columns:1fr}}
.foot-list{list-style:none;margin:0;padding:0;display:grid;gap:.55rem;font-size:.92rem}
.foot-brand{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}
.foot-brand img{width:auto;height:66px;display:block}
.foot-brand svg{width:42px;height:42px}
.foot-brand b{font-family:"Bricolage Grotesque",sans-serif;color:#fff;font-size:1.1rem;display:block;line-height:1.1}
.foot-brand .brand-txt > span{display:block;font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);font-weight:700;line-height:1.3}
.socials{display:flex;gap:.7rem;margin-top:1.1rem}
.socials a{width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.11);border:1px solid rgba(255,255,255,.16);display:grid;place-items:center;color:#fff;transition:.28s}
.socials a:hover{background:var(--rose);transform:translateY(-3px)}
.socials svg{width:21px;height:21px}
.foot-base{
  margin-top:3rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.13);
  display:flex;justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.8rem;color:rgba(255,255,255,.5);
}

/* ------------------------------------------------------- reduced motion */
/* Everything ambient stops. Nothing that carries meaning depends on motion. */
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.001ms !important;animation-iteration-count:1 !important;
    transition-duration:.001ms !important;scroll-behavior:auto !important;
  }
  .reveal{opacity:1 !important;transform:none !important}
  .kin .w{opacity:1 !important;transform:none !important}
  .kinline .w{opacity:1 !important}
  .kinline.kinetic .w{opacity:1 !important}
  .orbs{animation:none;opacity:.4}
  .marquee-track{animation:none;transform:none}
  .thread i{transition:none}
}

/* ------------------------------------------------- photo slot placeholder */
/* Temporary. Each slot names the photograph that belongs in it. Delete the
   .slot markup once the real image is dropped in. See README-PRELAUNCH.md */
.figure .slot,.tile .slot{
  position:absolute;inset:0;z-index:1;display:grid;place-items:center;
  text-align:center;padding:1.5rem;color:rgba(255,255,255,.9);
  background:
    repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0 12px,transparent 12px 24px),
    var(--grad-plum);
}
.figure .slot em,.tile .slot em{
  font-family:"Instrument Serif",Georgia,serif;font-style:italic;
  font-size:1.02rem;line-height:1.4;display:block;max-width:22ch;
}
.figure .slot b,.tile .slot b{
  display:block;font-size:.66rem;letter-spacing:.19em;text-transform:uppercase;
  color:var(--gold);font-weight:800;margin-bottom:.55rem;
}


/* ==========================================================================
   Domestic Violence Awareness Month
   Everything here is inert until script.js puts .dvam on <html>, which it
   does for the whole of October. Add ?dvam=1 to any URL to preview it out
   of season, or ?dvam=0 to force it off. Hidden by default, so the seasonal
   content never flashes and never appears if JavaScript does not run.
   ========================================================================== */

.dvam-bar{
  background:linear-gradient(90deg,var(--dvam),#9B59B6 55%,var(--rose));
  color:#fff;border-bottom:1px solid rgba(255,255,255,.16);
}
.dvam-bar[hidden]{display:none}
.dvam-bar-in{display:flex;align-items:center;justify-content:center;gap:.7rem;padding-block:.5rem;position:relative}
.dvam-bar p{margin:0;font-size:.86rem;line-height:1.4;text-align:center}
.dvam-bar b{font-weight:800}
.dvam-bar a{color:#fff;font-weight:700;text-underline-offset:3px}
.dvam-bar a:hover{color:var(--gold)}
.dvam-ribbon{display:grid;place-items:center;flex:0 0 auto}
.dvam-ribbon svg{width:19px;height:19px}
.dvam-close{
  position:absolute;right:0;top:50%;transform:translateY(-50%);
  background:none;border:0;color:rgba(255,255,255,.75);font-size:1.4rem;
  line-height:1;cursor:pointer;padding:.15rem .5rem;border-radius:6px;
}
.dvam-close:hover{color:#fff;background:rgba(255,255,255,.16)}
@media(max-width:700px){
  .dvam-bar p{font-size:.78rem}
  .dvam-bar-in{padding-right:1.9rem}
}

/* Seasonal page content. Present in the markup, revealed by the class. */
.dvam-only{display:none}
html.dvam .dvam-only{display:block}

html.dvam .hero::after{
  content:"";position:absolute;right:-6%;top:-8%;width:44vw;height:44vw;z-index:-1;
  background:radial-gradient(circle,rgba(123,63,160,.45),transparent 62%);
  pointer-events:none;
}

.dvam-band{background:linear-gradient(135deg,#3A1B4F 0%,#2A1740 55%,#4A2160 100%);color:rgba(255,255,255,.86)}
.dvam-band h2,.dvam-band h3{color:#fff}
.dvam-band .eyebrow{color:#D9A7F0}
.dvam-band .lead{color:rgba(255,255,255,.84)}
.dvam-band .card{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.18);color:rgba(255,255,255,.84)}
.dvam-band .card .ico{background:rgba(217,167,240,.18);color:#D9A7F0}
.dvam-band .figure{box-shadow:none}

@media(prefers-reduced-motion:reduce){
  html.dvam .hero::after{opacity:.6}
}






/* ---------------------------------------------------------------- rosters */
.rosters{display:grid;grid-template-columns:repeat(auto-fit,minmax(238px,1fr));gap:1.4rem;margin-top:2.6rem}
.roster{
  background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.9rem 1.7rem;box-shadow:var(--shadow-sm);
  transition:transform .35s cubic-bezier(.19,1,.22,1),box-shadow .35s ease;
}
.roster:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.roster h3{
  font-size:.79rem;letter-spacing:.16em;text-transform:uppercase;color:var(--rose-deep);
  border-bottom:2px solid var(--gold);padding-bottom:.8rem;margin:0 0 1.2rem;
}
.roster ul{list-style:none;margin:0;padding:0;display:grid;gap:.7rem}
.roster li{font-size:1rem;line-height:1.35;color:var(--ink);font-weight:600}
.roster .role{
  display:block;font-size:.76rem;font-weight:700;letter-spacing:.09em;
  text-transform:uppercase;color:var(--muted);margin-top:.15rem;
}


/* ------------------------------------------------------------- dateline */
.dateline{
  display:block;font-size:.73rem;font-weight:800;letter-spacing:.21em;
  text-transform:uppercase;color:var(--rose-deep);
  margin:-.35rem 0 1.5rem;
}
.band.deep .dateline,.dvam-band .dateline{color:var(--gold)}


/* ==========================================================================
   Follow band
   Static by default. No third-party script, nothing loaded from Meta, no
   request leaves the visitor's browser for anyone but this server.
   ========================================================================== */

.follow{background:var(--grad-plum);color:rgba(255,255,255,.84)}
.follow-in{display:grid;grid-template-columns:1.1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
@media(max-width:860px){.follow-in{grid-template-columns:1fr}}
.follow h2{color:#fff;margin-bottom:.6rem}
.follow p{color:rgba(255,255,255,.82)}
.follow .handle{
  display:inline-flex;align-items:center;gap:.55rem;
  font-family:"Bricolage Grotesque",sans-serif;font-weight:700;
  font-size:clamp(1.15rem,2.2vw,1.45rem);color:var(--gold);
  text-decoration:none;margin-bottom:1.4rem;letter-spacing:-.01em;
}
.follow .handle:hover{color:#fff}
.follow .handle svg{width:24px;height:24px;flex:0 0 auto}

.follow-socials{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.6rem}
.follow-socials a{
  display:inline-flex;align-items:center;gap:.6rem;
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.18);
  border-radius:999px;padding:.65rem 1.3rem;color:#fff;text-decoration:none;
  font-weight:700;font-size:.9rem;transition:.28s;
}
.follow-socials a:hover{background:var(--rose);border-color:transparent;transform:translateY(-3px)}

/* Light-background variant, for use outside the deep plum band. */
.res-item .follow-socials a,.callout .follow-socials a{
  background:var(--lilac);border-color:var(--line);color:var(--plum);
}
.res-item .follow-socials a:hover,.callout .follow-socials a:hover{
  background:var(--rose);border-color:transparent;color:#fff;
}
.follow-socials svg{width:18px;height:18px}

/* A 2x2 of the foundation's own photographs, served from this server. */
.follow-grid{display:grid;grid-template-columns:1fr 1fr;gap:.7rem}
.follow-grid figure{
  border-radius:14px;overflow:hidden;aspect-ratio:1;position:relative;
  box-shadow:0 18px 40px rgba(20,8,32,.4);
}
.follow-grid img{width:100%;height:100%;object-fit:cover;transition:transform .6s cubic-bezier(.19,1,.22,1)}
.follow-grid figure:hover img{transform:scale(1.06)}

/* ==========================================================================
   16. STOREFRONT TRANSITION
   The storefront at 76 South Orange Avenue closes 31 August 2026. An inline script
   in the <head> puts .storefront-open on <html> before that date, so the
   correct state paints on the first frame with no flash.

   Fail-safe by design. Both states default to display:none, and the closed
   state is revealed by html:not(.storefront-open). With JavaScript off, the
   closed state shows, because directing someone to a shop that has shut is
   the worse of the two errors.

   Preview with ?store=open or ?store=closed on any URL.
   ========================================================================== */
.st-open{display:none}
.st-closed{display:none}
html.storefront-open .st-open{display:block}
html:not(.storefront-open) .st-closed{display:block}

/* Elements whose natural display is not block need it restored explicitly.
   Qualified with the element's own class so these outrank the rules above. */
html.storefront-open .eyebrow.st-open,
html:not(.storefront-open) .eyebrow.st-closed{display:inline-flex}
html.storefront-open .hero-actions.st-open,
html:not(.storefront-open) .hero-actions.st-closed{display:flex}

/* The transition notice. Warm rather than alarming, and it carries a date
   rather than a countdown. */
.movingband{background:linear-gradient(135deg,#FFF7E6 0%,#FAF6FB 60%,#F6EDFB 100%);border-block:1.5px solid var(--line)}
.movingband .wrap{padding-block:clamp(2.2rem,4vw,3.2rem)}
.movingband h2{margin-bottom:.6rem}
.movingband .eyebrow{color:var(--gold-deep)}
.moving-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.4rem;margin-top:1.8rem}
.moving-grid .callout{margin:0;background:#fff}
@media(max-width:760px){.moving-grid{grid-template-columns:1fr}}

/* Portfolio call to action. A plain link rather than a third button, so it
   does not compete with the gold CTA in the events section just below. */
.portfolio-cta{margin-top:2.2rem;font-weight:700}
.portfolio-cta a{color:var(--plum);text-underline-offset:4px}
.portfolio-cta a:hover{color:var(--rose-deep)}
.portfolio-cta span{display:inline-block;transition:transform .25s ease}
.portfolio-cta a:hover span{transform:translateX(4px)}


/* ------------------------------------------------------- nav social icons */
/* Visible on every page without scrolling. Sits between the menu items and
   the Give button, separated by a hairline so it does not read as navigation. */
.nav-social{display:flex;align-items:center;gap:.15rem;padding-left:.8rem;margin-left:.2rem;
  border-left:1px solid rgba(255,255,255,.22)}
.nav-social a{
  display:grid;place-items:center;width:34px;height:34px;border-radius:50%;
  color:rgba(255,255,255,.86);transition:background .25s ease,color .25s ease,transform .25s ease;
}
.nav-social a::after{display:none !important}
.nav-social a:hover{background:var(--rose);color:#fff;transform:translateY(-2px)}
.nav-social svg{width:19px;height:19px}

@media(max-width:1200px){
  .nav-social{padding-left:.6rem;margin-left:.2rem}
  .nav-social a{width:31px;height:31px}
  .nav-social svg{width:17px;height:17px}
}

/* In the mobile drawer the icons become a labelled row, since bare icons in a
   stacked list read as orphaned. */
@media(max-width:980px){
  .nav-social{border-left:0;border-top:1px solid rgba(255,255,255,.1);
    padding:1rem 0 .2rem;margin:0;gap:.6rem;justify-content:flex-start}
  .nav-social a{width:44px;height:44px;background:rgba(255,255,255,.08)}
  .nav-social svg{width:20px;height:20px}
}


/* ============================================================== press card */
/* A pinned feature for a published article. Deliberately links out rather
   than reproducing the piece: the cover, the headline, one short quote, and
   a route to the publisher. */
.press{background:var(--grad-plum);color:rgba(255,255,255,.86)}
.press-in{display:grid;grid-template-columns:auto 1fr;gap:clamp(1.8rem,4vw,3.4rem);align-items:center}
@media(max-width:820px){.press-in{grid-template-columns:1fr;gap:1.8rem}}
.press-cover{
  width:min(230px,54vw);border-radius:10px;overflow:hidden;flex:0 0 auto;
  box-shadow:0 26px 60px rgba(20,8,32,.55);border:1px solid rgba(255,255,255,.16);
}
.press-cover img{width:100%;height:auto;display:block}
.press h2{color:#fff;margin-bottom:.5rem}
.press .kicker{
  display:inline-flex;align-items:center;gap:.6rem;font-size:.72rem;font-weight:800;
  letter-spacing:.19em;text-transform:uppercase;color:var(--gold);margin-bottom:1rem;
}
.press .kicker::before{content:"";width:28px;height:2px;background:var(--gold)}
.press blockquote{
  font-family:"Instrument Serif",Georgia,serif;font-style:italic;
  font-size:clamp(1.15rem,2.2vw,1.5rem);line-height:1.35;color:#fff;
  border-left:3px solid var(--gold);padding-left:1.3rem;margin:1.2rem 0 1.4rem;
}
.press .byline{font-size:.86rem;color:rgba(255,255,255,.62);margin:0 0 1.6rem}


/* ---------------------------------------------------------- apply block */
.apply{background:#fff;border:1px solid var(--line);border-left:5px solid var(--gold);
  border-radius:var(--r-lg);padding:clamp(1.7rem,3.4vw,2.4rem);box-shadow:var(--shadow-sm);margin-top:2.4rem}
.apply h3{margin:0 0 .4rem}
.apply .step{
  display:block;font-size:.72rem;font-weight:800;letter-spacing:.19em;
  text-transform:uppercase;color:var(--rose-deep);margin-bottom:.9rem;
}
.apply ul{list-style:none;margin:1.1rem 0 0;padding:0;display:grid;gap:.75rem}
.apply ul li{
  position:relative;padding-left:1.7rem;font-size:1.02rem;color:var(--ink);
  font-weight:600;line-height:1.4;
}
.apply ul li::before{
  content:"";position:absolute;left:0;top:.55em;width:8px;height:8px;
  border-radius:50%;background:var(--gold);
}
.apply .deadline{
  margin-top:1.6rem;padding-top:1.3rem;border-top:1px solid var(--line);
  display:flex;flex-wrap:wrap;gap:.4rem 1.4rem;align-items:baseline;
}
.apply .deadline b{font-family:"Bricolage Grotesque",sans-serif;font-size:1.1rem;color:var(--ink)}
.apply .deadline span{font-size:.95rem;color:var(--muted)}


/* ------------------------------------------------------------- sign band */
/* The pop-up banner. Full width, no crop, sitting on plum so the sign's own
   blue field reads as intentional rather than accidental. */
.signband{background:var(--grad-plum);padding-block:clamp(2.4rem,5vw,3.6rem)}
.signband figure{max-width:760px;margin-inline:auto;border-radius:10px;overflow:hidden;
  box-shadow:0 22px 50px rgba(20,8,32,.45);border:1px solid rgba(255,255,255,.14)}
.signband img{width:100%;height:auto;display:block}
.signband p{
  max-width:620px;margin:1.5rem auto 0;text-align:center;
  color:rgba(255,255,255,.82);font-size:1rem;
}
