/* ============================================
   TEN IMPACT Cultural · Award · Corporate
   Editorial premium theme
   Fraunces (display/serif) + Inter (body/UI)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,400,0,0&display=swap');


/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root{
  --paper:      #F7F4EC;
  --paper-alt:  #EFE9DB;
  --card:       #FFFFFF;

  --ink:        #1E1A16;
  --ink-soft:   #665D4F;
  --ink-faint:  #9A907C;

  --red:        #E31E24;
  --red-dark:   #A3151A;
  --red-tint:   #FBEAEA;

  --green:      #009853;
  --green-dark: #006B3A;

  --gold:       #009853;
  --gold-light: #6FC79E;

  --line:       #E3D9C3;
  --line-strong:#D2C4A2;
  --white:      #FFFFFF;

  --max: 1180px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(30,26,22,.05), 0 2px 6px rgba(30,26,22,.04);
  --shadow-md: 0 6px 20px rgba(30,26,22,.07), 0 1px 3px rgba(30,26,22,.05);
  --shadow-lg: 0 20px 48px rgba(30,26,22,.12);

  --ease: cubic-bezier(.4,0,.2,1);
}


/* =========================================================
   RESET
   ========================================================= */

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

html{
  scroll-behavior:smooth;
  scroll-padding-top:84px;
}

body{
  font-family:'Inter', sans-serif;
  font-size:16px;
  color:var(--ink);
  background:var(--paper);
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}




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

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

ul{
  list-style:none;
}

