/*
 * Хлеб с небес — Production stylesheet
 * Generated single-source-of-truth.
 * Tokens at top, layout below, animations + responsive last.
 */

/* ============================================================
 * NO-JS / NO-ANIM SAFETY NET
 *
 * Critical content (hero text, CTAs, section titles, reveals,
 * images) is given a `starting state` of opacity:0 + transform
 * for animation. If JavaScript fails to set `html.js-ready`
 * within ~600ms, OR the user has prefers-reduced-motion, OR
 * any animation-related browser/extension issue strips them —
 * we MUST still show the content.
 *
 * Rule of thumb: every selector that animates content from
 * hidden→visible MUST be scoped to `html.js-ready` so missing
 * JS = missing animations, NOT missing content.
 * ============================================================ */

html:not(.js-ready) .hero__title .word,
html:not(.js-ready) .hero__lede,
html:not(.js-ready) .hero__cta,
html:not(.js-ready) .hero__tag,
html:not(.js-ready) .hero__photo,
html:not(.js-ready) .hero__meta,
html:not(.js-ready) .reveal,
html:not(.js-ready) .reveal-stagger,
html:not(.js-ready) .reveal-stagger > *,
html:not(.js-ready) .title-letter,
html:not(.js-ready) img.fade {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

@media (prefers-reduced-motion: reduce){
  .hero__title .word,
  .hero__lede,
  .hero__cta,
  .hero__tag,
  .hero__photo,
  .hero__meta,
  .reveal,
  .reveal-stagger > *,
  .title-letter,
  img.fade {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* =========== TOKENS =========== */
:root{
  --bg:        #F2EDE0;     /* warm cream */
  --bg-2:      #E8E0CC;     /* deeper cream */
  --paper:     #F8F4EA;     /* lighter */
  --ink:       #0E0E0E;     /* near-black */
  --ink-2:     #1F1F1F;
  --muted:     #6B655A;     /* warm grey */
  --line:      #C8BFA8;     /* hairline */
  --accent:    #DC3220;     /* lava red */
  --accent-2:  #FF5A45;
  --accent-soft:#F9DCD7;
  --gold:      #B7894A;
  --dark:      #0A0A0A;

  --f-display: "Unbounded", -apple-system, system-ui, sans-serif;
  --f-body:    "Onest", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease:     cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{ scroll-behavior:smooth; -webkit-text-size-adjust: 100%; }
body{
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* paper grain */
body::before{
  content:"";
  position: fixed; inset:0;
  pointer-events:none;
  z-index: 200;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.07  0 0 0 0 0.05  0 0 0 0 0.02  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a{color: inherit; text-decoration:none;}
button{font-family: inherit; cursor: pointer; border:0; background:none; color: inherit;}
img{max-width:100%; display:block;}

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

.wrap{
  width: min(1280px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
section{ position: relative; z-index: 2; }

/* ==================== NAV ==================== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .45s var(--ease);
}
.nav__bg{
  position: absolute; inset: 0;
  background: rgba(242,237,224,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .45s var(--ease);
  opacity: 0;
}
.nav.scrolled .nav__bg{ opacity: 1; border-bottom-color: var(--line); }
.nav__inner{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.brand{
  display:flex; align-items:center; gap: 12px;
}
.brand__logo{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 4px;
  transition: transform .8s var(--ease);
}
.brand:hover .brand__logo{ transform: rotate(-12deg) scale(1.05); }
.brand__name{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand__sub{
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

.nav__links{ display:flex; gap: 30px; align-items:center; }
.nav__link{
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: -.005em;
  position: relative;
  padding: 8px 0;
  transition: color .25s;
}
.nav__link::before{
  content:"";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: -12px; top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform .35s var(--ease);
}
.nav__link:hover::before{ transform: translateY(-50%) scale(1); }

.lang{
  display:flex;
  background: var(--ink);
  border-radius: 999px;
  padding: 4px;
  position: relative;
}
.lang__btn{
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 7px 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.5);
  z-index: 2;
  position: relative;
  transition: color .35s;
}
.lang__btn.active{ color: var(--ink); }
.lang__pill{
  position: absolute;
  top: 4px; bottom: 4px;
  width: calc(50% - 4px);
  background: var(--bg);
  border-radius: 999px;
  transition: transform .5s var(--ease);
  z-index: 1;
}
.lang.is-en .lang__pill{ transform: translateX(100%); }

/* ==================== HERO ==================== */
.hero{
  min-height: 100vh;
  padding: 130px 0 60px;
  display:flex;
  align-items: center;
  position: relative;
}
.hero__grid{
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.hero__tag{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .1s forwards;
}
.hero__tag-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 0 rgba(255,90,69,.55);
  animation: pulse 1.6s infinite;
}

.hero__title{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(46px, 7.2vw, 112px);
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--ink);
  margin-bottom: 30px;
}
.hero__title .word{
  display: inline-block;
  opacity: 0;
  transform: translateY(60px);
  animation: heroWord 1s var(--ease-out) forwards;
}
.hero__title .em{
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero__title .em::after{
  content:"";
  position: absolute;
  left: 4%; right: 4%;
  bottom: 6%;
  height: 8%;
  background: var(--accent);
  opacity: .18;
  z-index: -1;
  transform: skew(-2deg);
}

.hero__lede{
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 46ch;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) .8s forwards;
}

.hero__cta{
  display:flex; gap: 12px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1s forwards;
}
.btn{
  display:inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 28px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--primary{
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover{
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(220,50,32,.45);
}
.btn--ghost{
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover{
  background: var(--ink);
  color: var(--bg);
}
.btn .arrow{
  width: 16px; height: 16px;
  transition: transform .4s var(--ease);
}
.btn:hover .arrow{ transform: translate(4px, -2px); }

/* hero photo */
.hero__photo{
  position: relative;
  aspect-ratio: 3/4;
  background: var(--bg-2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px) scale(.96);
  animation: heroPhoto 1.4s var(--ease-out) .3s forwards;
  border-radius: 6px;
}
.hero__photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.92);
}
.hero__sticker{
  position: absolute;
  right: -34px; top: -34px;
  width: 130px; height: 130px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px;
  line-height: 1.3;
  animation: spin 22s linear infinite;
  box-shadow: 0 16px 40px -8px rgba(220,50,32,.4);
  z-index: 3;
}
.hero__sticker span{
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
}
.hero__sticker-text{
  position: absolute;
  inset: 0;
  animation: spin 18s linear infinite;
}
.hero__sticker-emoji{
  font-size: 28px;
  font-style: normal;
}
.hero__photo-tag{
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--bg);
  color: var(--ink);
  padding: 9px 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* hero meta strip */
.hero__meta{
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 1.3s forwards;
}
.hero__meta-item{ display:flex; flex-direction:column; gap:4px; }
.hero__meta-num{
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink);
}
.hero__meta-label{
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

@keyframes heroWord{ to{ opacity:1; transform: translateY(0); } }
@keyframes heroPhoto{ to{ opacity:1; transform: translateY(0) scale(1); } }
@keyframes fadeUp{ to{ opacity:1; transform: translateY(0); } }
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(255,90,69,.55);}
  70%{box-shadow:0 0 0 12px rgba(255,90,69,0);}
  100%{box-shadow:0 0 0 0 rgba(255,90,69,0);}
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ==================== MARQUEE ==================== */
.marquee{
  background: var(--ink);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  position: relative;
  z-index: 3;
}
.marquee__track{
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -.02em;
}
.marquee__track > span{ display:flex; align-items:center; gap: 50px; }
.marquee__dot{
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  display:inline-block;
  flex: 0 0 auto;
}
.marquee__star{
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ==================== LIVE BANNER ==================== */
.live{
  padding: 110px 0;
  position: relative;
}
.live__inner{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 50px;
}
.live__label{
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  display:flex; align-items:center; gap: 10px;
  margin-bottom: 16px;
}
.live__label::before{
  content:"";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(220,50,32,.55);
  animation: pulse 1.5s infinite;
}
.live__caption{
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -.02em;
}
.live__time{
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(120px, 18vw, 240px);
  line-height: .8;
  color: var(--ink);
  letter-spacing: -.05em;
  text-align: center;
  position: relative;
}
.live__time .colon{
  display:inline-block;
  color: var(--accent);
  animation: blink 1.4s infinite;
}
@keyframes blink{
  0%,49%,100%{ opacity:1; }
  50%,99%{ opacity: .2; }
}
.live__platforms{
  display:flex; flex-direction: column; gap: 12px;
}
.live__plat{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all .4s var(--ease);
  width: max-content;
}
.live__plat:hover{
  background: var(--ink);
  color: var(--bg);
  transform: translateX(8px);
}
.live__plat svg{ width: 20px; height: 20px; flex: 0 0 auto; }
.live__plat-arrow{
  margin-left: 14px;
  transition: transform .4s var(--ease);
}
.live__plat:hover .live__plat-arrow{ transform: translateX(4px); }

/* ==================== SECTION TITLES ==================== */
.section{ padding: 130px 0; position: relative; }
.section__head{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: end;
}
.section__num{
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  border-top: 1.5px solid var(--accent);
  padding-top: 14px;
  min-width: 100px;
}
.section__title{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 78px);
  line-height: .98;
  letter-spacing: -.04em;
  color: var(--ink);
}
.section__title .em{
  font-weight: 400;
  font-style: italic;
  color: var(--accent);
}
.section__title .stroke{
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
  font-weight: 700;
}

/* ==================== ABOUT ==================== */
.about__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__lede{
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -.02em;
}
.about__lede em{
  color: var(--accent);
  font-weight: 400;
  font-style: italic;
}
.about__body{
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
}
.about__quote{
  margin-top: 60px;
  padding: 32px 38px;
  background: var(--paper);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -.01em;
}
.about__cite{
  font-family: var(--f-body);
  font-style: normal;
  display:block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-top: 14px;
}

/* ==================== PILLARS ==================== */
.pillars{
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}
.pillars__list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.pillar{
  padding: 50px 50px 50px 0;
  border-top: 1px solid var(--line);
  position: relative;
  cursor: default;
  transition: padding .4s var(--ease), background .4s var(--ease);
}
.pillar:nth-child(2n){
  padding-left: 50px; padding-right: 0;
  border-left: 1px solid var(--line);
}
.pillar:nth-child(1), .pillar:nth-child(2){ border-top: 0; }
.pillar:hover{ padding-left: 70px; padding-right: 30px; }
.pillar:nth-child(2n):hover{ padding-left: 70px; }
.pillar__num{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.pillar__title{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.pillar__text{
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 50ch;
}

/* ==================== PORTRAIT (DARK) ==================== */
.portrait{
  background: var(--dark);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.portrait .section__title,
.portrait .about__lede{ color: var(--bg); }
.portrait .section__num{ color: var(--accent-2); border-top-color: var(--accent-2); }

.portrait__grid{
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.portrait__photo{
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.portrait__photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06);
}
.portrait__photo-frame{
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
}
.portrait__photo-tag{
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
}

.portrait__body{ display:flex; flex-direction:column; gap: 22px; }
.portrait__lede{
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--bg);
  margin-bottom: 8px;
}
.portrait__lede em{ font-style: italic; font-weight: 400; color: var(--accent-2); }
.portrait__text{
  color: rgba(245,238,220,.78);
  font-size: 16px;
  line-height: 1.65;
}
.portrait__sign{
  display:flex; align-items:center; gap:16px;
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.portrait__sig{
  font-family: var(--f-display);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: -.02em;
}
.portrait__sig-meta{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(245,238,220,.55);
  font-weight: 500;
}

/* ==================== PHOTO STRIP ==================== */
.photostrip{
  padding: 60px 0;
  background: var(--ink);
  overflow: hidden;
}
.photostrip__track{
  display: flex;
  gap: 24px;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.photostrip__img{
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
}
.photostrip__img img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}

/* ==================== TEAM / TELEGRAM (KEY SECTION) ==================== */
.team{
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.team::before{
  content:"";
  position: absolute;
  top: 30%; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: .8;
}
.team__intro-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: center;
}
.team__intro-text{
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink);
}
.team__intro-text em{
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.team__intro-photo{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
}
.team__intro-photo img{ width: 100%; height: 100%; object-fit: cover; }

/* the 3-step flow */
.team__flow-title{
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.team__steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
  position: relative;
}
.step{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: all .5s var(--ease);
  display:flex;
  flex-direction: column;
  gap: 18px;
}
.step:hover{
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 30px 60px -30px rgba(20,15,5,.25);
}
.step__num{
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.step__num::after{
  content:"";
  position: absolute;
  right: -18px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
}
.step__title{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}
.step__text{
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
}

.team__cta-wrap{
  background: var(--ink);
  color: var(--bg);
  border-radius: 16px;
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team__cta-wrap::before{
  content:"";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(220,50,32,.25) 0%, transparent 65%);
  pointer-events: none;
}
.team__cta-eyebrow{
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 20px;
}
.team__cta-title{
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--bg);
  max-width: 18ch;
  margin: 0 auto 24px;
}
.team__cta-title em{ color: var(--accent-2); font-style: italic; font-weight: 400; }
.team__cta-text{
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(245,238,220,.7);
  max-width: 50ch;
  margin: 0 auto 36px;
}
.team__cta-btn{
  display:inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 36px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.team__cta-btn::before{
  content:"";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
  z-index: 0;
}
.team__cta-btn:hover::before{ transform: scaleX(1); }
.team__cta-btn:hover{ color: var(--bg); transform: translateY(-3px); }
.team__cta-btn > *{ position: relative; z-index: 1; }
.team__cta-handle{
  display: block;
  margin-top: 20px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -.005em;
  color: var(--accent-2);
  transition: color .3s;
}
.team__cta-handle:hover{ color: var(--bg); }

/* ==================== DONATE ==================== */
.donate{
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.donate__intro{
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 50px;
}
.donate__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.donate-card{
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  display:flex;
  flex-direction: column;
  gap: 18px;
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.donate-card::before{
  content:"";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.donate-card:hover{
  transform: translateY(-3px);
  border-color: var(--ink);
}
.donate-card:hover::before{ transform: scaleX(1); }
.donate-card__head{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.donate-card__label{
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.donate-card__type{
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  padding: 4px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
}
.donate-card__value{
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink);
  word-break: break-all;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.donate-card__copy{
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  opacity: 0;
  transition: opacity .25s;
}
.donate-card__value:hover .donate-card__copy{ opacity: 1; }
.donate-card__value.copied .donate-card__copy{ opacity:1; color: #2a7d4a; }

.donate__recipient{
  margin-top: 50px;
  padding: 40px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.donate__rec-label{
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 8px;
}
.donate__rec-name{
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -.03em;
}
.donate__verse{
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(245,238,220,.7);
  font-weight: 400;
}

/* ==================== FOOTER ==================== */
.footer{
  background: var(--ink);
  color: var(--bg);
  padding: 90px 0 40px;
}
.footer__top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__brand{ display:flex; flex-direction:column; gap: 18px; }
.footer__logo{ display:flex; align-items:center; gap: 12px; }
.footer__logo img{
  width: 50px; height: 50px;
  background: var(--paper);
  border-radius: 50%;
  padding: 4px;
}
.footer__name{
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.footer__tagline{
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--accent-2);
  max-width: 32ch;
  line-height: 1.4;
}
.footer__col-title{
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer__list{ list-style:none; display:flex; flex-direction:column; gap: 10px; }
.footer__list a, .footer__list span{
  color: rgba(245,238,220,.78);
  font-size: 14.5px;
  transition: color .3s;
}
.footer__list a:hover{ color: var(--accent-2); }
.footer__bottom{
  padding-top: 26px;
  display:flex; justify-content:space-between; align-items:center;
  font-size: 12px;
  color: rgba(245,238,220,.4);
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==================== REVEALS ==================== */
.reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in{ opacity: 1; transform: translateY(0); }
.reveal-stagger > *{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal-stagger.in > *{ opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay: .1s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay: .2s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay: .3s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay: .5s; }

/* lang fade */
[data-rurenable]{ transition: opacity .35s var(--ease); }
.lang-switching [data-rurenable]{ opacity: 0; }

/* ==================== ENHANCED ANIMATIONS ==================== */

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

/* Hamburger button — hidden on desktop, shown ≤980px */
.nav__menu-btn{
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 110;
  border-radius: 50%;
  flex: 0 0 auto;
}
.nav__menu-btn span{
  position: absolute;
  width: 22px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  left: 11px;
  transition: transform .4s var(--ease), top .35s var(--ease), background .3s, opacity .25s;
}
.nav__menu-btn span:nth-child(1){ top: 18px; }
.nav__menu-btn span:nth-child(2){ top: 26px; }
.nav__menu-btn.open span{ background: var(--bg); }
.nav__menu-btn.open span:nth-child(1){ top: 22px; transform: rotate(45deg); }
.nav__menu-btn.open span:nth-child(2){ top: 22px; transform: rotate(-45deg); }

/* Drawer overlay */
.menu-drawer{
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--bg);
  z-index: 105;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 24px 32px;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  overflow-y: auto;
}
.menu-drawer.open{ transform: translateY(0); }
.menu-drawer__nav{
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}
.menu-drawer__link{
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--bg);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), color .25s;
  position: relative;
}
.menu-drawer.open .menu-drawer__link{
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i, 0) * 70ms + 250ms);
}
.menu-drawer__link::after{
  content: "↗";
  font-family: var(--f-body);
  font-size: 22px;
  color: var(--accent-2);
  opacity: 0;
  transform: translate(-6px, 4px);
  transition: opacity .3s, transform .3s var(--ease);
}
.menu-drawer__link:hover,
.menu-drawer__link:active{ color: var(--accent-2); }
.menu-drawer__link:hover::after,
.menu-drawer__link:active::after{ opacity: 1; transform: translate(0,0); }
.menu-drawer__link-num{
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--accent-2);
  margin-right: 14px;
  vertical-align: super;
}

.menu-drawer__bottom{
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.09);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease) .55s, transform .6s var(--ease) .55s;
}
.menu-drawer.open .menu-drawer__bottom{ opacity: 1; transform: translateY(0); }

.menu-drawer__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.menu-drawer__cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .35s var(--ease);
}
.menu-drawer__cta:hover, .menu-drawer__cta:active{
  background: var(--accent);
  color: var(--bg);
}
.menu-drawer__handle{
  font-family: var(--f-display);
  font-style: italic;
  color: var(--accent-2);
  font-size: 14px;
  letter-spacing: -.005em;
  font-weight: 400;
  word-break: break-all;
}

/* drawer-specific lang toggle (dark theme) */
.lang--drawer{ background: rgba(255,255,255,.1); }
.lang--drawer .lang__btn{ color: rgba(255,255,255,.5); }
.lang--drawer .lang__btn.active{ color: var(--ink); }
.lang--drawer .lang__pill{ background: var(--bg); }

/* lock body scroll when menu is open */
body.menu-open{ overflow: hidden; }

/* Show mobile elements only on small viewports */
@media (max-width: 980px){
  .nav__menu-btn{
    display: flex;
    /* position:fixed escapes the nav stacking context so z-index sits above drawer */
    position: fixed;
    top: 14px;
    right: 4vw;
    z-index: 120;
    background: rgba(242,237,224,.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .nav__menu-btn.open{
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .menu-drawer{ display: flex; }
  .nav__links{ display: none; }
  /* hide regular nav lang on tablet/phone — drawer has its own */
  .nav .lang:not(.lang--drawer){ display: none; }
}
@media (max-width: 480px){
  .nav__menu-btn{ right: 4vw; }
}


/* ==================== ENHANCED ANIMATIONS (cont.) ==================== */

/* image fade-in once base64 loads */
/* image smooth fade-in once loaded — applied via JS on `load` event */
img.fade{
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1s var(--ease-out), transform 1.2s var(--ease-out);
}
img.fade.img-loaded{
  opacity: 1;
  transform: scale(1);
}

/* cursor follower */
.cursor-dot, .cursor-ring{
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
}
.cursor-dot{
  width: 8px; height: 8px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: opacity .3s, width .3s var(--ease), height .3s var(--ease), background .3s;
}
.cursor-ring{
  width: 36px; height: 36px;
  border: 1.5px solid var(--ink);
  transform: translate(-50%, -50%);
  transition: opacity .3s, width .35s var(--ease), height .35s var(--ease), border-color .3s, background .3s;
}
.cursor-ring.active, .cursor-dot.active{ opacity: 1; }
.cursor-ring.hover{
  width: 70px; height: 70px;
  border-color: var(--accent);
  background: rgba(220,50,32,.08);
}
.cursor-dot.hover{
  width: 14px; height: 14px;
  background: var(--accent);
}
@media (max-width: 980px), (hover: none){
  .cursor-dot, .cursor-ring{ display: none !important; }
}

/* hide native cursor on interactive elements only on desktop */
@media (min-width: 981px) and (hover: hover){
  body.has-custom-cursor a:hover,
  body.has-custom-cursor button:hover,
  body.has-custom-cursor .donate-card__value:hover{
    cursor: none;
  }
}

/* letter-by-letter reveal for section titles */
.title-letter{
  display: inline-block;
  opacity: 0;
  transform: translateY(80%) rotateZ(6deg);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
}
.title-revealed .title-letter{
  opacity: 1;
  transform: translateY(0) rotateZ(0);
}
/* span-wrap for words to allow letters but keep word as ws-nowrap */
.title-word{ display: inline-block; white-space: nowrap; }

/* parallax layers */
.parallax-photo{ will-change: transform; }
.parallax-photo img{ will-change: transform; transition: transform 1.4s var(--ease); }

/* 3D tilt cards */
.tilt-card{
  transform-style: preserve-3d;
  perspective: 900px;
  transition: transform .35s var(--ease);
}
.tilt-card .tilt-inner{
  transform-style: preserve-3d;
  transition: transform .15s var(--ease-out);
  will-change: transform;
}
.tilt-card .tilt-shine{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.18) 0%, transparent 35%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .35s;
  z-index: 5;
  border-radius: inherit;
}
.tilt-card:hover .tilt-shine{ opacity: 1; }

/* floating sticker */
.hero__sticker{ animation: spin 22s linear infinite, float 4.5s ease-in-out infinite; }
@keyframes float{
  0%,100%{ translate: 0 0; }
  50%{ translate: 0 -8px; }
}

/* marquee speed-up on hover */
.marquee:hover .marquee__track{ animation-duration: 16s; }
.marquee__track{ transition: animation-duration .4s; }

/* photostrip pause and accelerate on hover */
.photostrip__track{ transition: animation-duration .5s; }
.photostrip:hover .photostrip__track{ animation-duration: 22s; }

/* subtle hover lift on photostrip imgs */
.photostrip__img{ transition: transform .5s var(--ease); }
.photostrip:hover .photostrip__img{ transform: scale(.97); }
.photostrip__img:hover{ transform: scale(1.05) !important; z-index: 2; }

/* live time scroll-triggered counter style */
.live__time{ transition: opacity .6s; }

/* scroll progress bar */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 200;
  transition: width .15s linear;
  pointer-events: none;
}

/* breathing on hero photo replaced by parallax + tilt */

/* button magnetic micro-effect handled in JS via transforms */

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .cursor-dot, .cursor-ring{ display: none !important; }
}

/* ==================== RESPONSIVE ==================== */

/* —————— TABLET (≤ 980px) —————— */
@media (max-width: 980px){
  .wrap{ width: min(1280px, 90vw); }

  /* nav */
  .nav{ padding: 14px 0; }
  .brand__logo{ width: 42px; height: 42px; }

  /* hero */
  .hero{ padding: 120px 0 60px; }
  .hero__grid{ grid-template-columns: 1fr; gap: 50px; }
  .hero__photo{
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__sticker{
    width: 110px; height: 110px;
    right: -14px; top: -14px;
    font-size: 10px;
  }
  .hero__sticker-emoji{ font-size: 22px; }
  .hero__meta{
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 32px;
    margin-top: 56px;
    padding-top: 26px;
  }

  /* live banner */
  .live{ padding: 90px 0; }
  .live__inner{
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .live__time{ font-size: clamp(96px, 26vw, 240px); }
  .live__platforms{ align-items: center; }
  .live__caption{ font-size: 19px; }
  .live__plat{ width: 100%; max-width: 380px; justify-content: space-between; }

  /* sections */
  .section{ padding: 90px 0; }
  .section__head{
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 50px;
  }

  /* about */
  .about__grid{ grid-template-columns: 1fr; gap: 40px; }
  .about__quote{ margin-top: 30px; padding: 26px 30px; }

  /* pillars */
  .pillars__list{ grid-template-columns: 1fr; }
  .pillar{
    padding: 40px 0 !important;
    border-left: 0 !important;
    border-top: 1px solid var(--line) !important;
  }
  .pillar:hover{ padding: 40px 0 !important; }
  .pillar:first-child{ border-top: 0 !important; }

  /* portrait */
  .portrait__grid{ grid-template-columns: 1fr; gap: 50px; }
  .portrait__photo{ max-width: 480px; margin: 0 auto; width: 100%; }

  /* photo strip */
  .photostrip{ padding: 40px 0; }
  .photostrip__img{ width: clamp(180px, 38vw, 260px); }

  /* team */
  .team__intro-grid{
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 70px;
  }
  .team__intro-photo{ max-width: 380px; margin: 0 auto; width: 100%; }
  .team__steps{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 60px;
  }
  .team__cta-wrap{ padding: 56px 32px; }
  .step{ padding: 32px 26px; }

  /* donate */
  .donate__grid{ grid-template-columns: 1fr; }
  .donate__recipient{
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 30px;
  }

  /* footer */
  .footer{ padding: 70px 0 32px; }
  .footer__top{
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }
  .footer__bottom{ flex-direction: column; align-items: flex-start; }
}

/* —————— PHONE (≤ 640px) —————— */
@media (max-width: 640px){
  .wrap{ width: 92vw; }

  /* hero */
  .hero{ padding: 100px 0 40px; }
  .hero__title{ font-size: clamp(40px, 11vw, 72px); }
  .hero__lede{ font-size: 15px; margin-bottom: 28px; }
  .hero__tag{ padding: 7px 14px; font-size: 10px; margin-bottom: 28px; }
  .hero__cta{ flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__cta .btn{ justify-content: center; padding: 16px 24px; }
  .hero__photo{ max-width: 100%; }
  .hero__photo-tag{ font-size: 9px; padding: 8px 12px; bottom: 14px; left: 14px; }
  .hero__meta{ grid-template-columns: 1fr 1fr; gap: 22px 24px; margin-top: 44px; }
  .hero__meta-num{ font-size: 22px; }
  .hero__meta-label{ font-size: 10px; line-height: 1.35; }

  /* nav */
  .brand__name{ font-size: 14px; }
  .brand__sub{ font-size: 9px; letter-spacing: .18em; }
  .brand__logo{ width: 38px; height: 38px; }
  .nav__inner{ gap: 12px; }

  /* marquee */
  .marquee{ padding: 16px 0; }
  .marquee__track{ font-size: clamp(24px, 7vw, 40px); gap: 36px; }
  .marquee__track > span{ gap: 36px; }

  /* live */
  .live{ padding: 70px 0; }
  .live__time{ font-size: clamp(80px, 32vw, 220px); }
  .live__caption{ font-size: 17px; }
  .live__plat{ font-size: 13px; padding: 14px 18px; }

  /* sections */
  .section{ padding: 70px 0; }
  .section__head{ margin-bottom: 40px; }
  .section__num{ font-size: 12px; padding-top: 12px; }
  .section__title{ font-size: clamp(32px, 9.5vw, 56px); }

  /* about */
  .about__lede{ font-size: clamp(20px, 5.5vw, 26px); line-height: 1.3; }
  .about__quote{ font-size: 17px; padding: 22px 24px; }
  .about__body{ font-size: 15px; }

  /* pillars */
  .pillar{ padding: 32px 0 !important; }
  .pillar:hover{ padding: 32px 0 !important; }
  .pillar__title{ font-size: 22px; }
  .pillar__text{ font-size: 14.5px; }

  /* portrait */
  .portrait__lede{ font-size: clamp(20px, 5.5vw, 26px); }
  .portrait__text{ font-size: 15px; }
  .portrait__sig{ font-size: 26px; }

  /* photo strip */
  .photostrip{ padding: 32px 0; }
  .photostrip__img{ width: clamp(160px, 46vw, 230px); }
  .photostrip__track{ gap: 16px; }

  /* team */
  .team__intro-text{ font-size: clamp(20px, 5.5vw, 26px); }
  .team__cta-wrap{ padding: 44px 22px; border-radius: 12px; }
  .team__cta-title{ font-size: clamp(26px, 7.5vw, 42px); }
  .team__cta-text{ font-size: 14.5px; }
  .team__cta-btn{ padding: 18px 28px; font-size: 13px; flex-wrap: wrap; justify-content: center; }
  .team__cta-handle{ font-size: 14px; word-break: break-all; }
  .step{ padding: 28px 22px; gap: 14px; }
  .step__num{ font-size: 52px; }
  .step__title{ font-size: 20px; }
  .step__text{ font-size: 14px; }

  /* donate */
  .donate-card{ padding: 22px; gap: 14px; border-radius: 6px; }
  .donate-card__label{ font-size: 16px; }
  .donate-card__value{
    font-size: 18px;
    padding: 10px 0;
    min-height: 44px;
    align-items: center;
  }
  .donate-card__copy{ opacity: 1; font-size: 9px; }
  .donate__intro{ font-size: 15px; margin-bottom: 32px; }
  .donate__recipient{ padding: 26px; border-radius: 8px; }
  .donate__rec-name{ font-size: 26px; }
  .donate__verse{ font-size: 14px; }

  /* footer */
  .footer{ padding: 60px 0 28px; }
  .footer__top{ gap: 32px; padding-bottom: 32px; }
  .footer__name{ font-size: 20px; }
  .footer__tagline{ font-size: 15px; }
}

/* —————— SMALL PHONES (≤ 400px) —————— */
@media (max-width: 400px){
  .hero__sticker{ width: 90px; height: 90px; right: -10px; top: -10px; }
  .hero__sticker-emoji{ font-size: 18px; }
  .hero__meta{ grid-template-columns: 1fr 1fr; gap: 18px 18px; }
  .hero__meta-num{ font-size: 20px; }
  .live__time{ font-size: 76px; }
  .donate-card__value{ font-size: 16px; word-spacing: -2px; }
  .menu-drawer{ padding: 90px 22px 24px; }
  .menu-drawer__link{ font-size: 32px; padding: 14px 0; }
  .menu-drawer__cta{ width: 100%; justify-content: center; }
  .step__num{ font-size: 44px; }
  .photostrip__img{ width: clamp(140px, 50vw, 200px); }
}

/* —————— TOUCH-DEVICE TWEAKS —————— */
@media (hover: none){
  /* slightly enlarge underline / dot indicators on tap */
  .donate-card__copy{ opacity: 1 !important; }
  /* remove hover-only padding shifts on pillars */
  .pillar:hover{ padding-left: inherit; padding-right: inherit; }
  /* card hover effects keyed to active */
  .donate-card:active{ transform: translateY(-2px); }
  .step:active{ transform: translateY(-3px); }
}