:root{
  --navy: #141d38;
  --navy-2: #1d2a4d;
  --sand: #eee6d3;
  --sand-2: #e4d9bf;
  --ink: #191a22;
  --ink-soft: #4b4d5c;
  --gold: #c9a227;
  --gold-soft: #e3cd85;
  --teal: #3f6e68;
  --white: #faf8f2;
  --max: 1120px;
  --header-h: 64px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 12px);}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:var(--sand);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  padding-top:var(--header-h);
  /* sticky footer: body is the flex column, .site-main grows to push footer
     to the bottom on pages shorter than the viewport */
  display:flex; flex-direction:column; min-height:100vh; min-height:100dvh;
}
.site-main{flex:1 0 auto;}
h1,h2,h3,blockquote{font-family:'PT Serif',serif; margin:0;}
p{margin:0;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 28px;}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.72rem;
  font-weight:600;
  color:var(--gold);
}
.eyebrow.on-sand{color:var(--teal);}

/* SITE HEADER / PLATFORM NAV */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100; height:var(--header-h);
  background:rgba(20,29,56,.94); backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(201,162,39,.22);
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
/* transparent header over the fullscreen hero; solidifies on scroll */
body.has-hero-full{padding-top:0;}
body.has-hero-full .site-header{
  background:transparent; backdrop-filter:none; border-bottom-color:transparent; box-shadow:none;
}
body.has-hero-full .site-header.scrolled{
  background:rgb(2,37,105); border-bottom-color:rgba(201,162,39,.22);
  box-shadow:0 2px 16px rgba(0,0,0,.28);
}
.site-header .wrap{
  height:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
}
/* Logo: light-gold SVG mark (assets/header/logo-header.svg, #FFDD9D fill).
   Reads cleanly both on the solid navy header and transparent over the
   photo hero on the homepage (checked against both hero photos — both
   have a dark top edge under the header's navy overlay). */
.brand-mark{
  display:inline-flex; align-items:center; flex-shrink:0; text-decoration:none;
  transition:filter .2s ease;
}
.brand-logo{display:block; height:48px; width:auto;}
.brand-mark:hover{filter:brightness(1.2);}
.site-nav{display:flex; align-items:center; gap:1px; flex:1; justify-content:center;}
.nav-link{
  display:inline-flex; align-items:center; gap:5px;
  color:rgba(250,248,242,.72); text-decoration:none; font-family:'Inter',sans-serif;
  font-size:.8rem; font-weight:600; line-height:1;
  padding:9px 11px; border-radius:4px; transition:color .2s ease, background .2s ease;
  white-space:nowrap; background:none; border:none; cursor:pointer;
}
.nav-link:hover{color:var(--white); background:rgba(250,248,242,.07);}
.nav-link.active{color:var(--gold);}
.nav-link .caret{width:13px; height:13px; opacity:.75; transition:transform .2s ease;}