::selection{
  background:var(--ink);
  color:var(--paper);
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4{
  font-family:'Fraunces', serif;
  font-optical-sizing:auto;
  font-weight:560;
  letter-spacing:-.01em;
  line-height:1.12;
  color:var(--ink);
}

h1 span,
h2 span{
  color:var(--red);
  font-style:italic;
  font-weight:500;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 2rem;
}

.eyebrow{
  font-family:'Inter', sans-serif;
  font-weight:600;
  font-size:.72rem;
  letter-spacing:2.6px;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:1rem;
  display:inline-flex;
  align-items:center;
  gap:.65rem;
}

.eyebrow::before{
  content:'';
  width:24px;
  height:1px;
  background:var(--gold);
  display:inline-block;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:var(--ink);
  color:var(--white);

  font-family:'Inter', sans-serif;
  font-weight:600;
  letter-spacing:.6px;
  font-size:.82rem;
  text-transform:uppercase;

  padding:.95rem 2.1rem;
  min-height:48px;

  border:1px solid var(--ink);
  border-radius:var(--radius-sm);

  cursor:pointer;
  transition:background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
}

.btn:hover{
  background:var(--red);
  border-color:var(--red);
  transform:translateY(-1px);
}

.btn-outline{
  background:transparent;
  border:1px solid var(--ink);
  color:var(--ink);
}

.btn-outline:hover{
  background:var(--ink);
  color:var(--white);
}

.btn-outline-ink{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:transparent;
  border:1px solid var(--line-strong);
  color:var(--ink);

  font-family:'Inter', sans-serif;
  font-weight:600;
  letter-spacing:.6px;
  font-size:.82rem;
  text-transform:uppercase;

  padding:.95rem 2.1rem;
  min-height:48px;

  border-radius:var(--radius-sm);

  cursor:pointer;
  transition:background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.btn-outline-ink:hover{
  background:var(--ink);
  border-color:var(--ink);
  color:var(--white);
}


/* =========================================================
   TOP UTILITY BAR
   ========================================================= */

.topbar{
  background:var(--ink);
  color:var(--white);
  font-size:.78rem;
  padding:.6rem 0;
}

.topbar .wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topbar a{
  color:var(--white);
  margin-left:1.4rem;
  opacity:.9;
  transition:opacity .2s;
}

.topbar a:hover{
  opacity:1;
  color:var(--gold-light);
}

.topbar .locs{
  letter-spacing:2.5px;
  opacity:.65;
  font-size:.7rem;
  font-weight:500;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar{
  background:rgba(247,244,236,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border-bottom:1px solid var(--line);

  position:sticky;
  top:0;
  z-index:100;
}

.navbar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:80px;
  padding-top:.6rem;
  padding-bottom:.6rem;
}


/* =========================================================
   BRAND / LOGO
   ========================================================= */

.brand{
  display:flex;
  align-items:center;
  gap:14px;

  text-decoration:none;

  min-width:340px;
  flex-shrink:0;
}

.brand-logo{
  display:block;

  width:64px;
  height:64px;
  max-height:64px;

  object-fit:contain;
  object-position:center;

  flex-shrink:0;

  transition:transform .3s ease;
}

.brand:hover .brand-logo{
  transform:scale(1.03);
}

.brand-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1;
}

.brand-name{
  font-family:'Fraunces', serif;
  font-optical-sizing:auto;
  font-size:1.7rem;
  font-weight:600;
  letter-spacing:.2px;

  color:var(--ink);
  white-space:nowrap;
}

.brand-name strong{
  color:var(--red);
  font-weight:600;
}

.brand-tagline{
  margin-top:7px;

  font-family:'Inter',sans-serif;
  font-size:.66rem;
  font-weight:600;

  letter-spacing:2.4px;
  color:var(--gold);

  white-space:nowrap;
}

.brand-tagline b{
  color:var(--red);
  margin:0 5px;
  font-weight:600;
}


/* Fallback when only logo exists */
.brand:not(:has(.brand-content))::after{
  content:'TEN IMPACT\A CULTURAL • AWARD • CORPORATE';

  white-space:pre;

  display:block;

  font-family:'Fraunces',serif;
  font-size:1.7rem;
  line-height:1.1;
  letter-spacing:.2px;

  color:var(--ink);
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:2.1rem;

  font-weight:500;
  font-size:.88rem;
}

.nav-links > li > a{
  position:relative;
  padding:.5rem 0;

  transition:color .2s;

  font-weight:500;
  font-family:'Inter',sans-serif;
  color:var(--ink);
}

.nav-links > li > a::after{
  content:'';
  position:absolute;
  left:0;
  right:100%;
  bottom:-2px;
  height:1px;
  background:var(--red);
  transition:right .25s var(--ease);
}

.nav-links > li > a:hover::after,
.nav-links .active::after{
  right:0;
}

.nav-links > li > a:hover,
.nav-links .active{
  color:var(--red);
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.dropdown{
  position:relative;
}

.dropdown > a::after{
  right:100%;
}

.dropdown-menu{
  position:absolute;
  top:130%;
  left:-1.4rem;

  background:var(--white);

  min-width:250px;

  border-radius:var(--radius-sm);

  box-shadow:var(--shadow-lg);

  border-top:2px solid var(--red);

  opacity:0;
  visibility:hidden;

  transform:translateY(8px);

  transition:opacity .2s, transform .2s, visibility .2s;

  padding:.4rem;

  overflow:hidden;
  isolation:isolate;
}

.dropdown:hover > .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li{
  position:relative;
}

.dropdown-menu li:not(:last-child){
  border-bottom:1px solid var(--paper-alt);
}

.dropdown-menu li a{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:.85rem 1rem;

  font-weight:500;
  font-size:.87rem;
  font-family:'Inter',sans-serif;

  color:var(--ink);

  border-radius:4px;

  transition:.18s;
}

.dropdown-menu li a:hover{
  background:var(--paper);
  color:var(--red);
  padding-left:1.2rem;
}

.dropdown-menu li a .arrow-sub{
  font-size:.7rem;
  color:var(--ink-faint);
}

.dropdown-menu li a:hover .arrow-sub{
  color:var(--red);
}

.has-sub{
  position:relative;
}

.sub-menu{
  position:absolute;
  top:-3px;
  left:100%;

  background:var(--white);

  min-width:210px;

  border-radius:var(--radius-sm);

  box-shadow:var(--shadow-lg);

  border-top:2px solid var(--gold);

  opacity:0;
  visibility:hidden;

  transform:translateX(6px);

  transition:.18s;

  padding:.4rem;

  overflow:hidden;
  isolation:isolate;
}

.has-sub:hover > .sub-menu{
  opacity:1;
  visibility:visible;
  transform:translateX(0);
}

.sub-menu li a{
  font-size:.83rem;
  font-weight:500;
  padding:.7rem 1rem;
}

.nav-toggle{
  display:none;

  font-size:1.5rem;

  background:none;
  border:none;

  cursor:pointer;
  color:var(--ink);
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  position:relative;

  min-height:82vh;

  display:flex;
  align-items:center;

  background:var(--paper);

  overflow:hidden;
}

.hero::before{
  content:'';

  position:absolute;
  inset:0;

  background-image:
    radial-gradient(
      circle at 88% 15%,
      rgba(227,30,36,.06),
      transparent 55%
    ),
    radial-gradient(
      circle at 8% 90%,
      rgba(0,152,83,.10),
      transparent 50%
    );
}

.hero .wrap{
  position:relative;
  z-index:2;

  display:grid;

  grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);

  gap:clamp(2rem,5vw,5rem);

  align-items:center;
}

.hero h1{
  font-size:clamp(2.6rem,4.8vw,4.3rem);
  color:var(--ink);
}

.hero p.lead{
  max-width:560px;

  margin:1.5rem 0 2.2rem;

  font-size:1.08rem;

  color:var(--ink-soft);

  line-height:1.75;
}

.hero .cta-row{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}


/* =========================================================
   HERO BADGE
   ========================================================= */

.hero-badge{
  justify-self:end;

  width:238px;

  background:var(--ink);
  color:var(--white);

  border-radius:var(--radius);

  padding:2rem 1.4rem;

  position:relative;

  transform:rotate(2.5deg);

  box-shadow:var(--shadow-lg);

  border:1px solid rgba(111,199,158,.25);
}

.hero-badge::before,
.hero-badge::after{
  content:'';

  position:absolute;
  left:50%;

  transform:translateX(-50%);

  width:28px;
  height:28px;

  border-radius:50%;

  background:var(--paper);
}

.hero-badge::before{
  top:-14px;
}

.hero-badge::after{
  bottom:-14px;
}

.hero-badge .stub-line{
  border-top:1px dashed rgba(111,199,158,.4);
  margin:1.15rem 0;
}

.hero-badge .stub-top{
  font-size:.64rem;
  letter-spacing:3px;
  color:var(--gold-light);
  font-family:'Inter',sans-serif;
  font-weight:600;
}

.hero-badge .txt{
  font-family:'Inter',sans-serif;
  text-align:center;
  font-size:.72rem;
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-top:.6rem;
  color:rgba(255,255,255,.75);
}

.hero-badge .txt b{
  display:block;
  margin-top:.35rem;
  font-family:'Fraunces',serif;
  font-weight:600;
  font-size:2rem;
  letter-spacing:0;
  text-transform:none;
  color:var(--gold-light);
}

.hero-badge .stub-bottom{
  text-align:center;

  font-size:.6rem;
  letter-spacing:1.6px;

  color:rgba(255,255,255,.45);

  margin-top:.6rem;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section{
  padding:6rem 0;
}

.section-alt{
  background:var(--paper-alt);
}

.section-dark{
  background:var(--ink);
  color:var(--white);
}

.section-dark h2{
  color:var(--white);
}

.section-head{
  max-width:620px;
  margin-bottom:3.4rem;
}

.section-head h2{
  font-size:clamp(1.9rem,3.4vw,2.5rem);
}

.section-head p{
  margin-top:1.1rem;
  color:var(--ink-soft);
  font-size:1rem;
  line-height:1.75;
}

.section-dark .section-head p{
  color:rgba(255,255,255,.68);
}


/* =========================================================
   ABOUT
   ========================================================= */


   
.about-grid{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:4rem;

  align-items:center;
}

.about-grid 

p{
  text-align: justify;
  text-align-last: left;
}

.hero p.lead,
.cat-card p,
.program-card p,
.foot-brand p,
.trust-item p,
.event-card .ev-meta,
footer p{
  text-align: left;
}


/* 
.about-visual{
  border-radius:var(--radius);

  overflow:hidden;

  background:var(--card);

  border:1px solid var(--line);

  position:relative;

  display:flex;
  align-items:flex-end;

  color:#fff;

  box-shadow:var(--shadow-md);

  cursor:zoom-in;
} */



.about-visual{
  border-radius:var(--radius);

  overflow:hidden;

  background:var(--card);

  border:1px solid var(--line);

  position:relative;

  display:flex;
  align-items:flex-end;

  color:#fff;

  box-shadow:var(--shadow-md);

  cursor:zoom-in;

  padding: 1rem;
  box-sizing: border-box;
}

.about-visual img{
  display:block;

  width:100%;
  height:auto;

  border-radius:8px;

  background:var(--card);
}

.about-visual .cap{
  position:absolute;

  left:44px;
  right:14px;
  bottom:16px;

  z-index:2;

  font-family:'Fraunces';
  font-weight:600;
  font-size:1.5rem;
  letter-spacing:0;
  line-height:1.2;

  max-width:100%;

  white-space:normal;

  word-wrap:break-word;
  overflow-wrap:break-word;
}

.about-visual.has-photo::before{
  content:'';

  position:absolute;

  left:14px;
  right:14px;
  bottom:14px;

  height:42%;

  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0,0,0,.62) 100%
    );

  border-radius:0 0 8px 8px;

  z-index:1;

  pointer-events:none;
}

.stat-row{
  display:flex;

  gap:2.6rem;

  margin-top:2.4rem;

  padding-top:1.8rem;

  border-top:1px solid var(--line);

  flex-wrap:wrap;
}

.stat-row .n{
  font-family:'Fraunces';
  font-weight:600;
  font-size:2rem;
  color:var(--ink);
}

.stat-row .l{
  font-size:.74rem;

  letter-spacing:1.1px;

  text-transform:uppercase;
  font-weight:500;

  color:var(--ink-soft);
}


/* =========================================================
   FOUNDER  (retained for other pages)
   ========================================================= */

.founder-card{
  background:var(--card);

  border-radius:var(--radius);

  padding:2.2rem;

  display:grid;

  grid-template-columns:170px 1fr;

  gap:2rem;

  align-items:center;

  box-shadow:var(--shadow-md);

  border:1px solid var(--line);

  position:relative;

  transition:box-shadow .25s ease;
}

.founder-card:hover{
  box-shadow:var(--shadow-lg);
}

.founder-card .f-photo{
  width:170px;
  height:170px;

  border-radius:50%;

  overflow:hidden;

  border:4px solid var(--paper-alt);

  box-shadow:var(--shadow-sm);

  cursor:zoom-in;

  flex-shrink:0;
}

.founder-card .f-photo img{
  width:100%;
  height:100%;

  object-fit:cover;
}

.founder-card .f-role{
  font-family:'Inter';
  font-weight:600;

  font-size:.78rem;

  letter-spacing:2px;
  text-transform:uppercase;

  color:var(--gold);

  margin-bottom:.5rem;

  display:block;
}

.founder-card h3{
  font-size:1.35rem;
  margin-bottom:.7rem;
}

/* .founder-card p{
  color:var(--ink-soft);
  font-size:.95rem;
  line-height:1.7;
} */

.founder-card p{
  color:var(--ink-soft);
  font-size:.95rem;
  line-height:1.7;
  text-align: justify;
  text-align-last: left;
}

.founder-card .quote-mark{
  position:absolute;

  top:1.2rem;
  right:1.6rem;

  font-family:'Fraunces';

  font-size:3.2rem;

  color:var(--paper-alt);

  line-height:1;
}


/* =========================================================
   CATEGORY CARDS  (retained for other pages)
   ========================================================= */

.cat-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(230px,1fr));

  gap:1.6rem;
}

.cat-card{
  background:var(--card);

  border-radius:var(--radius);

  padding:2.1rem 1.8rem;

  position:relative;

  overflow:hidden;

  transition:box-shadow .25s ease, transform .25s ease;

  border:1px solid var(--line);

  box-shadow:var(--shadow-sm);
}

.cat-card::before{
  content:'';

  position:absolute;

  top:1.6rem;
  bottom:1.6rem;
  left:0;

  width:2px;

  background:var(--gold);

  transform:scaleY(0);

  transform-origin:bottom;

  transition:.25s;
}

.cat-card:hover{
  box-shadow:var(--shadow-md);

  transform:translateY(-3px);
}

.cat-card:hover::before{
  transform:scaleY(1);
}

.cat-card .ic{
  width:50px;
  height:50px;

  border-radius:10px;

  background:var(--paper-alt);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:1.4rem;

  margin-bottom:1.2rem;
}

.cat-card .ic .material-symbols-outlined{
  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;

  font-size:1.5rem;

  color:var(--red);

  line-height:1;
}

.cat-card h3{
  font-size:1.1rem;
  margin-bottom:.7rem;
  color:var(--ink);
}

.cat-card p{
  font-size:.9rem;
  color:var(--ink-soft);
  line-height:1.65;
}

.cat-card ul{
  list-style:none;
  margin-top:.7rem;
}

.cat-card ul li{
  position:relative;

  padding-left:1.2rem;

  margin-bottom:.45rem;

  font-size:.87rem;

  color:var(--ink-soft);
}

.cat-card ul li::before{
  content:'';

  position:absolute;

  left:0;
  top:.6em;

  width:5px;
  height:5px;

  border-radius:50%;

  background:var(--red);
}

.cat-card.ticket{
  padding-left:2.4rem;
}

.cat-card.ticket::after{
  content:'';

  position:absolute;

  left:0;
  top:50%;

  transform:
    translateY(-50%)
    translateX(-50%);

  width:24px;
  height:24px;

  border-radius:50%;

  background:var(--paper-alt);
}


/* =========================================================
   PROGRAM CARDS
   ========================================================= */