/* dropdown */
.nav-item{position:relative; display:flex;}
.nav-item.has-dropdown::after{content:""; position:absolute; top:100%; left:0; right:0; height:10px;}
.nav-dropdown{
  position:absolute; top:100%; left:0; margin-top:8px; min-width:240px;
  background:var(--navy-2); border:1px solid rgba(201,162,39,.22); border-radius:6px;
  padding:6px; box-shadow:0 16px 40px rgba(0,0,0,.38);
  display:flex; flex-direction:column; gap:1px; z-index:120;
  opacity:0; visibility:hidden; transform:translateY(6px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s;
}
.nav-item:hover > .nav-dropdown,
.nav-item.open > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown{opacity:1; visibility:visible; transform:none;}
.nav-item:hover > .nav-dropdown-toggle .caret,
.nav-item.open > .nav-dropdown-toggle .caret{transform:rotate(180deg);}
.nav-dropdown a{
  display:block; color:rgba(250,248,242,.78); text-decoration:none;
  font-size:.82rem; font-weight:500; padding:9px 12px; border-radius:4px;
  transition:color .2s ease, background .2s ease; white-space:nowrap;
}
.nav-dropdown a:hover, .nav-dropdown a:focus-visible{color:var(--white); background:rgba(250,248,242,.08);}
.nav-dropdown a.active{color:var(--gold);}
.header-right{display:flex; align-items:center; gap:12px; flex-shrink:0;}
.header-download{
  display:inline-flex; align-items:center; gap:6px;
  border:1px solid rgba(201,162,39,.45); color:var(--gold-soft);
  font-size:.78rem; font-weight:600; padding:8px 15px; border-radius:4px; text-decoration:none;
  transition:border-color .2s ease, background .2s ease; white-space:nowrap;
}
.header-download:hover{background:rgba(201,162,39,.12); border-color:var(--gold);}
.langswitch{
  display:flex; background:rgba(250,248,242,.07);
  border-radius:999px; padding:3px; border:1px solid rgba(201,162,39,.28);
}
.langswitch a{
  display:inline-flex; align-items:center; text-decoration:none;
  border:none; background:transparent; color:var(--white);
  font-family:'Inter',sans-serif; font-size:.72rem; font-weight:600;
  padding:6px 12px; border-radius:999px; cursor:pointer; letter-spacing:.04em;
  transition:background .25s, color .25s;
}
.langswitch a:hover{color:var(--gold-soft);}
.langswitch a.active{background:var(--gold); color:var(--navy);}
.langswitch a.active:hover{color:var(--navy);}
.nav-toggle{
  display:none; background:none; border:none; color:var(--white); cursor:pointer;
  padding:6px; margin-left:-6px;
}
.nav-toggle svg{width:22px; height:22px;}

@media (max-width:1040px){
  .site-nav{
    position:fixed; top:var(--header-h); left:0; right:0; z-index:99;
    background:var(--navy); flex-direction:column; align-items:stretch;
    padding:6px 20px 18px; gap:0; border-bottom:1px solid rgba(201,162,39,.22);
    max-height:calc(100vh - var(--header-h)); overflow-y:auto;
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity .2s ease, transform .2s ease;
  }
  .site-nav.open{opacity:1; transform:none; pointer-events:auto;}
  .nav-link{
    width:100%; justify-content:space-between; padding:13px 4px;
    border-bottom:1px solid rgba(250,248,242,.08); border-radius:0;
  }
  .nav-item{display:block;}
  .nav-item.has-dropdown::after{display:none;}
  .nav-dropdown{
    position:static; opacity:1; visibility:visible; transform:none;
    background:none; border:none; box-shadow:none; margin:0; padding:0 0 0 14px;
    min-width:0; display:none;
  }
  .nav-item.open > .nav-dropdown{display:flex;}
  .nav-dropdown a{padding:11px 4px; border-bottom:1px solid rgba(250,248,242,.05);}
  .header-download{display:none;}
  .nav-toggle{display:inline-flex;}
}

/* ===== FULLSCREEN HOME HERO (background carousel) ===== */
.home-hero{
  position:relative; overflow:hidden;
  min-height:100vh; min-height:100svh;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  text-align:center; color:var(--white);
  padding:calc(var(--header-h) + 24px) 0 96px;
}
.home-hero-bg{position:absolute; inset:0; z-index:0;}
.hero-slide{position:absolute; inset:0; opacity:0; transition:opacity 1.2s ease;}
.hero-slide.is-active{opacity:1;}
.hero-slide img{width:100%; height:100%; object-fit:cover; object-position:center; display:block;}
.home-hero-overlay{position:absolute; inset:0; z-index:1; background:rgba(2,37,105,0.55);}

.home-hero-content{position:relative; z-index:2; max-width:780px;}
.home-hero .eyebrow{color:var(--gold-soft);}
.home-hero h1{
  font-size:clamp(2.1rem, 5vw, 3.4rem); font-weight:700; line-height:1.12;
  margin:14px 0 18px; letter-spacing:-.01em; text-shadow:0 2px 18px rgba(0,0,0,.35);
}
.home-hero .sub{
  font-size:clamp(1rem, 1.6vw, 1.15rem); color:rgba(250,248,242,.92);
  max-width:60ch; margin:0 auto 30px; text-shadow:0 1px 10px rgba(0,0,0,.3);
}
.home-hero .cta-row{justify-content:center;}
.home-hero .meta-note{color:rgba(250,248,242,.82);}

.scroll-hint{
  position:absolute; left:50%; bottom:26px; transform:translateX(-50%); z-index:2;
  display:inline-flex; flex-direction:column; align-items:center; gap:6px;
  color:rgba(250,248,242,.85); text-decoration:none;
  font-size:.7rem; text-transform:uppercase; letter-spacing:.14em; font-weight:600;
}
.scroll-hint:hover{color:var(--white);}
.scroll-hint svg{width:22px; height:22px; animation:scrollBounce 1.8s ease-in-out infinite;}
@keyframes scrollBounce{0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);}}

@media (max-width:700px){
  .home-hero{min-height:100svh; padding:calc(var(--header-h) + 16px) 0 80px;}
}

/* HERO */
.hero{
  background:radial-gradient(120% 100% at 12% 0%, var(--navy-2) 0%, var(--navy) 55%);
  color:var(--white);
  padding:52px 0 0;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  padding-bottom:48px;
}
/* light-on-navy echo of the youth "mahalla" scene (/youth/ hero only,
   which has no .horizon — this page uses the scene as its own bottom
   edge instead). Kept behind the hero text via z-index. */
.hero-scene{
  position:absolute; left:0; right:0; bottom:0; width:100%; height:auto;
  display:block; opacity:.06; pointer-events:none; z-index:0;
}
/* compensates for the dropped .horizon (72px + 8px margin) so the hero
   keeps roughly the same height/proportion as other pages */
.hero.hero-full-scene{padding-bottom:80px;}
.hero > .wrap{position:relative; z-index:1;}
.hero h1{
  font-size:clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight:700;
  line-height:1.16;
  margin:14px 0 16px;
  letter-spacing:-.01em;
}
.hero .sub{
  font-size:1.02rem;
  color:rgba(250,248,242,.8);
  max-width:56ch;
  margin-bottom:26px;
}
.cta-row{display:flex; align-items:center; gap:16px; flex-wrap:wrap;}
.btn-gold{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:var(--navy);
  font-weight:700; font-size:.88rem;
  padding:11px 20px; border-radius:4px; text-decoration:none;
  transition:background .2s ease;
  border:none; cursor:pointer;
}
.btn-gold:hover{background:var(--gold-soft);}
.btn-outline{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(250,248,242,.32); color:var(--white);
  font-weight:600; font-size:.88rem;
  padding:10px 19px; border-radius:4px; text-decoration:none;
  transition:border-color .2s ease, background .2s ease;
}
.btn-outline:hover{border-color:var(--gold); background:rgba(201,162,39,.08);}
.meta-note{font-size:.78rem; color:rgba(250,248,242,.5);}

/* horizon divider - signature element */
.horizon{
  position:relative; height:72px; margin-top:8px;
}
.horizon svg{display:block; width:100%; height:100%;}

/* organizers line (seminar hero) */
.organizers{
  display:block; margin-top:20px; padding-top:18px;
  border-top:1px solid rgba(250,248,242,.18);
  font-size:.86rem; color:rgba(250,248,242,.65); max-width:64ch;
  padding-bottom:16px;
}