.program-grid{
  display:grid;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  gap:1.6rem;

  align-items:stretch;
}

.program-card{
  position:relative;

  background:var(--card);

  border-radius:var(--radius);

  overflow:hidden;

  border:1px solid var(--line);

  box-shadow:var(--shadow-sm);

  transition:
    transform .3s var(--ease),
    box-shadow .3s var(--ease),
    border-color .3s var(--ease);

  min-width:0;
}

.program-card:hover{
  transform:translateY(-5px);

  border-color:var(--line-strong);

  box-shadow:var(--shadow-md);
}


/* Image area */

.program-card .p-image{
  position:relative;

  width:100%;

  height:200px;

  overflow:hidden;

  background:var(--paper-alt);
}

.program-card .p-image::after{
  content:'';

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(30,26,22,0) 55%,
      rgba(30,26,22,.18) 100%
    );

  pointer-events:none;

  z-index:1;
}

.program-card .p-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  object-position:center;

  transition:transform .6s var(--ease);
}

.program-card:hover .p-image img{
  transform:scale(1.045);
}


/* Floating icon */

.program-card .p-icon{
  position:absolute;

  left:20px;
  bottom:-20px;

  z-index:3;

  width:46px;
  height:46px;

  border-radius:10px;

  background:var(--white);

  display:flex;
  align-items:center;
  justify-content:center;

  border:1px solid var(--line);

  box-shadow:var(--shadow-sm);

  transition:background .3s ease;
}

.program-card:hover .p-icon{
  background:var(--ink);
}

.program-card .p-icon .material-symbols-outlined{
  font-size:1.4rem;

  color:var(--red);

  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 24;

  transition:color .25s ease;
}

.program-card:hover .p-icon .material-symbols-outlined{
  color:var(--gold-light);
}


/* Card body */

.program-card .p-body{
  padding:2.1rem 1.5rem 1.7rem;
}

.program-card .p-label{
  display:block;

  font-family:'Inter';
  font-weight:600;

  font-size:.62rem;

  letter-spacing:2px;
  text-transform:uppercase;

  color:var(--gold);

  margin-bottom:.6rem;
}

.program-card h3{
  font-size:1.22rem;

  margin-bottom:.7rem;

  color:var(--ink);

  line-height:1.15;
}

.program-card p{
  font-size:.88rem;

  color:var(--ink-soft);

  line-height:1.65;

  margin-bottom:0;
}

.program-card .p-link{
  display:inline-flex;

  align-items:center;

  gap:.4rem;

  font-family:'Inter';
  font-weight:600;

  font-size:.76rem;
  letter-spacing:.4px;

  color:var(--red);

  transition:.2s;
}

.program-card .p-link:hover{
  color:var(--ink);
  gap:.6rem;
}


/* Image position tweaks */

.program-card[id="fashion"] .p-image img,
.program-card[id="sports"] .p-image img,
.program-card[id="yoga"] .p-image img,
.program-card[id="Ayush"] .p-image img{
  object-position:center center;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.4rem;
}

.g-item{
  /* CHANGED: fixed, uniform tile for every photo no more masonry
     column-count, which was giving each image a different height.
     aspect-ratio keeps every tile identical regardless of the
     photo's original orientation. */
  aspect-ratio:4 / 3;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:var(--radius-sm);

  background:var(--card);

  overflow:hidden;

  border:1px solid var(--line);

  padding:7px;

  box-shadow:var(--shadow-sm);

  transition:box-shadow .3s ease, transform .3s ease;

  cursor:zoom-in;
}

.g-item:hover{
  transform:translateY(-3px);

  box-shadow:var(--shadow-md);
}

.g-item img{
  display:block;

  width:100%;
  height:100%;

  /* CHANGED: contain (not cover) so the entire photo is always
     visible nothing gets cropped off while every tile still
     renders at the same size. */
  object-fit:contain;
  object-position:center;

  border-radius:4px;

  background:var(--paper-alt);
}

.g-item span{
  display:block;

  padding:.6rem 1rem;
}


/* =========================================================
   GLOBAL REACH
   ========================================================= */

.reach-band{
  background:var(--ink);

  color:var(--white);

  padding:4rem 0;

  text-align:center;
}

.reach-band .eyebrow{
  color:var(--gold-light);
}

.reach-band .eyebrow::before{
  background:var(--gold-light);
}

.reach-band h2{
  color:var(--white);
}

.reach-band .cities{
  display:flex;

  justify-content:center;

  gap:0;

  flex-wrap:wrap;

  margin-top:1.8rem;

  font-family:'Fraunces';
  font-weight:500;

  letter-spacing:.4px;

  color:var(--gold-light);

  font-size:1.05rem;
}

.reach-band .cities span{
  padding:0 1.6rem;
  position:relative;
}

.reach-band .cities span:not(:last-child)::after{
  content:'';
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:14px;
  background:rgba(111,199,158,.35);
}


/* =========================================================
   CONTACT  (retained for contact.html)
   ========================================================= */

.contact-grid{
  display:grid;

  grid-template-columns:1.2fr .8fr;

  gap:3.5rem;

  align-items:start;
}

.contact-form{
  background:var(--card);

  border-radius:var(--radius);

  padding:2.4rem;

  border:1px solid var(--line);

  box-shadow:var(--shadow-md);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;

  border:1px solid var(--line);

  border-radius:var(--radius-sm);

  padding:.9rem 1rem;

  margin-bottom:1.1rem;

  font-family:'Inter';

  font-size:.94rem;

  background:var(--paper);

  transition:border-color .2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;

  border-color:var(--red);
}

.form-row{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:1.1rem;
}

.contact-form textarea{
  min-height:130px;

  resize:vertical;
}

.contact-info{
  background:var(--card);

  border-radius:var(--radius);

  padding:2.2rem 2.4rem;

  border:1px solid var(--line);

  box-shadow:var(--shadow-md);
}

.info-block{
  border-bottom:1px solid var(--line);

  padding:1.4rem 0;
}

.info-block:first-child{
  padding-top:0;
}

.info-block h4{
  font-size:.76rem;

  letter-spacing:1.6px;
  text-transform:uppercase;

  color:var(--red);

  margin-bottom:.5rem;

  font-family:'Inter';
  font-weight:600;
}

.info-block p{
  color:var(--ink-soft);

  font-size:.95rem;
}

.social-row{
  display:flex;

  gap:.8rem;

  margin-top:1.5rem;
}

.social-row a{
  width:38px;
  height:38px;

  border-radius:50%;

  background:var(--ink);

  color:var(--white);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:.85rem;

  transition:background .2s;
}

.social-row a:hover{
  background:var(--red);
}

.map-box{
  margin-top:1.5rem;

  height:240px;

  border-radius:var(--radius-sm);

  overflow:hidden;

  border:1px solid var(--line);
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.trust-bar{
  background:var(--card);

  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);

  padding:1.9rem 0;
}

.trust-bar .wrap{
  display:flex;

  justify-content:space-between;

  align-items:center;

  flex-wrap:wrap;

  gap:1.4rem;
}

.trust-item{
  display:flex;

  align-items:center;

  gap:.8rem;
}

.trust-item:not(:last-child){
  padding-right:1.4rem;
  border-right:1px solid var(--line);
}

.trust-item .num{
  font-family:'Fraunces';
  font-weight:600;

  font-size:1.7rem;

  color:var(--ink);

  line-height:1;
}

.trust-item .lbl{
  font-size:.72rem;

  letter-spacing:.8px;
  font-weight:500;

  color:var(--ink-soft);

  text-transform:uppercase;

  max-width:120px;

  line-height:1.3;
}

.exp-badge{
  display:inline-flex;

  align-items:center;

  gap:.6rem;

  background:var(--card);

  border:1px solid var(--line);

  padding:.55rem 1.1rem;

  border-radius:30px;

  font-size:.74rem;
  font-weight:500;

  letter-spacing:.6px;

  text-transform:uppercase;

  margin-bottom:1.4rem;

  box-shadow:var(--shadow-sm);
}

.exp-badge b{
  color:var(--red);

  font-family:'Fraunces';
  font-weight:600;

  font-size:.92rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer{
  background:var(--ink);

  color:#FFFFFF;

  padding:4rem 0 1.6rem;
}

.foot-grid{
  display:grid;

  grid-template-columns:
    1.4fr 1fr 1fr 1.2fr;

  gap:2.5rem;
}

.foot-grid h4{
  color:rgba(255,255,255,.9);

  font-size:.74rem;

  letter-spacing:1.8px;
  text-transform:uppercase;

  margin-bottom:1.2rem;

  font-family:'Inter';
  font-weight:600;
}

.foot-grid ul li{
  margin-bottom:.65rem;

  font-size:.9rem;
}

.foot-grid ul li a{
  color:rgba(255,255,255,.7);
  transition:color .2s;
}

.foot-grid ul li a:hover{
  color:var(--red);
}

.foot-brand{
  display:flex;

  flex-direction:column;

  align-items:flex-start;
}

.foot-brand .name-row{
  display:flex;

  align-items:center;

  gap:.8rem;
}

.foot-brand .name{
  font-family:'Fraunces';
  font-weight:600;

  color:var(--white);

  font-size:1.15rem;
}

.foot-brand .since{
  font-family:'Inter';
  font-weight:600;

  font-size:.6rem;

  letter-spacing:1.6px;

  color:var(--gold-light);

  border:1px solid rgba(111,199,158,.35);

  padding:.28rem .65rem;

  border-radius:20px;
}

.foot-brand p{
  margin-top:1rem;

  font-size:.87rem;

  line-height:1.7;

  color:rgba(255,255,255,.62);

  max-width:280px;
}

.foot-bottom{
  border-top:1px solid rgba(255,255,255,.1);

  margin-top:2.8rem;

  padding-top:1.6rem;

  display:flex;

  justify-content:space-between;

  font-size:.8rem;

  color:rgba(255,255,255,.5);

  flex-wrap:wrap;

  gap:.6rem;
}


/* =========================================================
   INNER PAGE HERO
   ========================================================= */

.page-hero{
  background:var(--ink);

  color:var(--white);

  padding:5.5rem 0 3.8rem;

  text-align:center;

  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(227,30,36,.22),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(0,152,83,.22),
      transparent 50%
    );
}

.page-hero h1{
  font-size:clamp(2.1rem,4.2vw,3rem);

  color:var(--white);
}

.crumb{
  font-size:.82rem;

  color:rgba(255,255,255,.55);

  margin-top:.8rem;

  letter-spacing:.4px;
}