/* SECTIONS */
.section{padding:64px 0;}
.section-head{max-width:640px; margin-bottom:28px;}
.section-head h2{font-size:clamp(1.5rem,2.4vw,1.9rem); margin-top:6px; font-weight:700;}
.about-body{display:grid; grid-template-columns:1.3fr .9fr; gap:48px;}
.about-body p{color:var(--ink-soft); font-size:1.02rem; margin-bottom:14px;}
.about-seminar p{color:var(--ink-soft); font-size:1.02rem; margin-bottom:14px; max-width:72ch;}
blockquote{
  border-left:3px solid var(--gold);
  padding:6px 0 6px 22px;
  font-size:1.14rem;
  font-style:italic;
  color:var(--ink);
  align-self:start;
}
blockquote cite{
  display:block; margin-top:14px; font-style:normal; font-family:'Inter',sans-serif;
  font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:var(--ink-soft);
}

/* THEMES */
.themes{background:var(--navy); color:var(--white);}
.themes .section-head h2{color:var(--white);}
.theme-grid{
  display:grid; grid-template-columns:repeat(5,1fr); gap:1px;
  background:rgba(250,248,242,.12);
  border:1px solid rgba(250,248,242,.12);
}
.theme-card{
  background:var(--navy); padding:22px 18px; min-height:140px;
  display:flex; flex-direction:column; gap:12px;
}
.theme-card svg{width:26px; height:26px; stroke:var(--gold); flex-shrink:0;}
.theme-card span{font-size:.88rem; font-weight:600; line-height:1.3;}
a.theme-card{text-decoration:none; color:inherit; transition:background .2s ease;}
a.theme-card:hover{background:var(--navy-2);}

/* YOUTH (home page teaser) */
.youth{background:var(--sand-2);}
.youth-body{display:grid; grid-template-columns:.9fr 1.1fr; gap:48px; align-items:center;}
.youth-tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:18px;}
.youth-tags span{
  border:1px solid var(--teal); color:var(--teal); font-size:.78rem; font-weight:600;
  padding:6px 13px; border-radius:999px;
}
.youth-body p{color:var(--ink-soft); font-size:1.02rem;}
.youth-body h2{font-size:clamp(1.5rem,2.2vw,1.9rem);}

/* ===== YOUTH PAGE (/youth/) — warm gradient + abstract "mahalla" skyline scene ===== */
.youth-body-bg{
  position:relative;
  background:linear-gradient(160deg, var(--sand) 0%, #e4d7ae 48%, #cfe1dd 100%);
  overflow:hidden;
}
/* single wide illustrative scene (houses/domes/trees/figures/hills), anchored
   to the bottom of the whole content area — not a repeating tile. Scales
   with width via the SVG's own viewBox ratio (no explicit height set). */
.youth-scene{
  position:absolute; left:0; right:0; bottom:0; width:100%; height:auto;
  display:block; opacity:.09; pointer-events:none; z-index:0;
}
.youth-body-bg > .section{position:relative; z-index:1; background:transparent;}
.youth-body-bg > .section.tint{background:transparent;}

/* bigger, higher-contrast theme tags (youth page highlights block only) */
.youth-tags-lg{gap:14px; margin-top:26px;}
.youth-tags-lg span{
  background:var(--navy); color:var(--gold-soft); border:2px solid var(--gold);
  font-size:1.05rem; font-weight:700; padding:14px 28px; letter-spacing:.03em;
  border-radius:999px;
  box-shadow:0 6px 18px rgba(20,29,56,.22);
}

/* key-concepts cards */
.concept-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px;}
.concept-card{
  background:rgba(250,248,242,.88); border:1px solid rgba(25,26,34,.10); border-radius:10px;
  padding:26px 24px; box-shadow:0 10px 26px rgba(20,29,56,.10);
}
.concept-title{display:block; font-family:'PT Serif',serif; font-weight:700; font-size:1.25rem; color:var(--gold); margin-bottom:10px;}
.concept-desc{color:var(--ink-soft); font-size:.96rem; line-height:1.6;}

/* SEMINAR ANNOUNCEMENT (home teaser) */
.seminar-photo img{
  width:100%; border-radius:3px; display:block;
  box-shadow:0 14px 30px rgba(20,29,56,.18);
}
.about-body .btn-gold{margin-top:6px;}

/* COUNTRIES */
.countries{padding:56px 0;}
.countries .section-head{margin-bottom:24px;}
.country-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:12px;}
.country-card{
  text-align:center; padding:20px 10px;
  border:1px solid rgba(25,26,34,.14); border-radius:4px;
  font-family:'PT Serif',serif; font-size:.98rem; background:var(--white);
}

/* PLATFORM CTA — download + contact (home) */
.platform-cta{background:var(--navy); color:var(--white);}
.platform-cta h2{color:var(--white);}
.platform-cta .eyebrow.on-sand{color:var(--gold-soft);}
.platform-cta-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px;}
.platform-cta p{color:rgba(250,248,242,.75); margin-bottom:16px; max-width:46ch;}

/* GRATITUDE — about page, between "Китоб нима ҳақида" (sand) and
   "Ташкилотчилар" (.tint/sand-2); navy so it doesn't share a background
   with either neighbor, same dark-accent treatment as .platform-cta. */
.gratitude{background:var(--navy); color:var(--white);}
.gratitude .section-head h2{color:var(--white);}
.gratitude .eyebrow.on-sand{color:var(--gold-soft);}
.gratitude .prose p{color:rgba(250,248,242,.8);}
.feedback-links{display:flex; gap:14px; flex-wrap:wrap; margin-top:4px;}
.feedback-links a{
  display:inline-flex; align-items:center; gap:8px;
  border:1px solid rgba(250,248,242,.3); color:var(--white); text-decoration:none;
  padding:11px 20px; border-radius:4px; font-size:.86rem; font-weight:600;
  transition:border-color .2s ease, color .2s ease;
}
.feedback-links a:hover{border-color:var(--gold); color:var(--gold-soft);}

/* MEDIA CAROUSEL (seminar page) — native scroll-snap track; prev/next
   buttons reuse .leader-nav; touch swipe works natively via overflow-x */
.media-carousel{display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:14px;}
.carousel-viewport{
  overflow-x:auto; overflow-y:hidden; scroll-snap-type:x mandatory;
  scrollbar-width:none; -ms-overflow-style:none;
}
.carousel-viewport::-webkit-scrollbar{display:none;}
.carousel-track{display:flex; gap:16px;}
.carousel-item{flex:0 0 calc((100% - 32px)/3); scroll-snap-align:start;}
.carousel-photo{
  display:block; width:100%; padding:0; margin:0; border:0; background:none; cursor:zoom-in;
  aspect-ratio:4/3; border-radius:6px; overflow:hidden; box-shadow:0 6px 18px rgba(20,29,56,.15);
}
.carousel-photo img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease;}
.carousel-photo:hover img{transform:scale(1.04);}
@media (max-width:960px){ .carousel-item{flex-basis:calc((100% - 16px)/2);} }
@media (max-width:600px){ .carousel-item{flex-basis:100%;} }

/* PARTICIPANT QUOTE CARDS (seminar page) — compact grid; expands to fill
   the whole grid area on click/tap (same behavior on desktop and mobile),
   toggled via .is-expanded by JS. Hover no longer expands — only a subtle
   lift hints that the card is clickable. */
.quote-cards{
  position:relative; display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px; min-height:300px;
}
.quote-card-item{ cursor:pointer; }
.quote-card-compact{
  height:100%; background:var(--white); border:1px solid rgba(25,26,34,.12); border-radius:10px;
  padding:22px 18px; display:flex; flex-direction:column; align-items:center; text-align:center; gap:8px;
  cursor:pointer; transition:box-shadow .2s ease, border-color .2s ease;
}
.quote-card-item:hover .quote-card-compact,
.quote-card-item:focus-visible .quote-card-compact{
  box-shadow:0 10px 24px rgba(20,29,56,.12); border-color:rgba(201,162,39,.4);
}
.qc-photo, .qc-photo-lg{border-radius:50%; overflow:hidden; flex:none; background:var(--sand-2);}
.qc-photo{width:64px; height:64px;}
.qc-photo-lg{width:96px; height:96px; border:3px solid var(--sand);}
.qc-photo img, .qc-photo-lg img{width:100%; height:100%; object-fit:cover; display:block;}
.qc-photo-ph{width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:var(--teal);}
.qc-photo-ph svg{width:40%; height:40%; opacity:.5;}
.qc-name{font-family:'PT Serif',serif; font-weight:700; font-size:1rem; color:var(--ink);}
.qc-position{font-size:.78rem; color:var(--ink-soft);}

.quote-card-expanded{
  position:absolute; inset:0; z-index:5;
  background:var(--white); border-radius:14px; box-shadow:0 26px 60px rgba(20,29,56,.3);
  padding:40px 48px; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; gap:14px;
  opacity:0; visibility:hidden; transform:scale(.97);
  transition:opacity .3s ease, transform .3s ease, visibility .3s;
  pointer-events:none; cursor:auto;
}
.quote-card-item.is-expanded .quote-card-expanded{
  opacity:1; visibility:visible; transform:scale(1); pointer-events:auto;
}
.qc-close{
  position:absolute; top:14px; right:14px; width:34px; height:34px; padding:0;
  display:flex; align-items:center; justify-content:center;
  background:none; border:1px solid rgba(25,26,34,.15); border-radius:50%;
  color:var(--ink-soft); cursor:pointer; transition:background .2s ease, color .2s ease;
}
.qc-close:hover, .qc-close:focus-visible{ background:var(--sand-2); color:var(--ink); }
.qc-close svg{ width:16px; height:16px; }
.qc-quote{
  border:none; padding:0; margin:0; max-width:62ch;
  font-family:'PT Serif',serif; font-style:italic; color:var(--ink);
  font-size:clamp(1.05rem,2vw,1.3rem); line-height:1.5;
}
.qc-name-lg{font-family:'PT Serif',serif; font-weight:700; font-size:1.1rem; color:var(--ink); margin-top:4px;}
.qc-position-lg{font-size:.82rem; color:var(--teal); text-transform:uppercase; letter-spacing:.08em; font-weight:600;}
@media (max-width:640px){
  .quote-cards{min-height:260px;}
  .quote-card-expanded{padding:28px 22px;}
}

/* FINAL CTA (seminar page — back to book) */
.final-cta{
  background:var(--navy); color:var(--white); text-align:center; padding:64px 0;
}
.final-cta h2{font-size:clamp(1.5rem,2.6vw,2rem); margin-bottom:18px;}

footer{
  background:var(--ink); color:rgba(250,248,242,.6); padding:28px 0; font-size:.8rem;
  text-align:center; flex-shrink:0;
}
footer img{height:54px; width:auto; margin-bottom:12px; opacity:.9;}

/* ===== MULTI-PAGE COMPONENTS ===== */

/* back link (interior hero) */
.back-link{
  display:inline-block; margin-bottom:14px;
  color:rgba(250,248,242,.7); text-decoration:none;
  font-size:.82rem; font-weight:600; transition:color .2s ease;
}
.back-link:hover{color:var(--gold-soft);}

/* teaser "read more" link */
.more-link{
  display:inline-flex; align-items:center; gap:6px; margin-top:16px;
  color:var(--teal); text-decoration:none; font-weight:700; font-size:.88rem;
  transition:gap .2s ease, color .2s ease;
}
.more-link:hover{gap:10px; color:var(--gold);}
.themes .more-link, .platform-cta .more-link{color:var(--gold-soft);}
.themes .more-link:hover, .platform-cta .more-link:hover{color:var(--gold);}

/* content placeholder */
.placeholder-note{
  margin-top:8px; padding:22px 24px; border:1px dashed rgba(63,110,104,.5);
  border-radius:6px; background:rgba(63,110,104,.06);
  color:var(--ink-soft); font-size:.95rem; font-style:italic;
}