.crumb .red{
  color:var(--gold-light);
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox-overlay{
  position:fixed;

  inset:0;

  z-index:999;

  background:rgba(17,13,9,.92);

  display:none;

  align-items:center;

  justify-content:center;

  padding:3rem 1.5rem;

  cursor:zoom-out;
}

.lightbox-overlay.open{
  display:flex;
}

.lightbox-overlay img{
  max-width:min(92vw,1100px);

  max-height:88vh;

  width:auto;
  height:auto;

  border-radius:8px;

  box-shadow:0 30px 80px rgba(0,0,0,.5);
}

.lightbox-close{
  position:fixed;

  top:1.5rem;
  right:1.8rem;

  width:44px;
  height:44px;

  border-radius:50%;

  background:var(--white);

  color:var(--ink);

  border:none;

  font-size:1.3rem;

  cursor:pointer;

  display:flex;

  align-items:center;

  justify-content:center;

  z-index:1000;
}


/* =========================================================
   UPCOMING EVENT
   ========================================================= */

.event-card{
  background:var(--card);

  border-radius:var(--radius);

  overflow:hidden;

  display:grid;

  grid-template-columns:1.1fr 1fr;

  border:1px solid var(--line);

  box-shadow:var(--shadow-lg);

  position:relative;
}


/* Live badge */

.live-badge{
  display:inline-flex;

  align-items:center;

  gap:.55rem;

  background:var(--red);

  color:var(--white);

  font-family:'Inter';
  font-weight:600;

  font-size:.72rem;

  letter-spacing:1.6px;
  text-transform:uppercase;

  padding:.55rem 1.2rem;

  border-radius:30px;

  margin-bottom:.9rem;
}

.live-badge .dot{
  width:7px;
  height:7px;

  border-radius:50%;

  background:var(--white);

  animation:pulse-dot 1.3s ease-in-out infinite;
}

@keyframes pulse-dot{
  0%,100%{
    opacity:1;
    transform:scale(1);
  }

  50%{
    opacity:.35;
    transform:scale(1.5);
  }
}


/* Old event ribbon (kept for other pages) */

.event-card .ev-ribbon{
  position:absolute;

  top:14px;
  left:14px;

  z-index:3;

  display:inline-flex;

  align-items:center;

  gap:.45rem;

  background:var(--red);

  color:var(--white);

  font-family:'Inter';
  font-weight:600;

  font-size:.66rem;

  letter-spacing:1.6px;
  text-transform:uppercase;

  padding:.5rem 1.05rem;

  border-radius:30px;
}

.event-card .ev-ribbon::before{
  content:'';

  width:6px;
  height:6px;

  border-radius:50%;

  background:var(--white);

  flex-shrink:0;

  animation:pulse-dot 1.3s ease-in-out infinite;
}


/* Poster */

.event-card .ev-poster{
  position:relative;

  background:var(--paper);

  cursor:zoom-in;

  min-height:280px;

  padding:14px;

  display:flex;

  align-items:center;

  justify-content:center;
}

.event-card .ev-poster img{
  position:static;

  width:100%;
  height:100%;

  object-fit:contain;

  object-position:center;

  background:var(--paper);

  border-radius:8px;
}


/* Event body */

.event-card .ev-body{
  padding:2.6rem;

  display:flex;

  flex-direction:column;

  justify-content:center;
}

.event-card .ev-date-badge{
  display:inline-flex;

  flex-direction:column;

  align-items:center;

  background:var(--paper-alt);

  border-radius:var(--radius-sm);

  padding:.6rem .9rem;

  width:64px;

  margin-bottom:1.2rem;
}

.event-card .ev-date-badge .d{
  font-family:'Fraunces';
  font-weight:600;

  font-size:1.35rem;

  color:var(--red);

  line-height:1;
}

.event-card .ev-date-badge .m{
  font-size:.66rem;

  letter-spacing:1px;

  text-transform:uppercase;

  color:var(--ink-soft);

  margin-top:.25rem;
}

.event-card h3{
  font-size:1.6rem;

  margin-bottom:.7rem;
}

.event-card .ev-meta{
  font-size:.78rem;

  color:var(--gold);

  letter-spacing:1.4px;

  text-transform:uppercase;

  font-family:'Inter';
  font-weight:600;

  margin-bottom:1rem;
}

.event-card p{
  color:var(--ink-soft);

  font-size:.95rem;
  line-height:1.7;

  margin-bottom:.5rem;
}

.event-card .ev-orgs{
  font-size:.84rem;

  color:var(--ink-soft);

  line-height:1.65;

  margin:.9rem 0 1.6rem;
}

.event-card .ev-orgs b{
  color:var(--ink);
  font-weight:600;
}

.event-card .ev-cta{
  display:flex;

  gap:1rem;

  flex-wrap:wrap;
}


/* =========================================================
   UPCOMING SECTION 01 NOV 2026
   ========================================================= */

.upcoming-section{
  padding-top:4.4rem;
}

.upcoming-banner{
  display:flex;

  align-items:center;

  justify-content:flex-end;

  gap:1.1rem;

  width:max-content;

  margin-left:auto;

  margin-bottom:3rem;

  background:var(--card);

  color:var(--ink);

  padding:.85rem 1.6rem;

  border-radius:30px;

  border:1px solid var(--line-strong);

  box-shadow:var(--shadow-sm);

  font-family:'Inter',sans-serif;
  font-weight:600;

  letter-spacing:1.6px;
}

.upcoming-banner-item{
  display:flex;

  align-items:center;

  gap:.6rem;

  white-space:nowrap;
}

.upcoming-banner-item .material-symbols-outlined{
  font-size:1.15rem;

  line-height:1;

  color:var(--red);
}

.upcoming-banner-item span:last-child{
  font-size:.8rem;
  text-transform:uppercase;
}

.upcoming-divider{
  font-size:1rem;

  font-family:'Inter',sans-serif;

  color:var(--line-strong);
}


/* Upcoming event card */

.upcoming-section .event-card{
  grid-template-columns:1.12fr .88fr;

  background:var(--white);

  border:1px solid var(--line);

  border-radius:var(--radius-lg);

  overflow:hidden;

  box-shadow:var(--shadow-lg);
}

.upcoming-section .event-card .ev-poster{
  min-height:500px;

  background:var(--paper);

  padding:26px;

  display:flex;

  align-items:center;

  justify-content:center;
}

.upcoming-section .event-card .ev-poster img{
  width:100%;
  height:100%;

  max-height:500px;

  object-fit:contain !important;

  object-position:center !important;

  border-radius:6px;
}

.upcoming-section .event-card .ev-body{
  padding:3.2rem 3rem;

  display:flex;

  flex-direction:column;

  justify-content:center;
}

.upcoming-section .event-card .ev-meta{
  color:var(--gold);

  font-family:'Inter',sans-serif;
  font-weight:600;

  font-size:.86rem;

  letter-spacing:1.6px;

  margin-bottom:1.3rem;
}

.upcoming-section .event-card h3{
  font-size:clamp(1.9rem,2.8vw,2.7rem);

  line-height:1.1;

  margin-bottom:1.5rem;
}

.upcoming-section .event-card p{
  color:var(--ink-soft);

  font-size:1rem;

  line-height:1.75;

  margin-bottom:.8rem;
}

.upcoming-section .event-card p strong{
  color:var(--ink);
  font-weight:600;
}

.upcoming-section .event-card .ev-orgs{
  color:var(--ink-soft);

  font-size:.9rem;

  line-height:1.7;

  margin:1.1rem 0 2rem;

  padding-top:1.1rem;

  border-top:1px solid var(--line);
}

.upcoming-section .event-card .ev-orgs b{
  color:var(--ink);
  font-weight:600;
}

.upcoming-section .event-card .ev-cta{
  display:flex;

  gap:1rem;

  flex-wrap:wrap;
}

.upcoming-section .event-card .ev-cta .btn,
.upcoming-section .event-card .ev-cta .btn-outline-ink{
  min-height:52px;

  padding:.9rem 2.1rem;
}


/* Hide old duplicate badges */

.upcoming-section .live-badge,
.upcoming-section .ev-ribbon,
.upcoming-section .ev-date-badge{
  display:none !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:1100px){

  .wrap{
    padding-left:1.5rem;
    padding-right:1.5rem;
  }

  .brand{
    min-width:280px;
  }

  .nav-links{
    gap:1.3rem;
  }

  .hero .wrap{
    grid-template-columns:1fr .72fr;
    gap:2rem;
  }

  .hero-badge{
    width:220px;
  }

  .about-grid{
    gap:2.4rem;
  }

  .contact-grid{
    gap:2rem;
  }

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


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width:900px){

  .hero .wrap,
  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero-badge{
    justify-self:start;

    margin-top:2rem;
  }

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

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

  .upcoming-banner{
    margin-left:auto;
    margin-right:auto;

    margin-bottom:2rem;
  }

  .upcoming-section .event-card{
    grid-template-columns:1fr;
  }

  .upcoming-section .event-card .ev-poster{
    min-height:auto;
  }

  .upcoming-section .event-card .ev-poster img{
    max-height:none;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:760px){

  html{
    scroll-padding-top:70px;
  }

  .wrap{
    padding-left:1.15rem;
    padding-right:1.15rem;
  }


  /* Topbar */

  .topbar{
    display:none;
  }


  /* Header */

  .navbar .wrap{
    min-height:66px;

    padding-top:.5rem;
    padding-bottom:.5rem;
  }

  .brand{
    gap:9px;

    min-width:0;
  }

  .brand-logo{
    width:48px;
    height:48px;
    max-height:48px;
  }

  .brand-name{
    font-size:1.2rem;
  }

  .brand-tagline{
    margin-top:4px;

    font-size:.46rem;

    letter-spacing:1.2px;
  }

  .brand-tagline b{
    margin:0 2px;
  }

  .brand:not(:has(.brand-content))::after{
    font-size:1.2rem;

    line-height:1.1;
  }


  /* Mobile toggle */

  .nav-toggle{
    width:44px;
    height:44px;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:var(--radius-sm);

    border:1px solid var(--line);

    background:var(--white);

    box-shadow:var(--shadow-sm);
  }


  /* Mobile nav */

  .nav-links{
    position:fixed;

    top:66px;
    left:0;
    right:0;
    bottom:0;

    height:calc(100dvh - 66px);

    background:var(--paper);

    flex-direction:column;

    align-items:stretch;

    gap:.2rem;

    padding:1.2rem 1.15rem 2rem;

    transform:translateX(-100%);

    transition:transform .3s ease;

    overflow-y:auto;

    box-shadow:var(--shadow-lg);

    z-index:99;
  }

  .nav-links.open{
    transform:translateX(0);
  }

  .nav-links > li{
    width:100%;
  }

  .nav-links > li > a{
    display:flex;

    align-items:center;

    min-height:48px;

    width:100%;

    padding:.65rem .1rem;

    border-bottom:1px solid var(--line);
  }

  .nav-links > li > a::after{
    display:none;
  }


  /* Dropdown */

  .dropdown-menu{
    position:static;

    width:100%;

    min-width:0;

    margin-top:.35rem;

    padding:.3rem;

    border-left:2px solid var(--red);

    border-top:0;

    border-radius:4px;

    box-shadow:none;

    background:rgba(255,255,255,.6);

    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .dropdown.open .dropdown-menu{
    display:block;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .dropdown-menu li a{
    min-height:44px;
  }

  .sub-menu{
    position:static;

    width:calc(100% - .7rem);

    min-width:0;

    margin-left:.7rem;

    border-left:2px solid var(--gold);

    border-top:0;

    border-radius:4px;

    box-shadow:none;

    background:rgba(239,233,219,.6);

    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }

  .has-sub.open > .sub-menu{
    display:block;
    opacity:1;
    visibility:visible;
    transform:none;
  }


  /* Hero */

  .hero{
    min-height:auto;

    padding:3.6rem 0 3.2rem;
  }

  .hero .wrap{
    grid-template-columns:1fr;

    gap:2.4rem;
  }

  .hero h1{
    font-size:clamp(2.1rem,9.5vw,3rem);

    line-height:1.08;
  }

  .hero p.lead{
    font-size:.98rem;

    margin:1.1rem 0 1.6rem;
  }

  .hero .cta-row{
    flex-direction:column;

    gap:.75rem;
  }

  .hero .cta-row .btn,
  .hero .cta-row .btn-outline{
    width:100%;
  }

  .hero-badge{
    justify-self:center;

    width:min(230px,76vw);

    margin-top:0;

    transform:rotate(1deg);
  }


  /* Sections */

  .section{
    padding:3.6rem 0;
  }

  .section-head{
    margin-bottom:2.2rem;
  }

  .section-head h2{
    font-size:clamp(1.7rem,7vw,2.2rem);
  }


  /* Trust */

  .trust-bar{
    padding:1.3rem 0;
  }

  .trust-bar .wrap{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:1.1rem;
  }

  .trust-item{
    align-items:flex-start;
  }

  .trust-item:nth-child(odd){
    border-right:1px solid var(--line);
  }

  .trust-item:nth-child(even){
    border-right:none;
    padding-right:0;
  }


  /* Program cards */

  .program-grid{
    grid-template-columns:1fr;

    gap:1.2rem;
  }

  .program-card:hover{
    transform:none;
  }

  .program-card .p-image{
    height:210px;
  }

  .program-card .p-icon{
    left:16px;
    bottom:-19px;

    width:44px;
    height:44px;
  }

  .program-card .p-body{
    padding:1.9rem 1.3rem 1.5rem;
  }

  .program-card h3{
    font-size:1.14rem;
  }

  .program-card p{
    font-size:.88rem;
  }


  /* Categories */

  .cat-grid{
    grid-template-columns:1fr;

    gap:1rem;
  }

  .cat-card{
    padding:1.5rem;
  }

  .cat-card:hover{
    transform:none;
  }


  /* About */

  .about-grid{
    grid-template-columns:1fr;

    gap:2rem;
  }

  .about-visual{
    padding:1.25rem;
  }

  .stat-row{
    gap:1.4rem;

    margin-top:1.8rem;
  }


  /* Founder */

  .founder-card{
    grid-template-columns:1fr;

    padding:1.6rem;

    text-align:center;

    justify-items:center;

    gap:1rem;
  }

  .founder-card .f-photo{
    width:130px;
    height:130px;
  }


  /* Gallery */

  .gallery-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:.8rem;
  }

  .g-item{
    padding:5px;
  }

  .g-item:hover{
    transform:none;
  }

  .g-item span{
    padding:.4rem .5rem;

    font-size:.65rem;
  }


  /* Reach */

  .reach-band{
    padding:3rem 0;
  }

  .reach-band .cities{
    gap:.5rem 0;

    font-size:.92rem;
  }

  .reach-band .cities span{
    padding:0 .9rem;
  }


  /* Contact */

  .contact-grid{
    grid-template-columns:1fr;

    gap:1.2rem;
  }

  .contact-form,
  .contact-info{
    padding:1.4rem;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea{
    min-height:48px;
  }

  .contact-form textarea{
    min-height:120px;
  }

  .contact-form .btn{
    width:100%;
  }

  .map-box{
    height:210px;
  }


  /* Footer */

  footer{
    padding:3rem 0 1.3rem;
  }

  .foot-grid{
    grid-template-columns:1fr;

    gap:2rem;
  }

  .foot-bottom{
    margin-top:2rem;

    flex-direction:column;

    align-items:flex-start;
  }


  /* Inner pages */

  .page-hero{
    padding:3.6rem 0 2.6rem;
  }

  .page-hero h1{
    font-size:clamp(1.9rem,8.5vw,2.6rem);
  }


  /* Lightbox */

  .lightbox-overlay{
    padding:1rem;
  }

  .lightbox-overlay img{
    max-width:96vw;

    max-height:82vh;

    object-fit:contain;
  }

  .lightbox-close{
    top:.8rem;

    right:.8rem;
  }


  /* Upcoming */

  .upcoming-section{
    padding-top:2.8rem;
  }

  .upcoming-banner{
    width:100%;

    justify-content:center;

    gap:.6rem;

    padding:.7rem .9rem;

    border-radius:var(--radius-sm);

    margin-bottom:1.8rem;
  }

  .upcoming-banner-item{
    gap:.35rem;
  }

  .upcoming-banner-item .material-symbols-outlined{
    font-size:1rem;
  }

  .upcoming-banner-item span:last-child{
    font-size:.72rem;

    letter-spacing:1px;
  }

  .upcoming-section .event-card{
    border-radius:var(--radius);
  }

  .upcoming-section .event-card .ev-poster{
    padding:12px;
  }

  .upcoming-section .event-card .ev-body{
    padding:1.7rem 1.3rem;
  }

  .upcoming-section .event-card .ev-meta{
    font-size:.74rem;
  }

  .upcoming-section .event-card h3{
    font-size:1.7rem;
  }

  .upcoming-section .event-card .ev-cta{
    flex-direction:column;
  }

  .upcoming-section .event-card .ev-cta .btn,
  .upcoming-section .event-card .ev-cta .btn-outline-ink{
    width:100%;
  }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width:420px){

  .hero{
    padding-top:3rem;
  }

  .hero h1{
    font-size:clamp(1.95rem,11vw,2.7rem);
  }

  .hero-badge{
    width:205px;
  }

  .section{
    padding:3rem 0;
  }

  .gallery-grid{
    gap:.5rem;
  }

  .g-item{
    padding:4px;

    aspect-ratio:1 / 1;
  }

  .g-item span{
    display:none;
  }

  .stat-row{
    display:grid;

    grid-template-columns:1fr 1fr;
  }

  .trust-bar .wrap{
    grid-template-columns:1fr;
  }

  .trust-item:nth-child(odd),
  .trust-item:nth-child(even){
    border-right:none;
    padding-right:0;
    padding-bottom:.9rem;
    border-bottom:1px solid var(--line);
  }

  .trust-item:last-child{
    border-bottom:none;
  }

  .brand .tag{
    display:none;
  }

  .program-card .p-image{
    height:190px;
  }

  .program-card .p-body{
    padding-left:1.15rem;
    padding-right:1.15rem;
  }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

:focus-visible{
  outline:2px solid var(--red);
  outline-offset:2px;
}

@media (prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto !important;
  }

  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;

    animation-iteration-count:1 !important;

    transition-duration:.01ms !important;
  }
}


/* =========================================================
   TOUCH DEVICES
   ========================================================= */

@media (hover:none){

  .cat-card:hover,
  .founder-card:hover,
  .event-card:hover,
  .program-card:hover,
  .g-item:hover{
    transform:none;
  }

  .program-card:hover .p-image img{
    transform:none;
  }
}


/* =========================================================
   FINAL IMAGE / POLISH SAFETY RULES
   ========================================================= */

.about-visual img{
  background:var(--card);
}

.event-card .ev-poster{
  background:var(--paper);
}

.event-card .ev-poster img{
  object-fit:contain !important;
  object-position:center !important;
  background:var(--paper);
}

.program-card .p-image img{
  background:var(--paper-alt);
}

.program-card .p-image,
.program-card .p-icon{
  isolation:isolate;
}