/* alternating section tint */
.section.tint{background:var(--sand-2);}

/* generic prose block */
.prose{max-width:72ch;}
.prose p{color:var(--ink-soft); font-size:1.02rem; margin-bottom:14px;}

/* directions overview grid */
.dir-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
.dir-card{
  display:flex; flex-direction:column; gap:12px; text-decoration:none;
  background:var(--white); border:1px solid rgba(25,26,34,.12); border-radius:8px;
  padding:26px 22px; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.dir-card:hover{transform:translateY(-3px); box-shadow:0 14px 30px rgba(20,29,56,.12); border-color:rgba(201,162,39,.5);}
.dir-card svg{width:30px; height:30px; stroke:var(--teal); flex-shrink:0;}
.dir-card-title{font-family:'PT Serif',serif; font-weight:700; font-size:1.12rem; color:var(--ink); line-height:1.25;}
.dir-card-more{margin-top:auto; color:var(--teal); font-weight:700; font-size:.82rem;}

/* agencies */
.agency-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
.agency-card{
  background:var(--white); border:1px solid rgba(25,26,34,.12); border-radius:8px;
  padding:24px 20px; min-height:150px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:14px; text-align:center;
}
.agency-logo{display:flex; align-items:center; justify-content:center; height:60px;}
.agency-logo img{max-height:60px; max-width:100%; width:auto; object-fit:contain; display:block;}
.agency-name{color:var(--ink); font-size:.92rem; font-weight:600; line-height:1.35;}

/* authors */
.author-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
.author-card{
  background:var(--white); border:1px solid rgba(25,26,34,.12); border-radius:8px;
  padding:22px 20px; display:flex; flex-direction:column; gap:6px;
}
.author-card .a-name{font-family:'PT Serif',serif; font-weight:700; font-size:1.06rem; color:var(--ink);}
.author-card .a-role{font-size:.86rem; color:var(--ink-soft);}
.author-card .a-country{font-size:.74rem; text-transform:uppercase; letter-spacing:.1em; color:var(--teal); font-weight:600;}
.author-card .a-contrib{font-size:.9rem; color:var(--ink-soft); margin-top:6px; border-top:1px solid rgba(25,26,34,.08); padding-top:10px;}
.author-card.is-placeholder{border-style:dashed; border-color:rgba(63,110,104,.5); background:rgba(63,110,104,.05);}

/* ===== REGION — LEADERS (interactive: flags + expanding block) ===== */
.leaders{margin-top:6px;}
.leader-flags{
  display:grid; grid-template-columns:repeat(5,1fr); gap:12px; margin-bottom:34px;
}
.leader-flag{
  display:flex; flex-direction:column; align-items:center; gap:9px;
  background:none; border:none; cursor:pointer; padding:6px; border-radius:6px;
  transition:transform .2s ease;
}
.leader-flag .leader-flag-img, .leader-flag .flag-ph{
  width:100%; aspect-ratio:3/2; object-fit:cover; border-radius:4px; display:block;
  border:1px solid rgba(25,26,34,.14); box-shadow:0 2px 8px rgba(20,29,56,.10);
  outline:2px solid transparent; outline-offset:2px;
  transition:box-shadow .2s ease, outline-color .2s ease;
}
.leader-flag .flag-ph{
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(120% 120% at 20% 0%, var(--navy-2), var(--navy));
  color:var(--gold-soft);
}
.leader-flag .flag-ph svg{width:18px; height:18px; max-width:40%; max-height:40%; flex:none; opacity:.85;}
.leader-flag-name{font-size:.78rem; font-weight:600; color:var(--ink-soft); transition:color .2s ease;}
.leader-flag:hover{transform:translateY(-2px);}
.leader-flag:hover .leader-flag-img, .leader-flag:hover .flag-ph{box-shadow:0 6px 16px rgba(20,29,56,.16);}
.leader-flag.is-active .leader-flag-img, .leader-flag.is-active .flag-ph{
  outline-color:var(--gold); box-shadow:0 8px 20px rgba(201,162,39,.30);
}
.leader-flag.is-active .leader-flag-name{color:var(--gold);}
.leader-flag:focus-visible{outline:none;}
.leader-flag:focus-visible .leader-flag-img, .leader-flag:focus-visible .flag-ph{outline-color:var(--gold-soft);}

/* align-items:start (not center): the nav arrows must sit at a fixed
   row position regardless of which leader's quote is showing — see the
   matching note on .leader-panel below for why centering was the actual
   cause of the photo/arrows jumping between leaders. */
.leader-stage{display:grid; grid-template-columns:auto 1fr auto; align-items:start; gap:14px;}
.leader-nav{
  display:inline-flex; align-items:center; justify-content:center;
  width:44px; height:44px; flex-shrink:0;
  background:var(--white); border:1px solid rgba(25,26,34,.14); border-radius:999px;
  color:var(--navy); cursor:pointer;
  transition:border-color .2s ease, background .2s ease, color .2s ease;
}
.leader-nav:hover{border-color:var(--gold); color:var(--gold); background:rgba(201,162,39,.06);}
.leader-nav svg{width:20px; height:20px;}
/* Nudge the leader-block arrows down from align-items:start's default
   (row top, level with the photo) to sit level with the small flag under
   the photo instead — .leader-nav is shared with other carousels, so this
   stays scoped to .leader-stage rather than changed on .leader-nav itself.
   margin-top = (distance from panel top to the flag's own vertical
   center) − (nav's own half-height): photo height (220×4/3=293.33px) +
   .leader-flag-divider's 20px top margin + half its 30px height (15px),
   minus half the 44px nav (22px) = 306.33px. Photo/flag positions are
   fixed (see .leader-panel), so this offset is the same for every
   leader — the arrows never move when switching between them. */
.leader-stage .leader-nav{margin-top:306.33px;}

.leader-panels{position:relative; min-width:0;}
.leader-panel{
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start; text-align:center;
  max-width:720px; margin:0 auto;
  /* justify-content:flex-start (not center) pins the photo/flag to the
     same fixed top position for every leader; the quote and name/position
     below them stay in normal flow and simply run shorter or longer —
     centering used to redistribute that same leftover space above the
     photo too, which is what made the photo (and, via .leader-stage's own
     align-items, the nav arrows) visibly jump between leaders with quotes
     of very different lengths.
     min-height is still sized to the longest quote across all five
     leaders and all three locales (uz/en/ru; currently the Turkmenistan
     uz quote, ~383 chars, also used as the ru fallback), measured at the
     narrowest width within each bracket below (worst case for wrapping),
     plus a small buffer — so the section's overall height stays constant
     across leaders regardless of alignment. */
  min-height:850px;
}
.leader-panel[hidden]{display:none;}
.leader-photo{
  width:220px; max-width:100%; aspect-ratio:3/4; flex:none;
  border-radius:12px; overflow:hidden;
  border:3px solid var(--white); box-shadow:0 14px 34px rgba(20,29,56,.20);
  background:var(--sand-2);
}
.leader-photo img{width:100%; height:100%; object-fit:cover; object-position:top center; display:block;}
.leader-photo-ph{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  color:var(--teal); background:linear-gradient(135deg,var(--sand-2),var(--sand));
}
.leader-photo-ph svg{width:56px; height:56px; max-width:40%; max-height:40%; flex:none; opacity:.5;}

.leader-flag-divider{margin:20px 0 2px; line-height:0;}
.leader-flag-divider img, .leader-flag-divider .flag-ph-sm{
  width:44px; height:30px; flex:none; object-fit:cover; border-radius:3px; display:inline-flex;
  border:1px solid rgba(25,26,34,.14); box-shadow:0 2px 8px rgba(20,29,56,.14);
}
.leader-flag-divider .flag-ph-sm{
  align-items:center; justify-content:center;
  background:var(--navy); color:var(--gold-soft);
}
.leader-flag-divider .flag-ph-sm svg{width:14px; height:14px; max-width:60%; max-height:60%; flex:none;}

.leader-quote{
  border:none; padding:0; margin:16px 0 0; font-style:italic; align-self:center;
  font-family:'PT Serif',serif; font-size:clamp(1.25rem,2.4vw,1.7rem);
  line-height:1.45; color:var(--ink);
}
.leader-quote::before{
  content:"\201C"; display:block; font-family:'PT Serif',serif;
  font-size:3rem; line-height:.5; color:var(--gold); margin-bottom:10px;
}
.leader-meta{
  margin-top:22px; padding-top:18px; position:relative;
  display:flex; flex-direction:column; gap:3px;
}
.leader-meta::before{
  content:""; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:56px; height:2px; background:var(--gold);
}
.leader-name{font-family:'PT Serif',serif; font-weight:700; font-size:1.14rem; color:var(--ink);}
.leader-position{font-size:.9rem; color:var(--ink-soft);}

/* ===== NEWS CARDS (carousel) — shared by /seminar-2025/ "ОАВ нигоҳида"
   (#press) and /region/ "Интеграция бўйича янгиликлар" (#integration).
   Both are carousels built on .media-carousel/.carousel-item (see MEDIA
   CAROUSEL below), so these rules are unscoped rather than duplicated
   per page — same markup, same behavior on both. ===== */
.news-card{
  display:flex; flex-direction:column; text-decoration:none; color:inherit;
  background:var(--white); border:1px solid rgba(25,26,34,.12); border-radius:8px;
  overflow:hidden; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height:100%; /* fills the row height .carousel-track's flex-stretch already
                  gives .carousel-item, so every card in the row lines up */
}
a.news-card:hover{transform:translateY(-3px); box-shadow:0 16px 34px rgba(20,29,56,.14); border-color:rgba(201,162,39,.5);}
.news-cover{aspect-ratio:16/9; overflow:hidden; background:var(--sand-2);}
.news-cover img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease;}
a.news-card:hover .news-cover img{transform:scale(1.04);}
.news-cover-ph{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--navy),var(--navy-2)); color:rgba(227,205,133,.45);
}
.news-cover-ph svg{width:46px; height:46px; max-width:40%; max-height:40%; flex:none;}
.news-body{padding:18px 18px 20px; display:flex; flex-direction:column; gap:8px; flex:1;}
/* Fixed to exactly 3 lines (height, not min-height, so it never shrinks
   or grows with the text) so source/date/description start at the same
   level in every card of a row, on any title length/language. A shorter
   title just leaves blank space in the same reserved area instead of
   pulling the row's other cards' content up. height = font-size(1.1rem)
   × line-height(1.3) × 3 lines = 4.29rem. Overflowing text is clamped to
   those same 3 lines with an ellipsis — a 4th line is never possible.
   Font-size stays constant across every card (no per-card auto-fit). */
.news-title{
  font-family:'PT Serif',serif; font-weight:700; font-size:1.1rem; line-height:1.3; color:var(--ink); transition:color .2s ease;
  height:4.29rem;
  display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; overflow:hidden;
}
a.news-card:hover .news-title{color:var(--gold);}
/* compact metadata line (source + date) right under the title, styled
   smaller/muted so it reads as metadata rather than body text */
.news-meta{display:flex; align-items:center; gap:6px; flex-wrap:wrap;}
.news-source{font-size:.76rem; color:var(--ink-soft); font-weight:600;}
.news-date{font-size:.74rem; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-soft); font-weight:600;}
.news-meta-sep{color:var(--ink-soft); opacity:.5; font-size:.76rem;}
/* description is last — clamped to 10 lines (any language, any length)
   so one long entry can't inflate a card past the rest of the row; any
   leftover space then falls below it, at the bottom of the card */
.news-desc{
  font-size:.9rem; color:var(--ink-soft); line-height:1.5;
  display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:10; overflow:hidden;
}

/* ===== DIRECTION PAGE ===== */

/* key stats strip */
.stats-section{padding-top:0;}
.stats-row{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:1px; background:rgba(25,26,34,.10);
  border:1px solid rgba(25,26,34,.10); border-radius:8px; overflow:hidden;
}
.stat-item{
  background:var(--white); padding:28px 20px;
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:6px;
}
/* Fixed-height 2-line box so cards align; height and .stat-value font-size
   are set by fitStatValues() in main.js (measured from the live layout, so
   it stays correct across languages/breakpoints). The CSS values below are
   just the pre-JS fallback. */
.stat-value-box{
  width:100%; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.stat-value{
  display:block; width:100%;
  font-family:'PT Serif',serif; font-weight:700; font-size:clamp(1.8rem,4vw,2.6rem); color:var(--gold);
  line-height:1.15; text-align:center;
  overflow-wrap:break-word; word-break:break-word; hyphens:auto;
}
.stat-label{font-size:.82rem; color:var(--ink-soft); max-width:24ch;}
@media (max-width:700px){ .stats-row{grid-template-columns:repeat(2,1fr);} }
@media (max-width:420px){ .stats-row{grid-template-columns:1fr;} }

/* intro */
.direction-intro{margin-top:14px;}

/* charts + lightbox */
.chart-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px;}
.chart-card{
  background:var(--white); border:1px solid rgba(25,26,34,.12); border-radius:8px;
  overflow:hidden; display:flex; flex-direction:column;
}
.chart-trigger{
  position:relative; display:block; width:100%; padding:0; margin:0; border:0;
  aspect-ratio:4/3; background:var(--sand-2); cursor:zoom-in; overflow:hidden;
}
.chart-trigger img{width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease;}
.chart-trigger:hover img{transform:scale(1.04);}
.chart-cover-ph{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--navy),var(--navy-2)); color:rgba(227,205,133,.45);
}
.chart-cover-ph svg{width:40px; height:40px; max-width:40%; max-height:40%; flex:none;}
.chart-zoom{
  position:absolute; right:10px; bottom:10px; width:32px; height:32px; flex:none;
  display:flex; align-items:center; justify-content:center; border-radius:50%;
  background:rgba(20,29,56,.72); color:var(--white); backdrop-filter:blur(2px);
  transition:background .2s ease;
}
.chart-trigger:hover .chart-zoom{background:var(--gold); color:var(--navy);}
.chart-card figcaption{padding:14px 16px 18px; display:flex; flex-direction:column; gap:6px;}
/* Grid view only: clamp to 3 lines so chart cards line up; the lightbox
   caption (.lightbox-caption) is a separate, unclamped element that always
   gets the full text via data-caption. */
.chart-caption{
  font-weight:600; font-size:.92rem; color:var(--ink); line-height:1.4;
  display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;
  overflow:hidden; min-height:calc(1.4em * 3);
}
.chart-note{font-size:.86rem; color:var(--ink-soft); line-height:1.5;}

.lightbox{
  position:fixed; inset:0; z-index:200;
  background:rgba(10,14,28,.92);
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:56px 16px;
}
.lightbox[hidden]{display:none;}
.lightbox-body{max-width:min(920px,90vw); max-height:100%; display:flex; flex-direction:column; align-items:center; gap:14px; min-width:0;}
.lightbox-body img{max-width:100%; max-height:70vh; object-fit:contain; display:block; border-radius:4px; box-shadow:0 20px 50px rgba(0,0,0,.4);}
.lightbox-caption{text-align:center; color:rgba(250,248,242,.92); max-width:70ch;}
.lightbox-caption span[data-lightbox-caption]{display:block; font-weight:600; font-size:.98rem;}
.lightbox-note{display:block; margin-top:4px; font-size:.86rem; color:rgba(250,248,242,.68);}
.lightbox-note:empty{display:none;}
.lightbox-close{
  position:absolute; top:16px; right:16px; width:40px; height:40px; flex:none;
  display:flex; align-items:center; justify-content:center; border-radius:50%;
  background:rgba(250,248,242,.1); border:1px solid rgba(250,248,242,.25); color:var(--white);
  cursor:pointer; transition:background .2s ease, border-color .2s ease;
}
.lightbox-close:hover{background:rgba(250,248,242,.2); border-color:var(--gold);}
.lightbox-close svg{width:20px; height:20px;}
.lightbox-nav{
  flex:none; width:44px; height:44px;
  display:flex; align-items:center; justify-content:center; border-radius:50%;
  background:rgba(250,248,242,.1); border:1px solid rgba(250,248,242,.25); color:var(--white);
  cursor:pointer; transition:background .2s ease, border-color .2s ease;
}
.lightbox-nav:hover{background:rgba(250,248,242,.2); border-color:var(--gold);}
.lightbox-nav svg{width:20px; height:20px;}
@media (max-width:640px){
  .lightbox{padding:64px 8px 24px; gap:4px;}
  .lightbox-nav{width:36px; height:36px;}
  .lightbox-close{width:34px; height:34px; top:10px; right:10px;}
}

/* scenarios */
.scenario-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:20px;}
.scenario-card{
  background:var(--white); border:1px solid rgba(25,26,34,.12); border-top:3px solid var(--gold);
  border-radius:0 0 8px 8px; padding:24px 22px; display:flex; flex-direction:column; gap:10px;
}
.scenario-card:nth-child(4n+2){border-top-color:var(--teal);}
.scenario-card:nth-child(4n+3){border-top-color:var(--navy-2);}
.scenario-card:nth-child(4n+4){border-top-color:#8a7130;}
.scenario-title{display:block; font-family:'PT Serif',serif; font-weight:700; font-size:1.1rem; color:var(--ink); margin-bottom:8px;}
.scenario-desc{color:var(--ink-soft); font-size:.94rem; line-height:1.55;}
/* Collapsed to 6 lines (measured off .scenario-desc's line-height) by
   default; description AND outcome both live inside this wrapper, so both
   are hidden together. max-height (in px) is set by initScenarioToggles()
   in main.js so the animation has a real value to transition to/from
   instead of 'none'. */
.scenario-collapse{overflow:hidden; transition:max-height .35s ease;}
.scenario-toggle{
  align-self:center; flex:none; width:40px; height:30px;
  display:flex; align-items:center; justify-content:center;
  background:var(--sand-2); border:1px solid rgba(25,26,34,.15); border-radius:6px;
  color:var(--ink-soft); cursor:pointer; padding:0;
  transition:background .2s ease, border-color .2s ease, color .2s ease;
}
.scenario-toggle:hover{background:var(--gold-soft); border-color:var(--gold); color:var(--ink);}
.scenario-toggle:focus-visible{outline:2px solid var(--gold); outline-offset:2px;}
.scenario-toggle[hidden]{display:none;}
.scenario-toggle svg{width:16px; height:16px; transition:transform .25s ease;}
.scenario-toggle[aria-expanded="true"] svg{transform:rotate(180deg);}
.scenario-outcome{
  display:block; margin-top:10px; padding-top:10px; border-top:1px solid rgba(25,26,34,.08);
  font-size:.82rem; font-weight:700; color:var(--teal);
}

/* recommendations */
.recommend-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px;}
.recommend-item{
  display:flex; align-items:flex-start; gap:16px;
  background:var(--white); border:1px solid rgba(25,26,34,.12); border-radius:8px;
  padding:16px 20px;
}
.recommend-num{
  flex:none; width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--gold); color:var(--navy);
  font-family:'PT Serif',serif; font-weight:700; font-size:.98rem;
}
.recommend-text{padding-top:5px; color:var(--ink); font-size:.98rem; line-height:1.55;}

/* prev/next direction pager */
.direction-pager{background:var(--navy); padding:0;}
.direction-pager-inner{
  display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
  padding:26px 28px;
}
.pager-link{
  display:inline-flex; align-items:center; gap:12px; text-decoration:none; color:var(--white);
  max-width:46%; transition:opacity .2s ease;
}
.pager-link:hover{opacity:.8;}
.pager-link.next{margin-left:auto; text-align:right; justify-content:flex-end;}
.pager-arrow{font-size:1.3rem; color:var(--gold); flex:none;}
.pager-text{display:flex; flex-direction:column; gap:3px; min-width:0;}
.pager-label{font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:rgba(250,248,242,.55); font-weight:600;}
.pager-title{font-family:'PT Serif',serif; font-weight:700; font-size:1rem; color:var(--white); line-height:1.3;}
@media (max-width:640px){
  .pager-link{max-width:100%;}
  .direction-pager-inner{flex-direction:column;}
  .pager-link.next{margin-left:0;}
}

/* feedback form embed — neutral card (bg/radius/shadow/padding) around the
   Google Form iframe, so the plain Google UI doesn't clash with the site */
.form-embed{
  background:var(--white); border:1px solid rgba(25,26,34,.08); border-radius:14px;
  box-shadow:0 20px 48px rgba(20,29,56,.1); padding:20px;
}
.form-embed iframe{
  width:100%; display:block; border:0; border-radius:6px;
  height:850px; min-height:800px;
}
.form-placeholder{
  padding:48px 24px; text-align:center; color:var(--ink-soft); font-style:italic;
}
.form-note{
  margin-top:16px; max-width:60ch; color:var(--ink-soft); font-size:.9rem; font-style:italic;
}

/* feedback page: intro prose (between hero and form) + gentle full-page wash */
.feedback-body-bg{
  background:radial-gradient(120% 60% at 50% 0%, rgba(201,162,39,.1) 0%, rgba(201,162,39,0) 62%), var(--sand);
}
.feedback-intro{max-width:64ch; margin:0 auto; text-align:center;}
.feedback-intro p{color:var(--ink-soft); font-size:1.02rem; line-height:1.7; margin-bottom:16px;}
.feedback-intro p:first-child{font-family:'PT Serif',serif; font-size:1.2rem; color:var(--ink);}

@media (max-width:860px){
  .about-body, .youth-body, .platform-cta-grid{grid-template-columns:1fr;}
  .theme-grid{grid-template-columns:repeat(2,1fr);}
  .country-grid{grid-template-columns:repeat(2,1fr);}
  .dir-grid, .agency-grid, .author-grid{grid-template-columns:1fr;}
}

@media (max-width:640px){
  .form-embed{padding:12px; border-radius:10px;}
  .form-embed iframe{height:1400px;}
}

@media (min-width:861px) and (max-width:1040px){
  .dir-grid, .agency-grid, .author-grid{grid-template-columns:repeat(2,1fr);}
}

/* region leaders responsive — keep all 5 flags visible, shrink gracefully */
@media (max-width:560px){
  .leader-flags{gap:6px; margin-bottom:26px;}
  .leader-flag{padding:3px; gap:5px;}
  .leader-flag-name{display:none;}
  .leader-stage{gap:6px;}
  .leader-nav{width:38px; height:38px;}
  .leader-nav svg{width:17px; height:17px;}
  .leader-photo{width:150px;}
  /* same idea as the desktop rule above, recomputed for the smaller
     photo/nav at this width: (150×4/3=200) + 20 + 15 − 19 (half of 38px) = 216px */
  .leader-stage .leader-nav{margin-top:216px;}
  /* narrower column wraps the longest quote onto many more lines */
  .leader-panel{min-height:1220px;}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{transition:none !important;}
  .scroll-hint svg{animation:none !important;}
}

[data-reveal]{opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease;}
[data-reveal].in{opacity:1; transform:none;}
