/* ===========================================================
   Tagliate Senza Frontiere ODV — style.css
   Moodboard: "Il gioco è la lingua comune"
   Pop ludico contemporaneo · verde brand + accenti caldi su crema
   =========================================================== */

:root {
  /* --- Colore (OKLCH con fallback hex per cache/anti-FOUC) --- */
  --cream:       oklch(0.976 0.012 95);    /* #FBF7EE */
  --cream-2:     oklch(0.955 0.018 92);    /* #F4ECDB */
  --cream-3:     oklch(0.93 0.022 90);     /* #ECE0C9 */
  --ink:         oklch(0.27 0.025 152);    /* #1E2A22 */
  --ink-soft:    oklch(0.44 0.022 150);    /* #4B584F */
  --green:       oklch(0.50 0.125 150);    /* #15722E brand */
  --green-deep:  oklch(0.39 0.095 152);    /* #11541F */
  --green-bright:oklch(0.64 0.16 150);     /* #2E9E48 */
  --yellow:      oklch(0.84 0.15 88);      /* #F6BE3A */
  --yellow-soft: oklch(0.92 0.07 90);      /* #FBE6AE */
  --coral:       oklch(0.70 0.165 38);     /* #F2724E */
  --coral-soft:  oklch(0.88 0.06 40);      /* #F7CBB8 */
  --mint:        oklch(0.86 0.06 165);     /* #BFE6D0 */
  --border:      oklch(0.90 0.022 92);     /* #E5DCC9 */
  --surface:     oklch(0.995 0.006 95);    /* #FFFDF8 */

  --shadow-sm: 0 2px 6px rgba(30, 42, 34, .06);
  --shadow-md: 0 14px 32px -18px rgba(17, 84, 31, .35);
  --shadow-lg: 0 30px 60px -28px rgba(17, 84, 31, .45);

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, sans-serif;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  --wrap: 1140px;
  --pad: clamp(20px, 5vw, 40px);
  --header-h: 72px;
}

/* --------------------------- reset --------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }
ul { list-style: none; padding: 0; }
em { font-style: normal; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--green); color: #fff; padding: 10px 16px; border-radius: var(--r-sm);
  font-family: var(--font-display); font-weight: 600;
}
.skip-link:focus { left: 12px; }

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

/* --------------------------- header --------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in oklab, var(--cream) 88%, transparent);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
/* nota: niente backdrop-filter qui (evita il containing-block trap del drawer fixed) */
.site-header.scrolled {
  background: color-mix(in oklab, var(--cream) 97%, #fff);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--surface); padding: 3px; box-shadow: var(--shadow-sm);
}
.brand-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem;
  line-height: .98; color: var(--green-deep); letter-spacing: -0.02em;
}
.brand-name span { color: var(--green-bright); font-weight: 700; }

.nav-desktop { display: none; }
.nav-desktop a {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--ink); padding: 8px 4px; position: relative; transition: color .2s;
}
.nav-desktop a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 4px; right: 4px; bottom: 2px; height: 2px;
  background: var(--green-bright); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav-desktop a:not(.nav-cta):hover { color: var(--green); }
.nav-desktop a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-desktop .nav-cta {
  background: var(--green); color: #fff; padding: 10px 20px; border-radius: var(--r-pill);
  transition: background .2s, transform .2s;
}
.nav-desktop .nav-cta:hover { background: var(--green-deep); transform: translateY(-1px); }

/* hamburger */
.hamburger {
  width: 48px; height: 48px; display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.hamburger span {
  width: 22px; height: 2.5px; background: var(--green-deep); border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------- mobile nav overlay --------------------------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 95;
  background: color-mix(in oklab, var(--green-deep) 97%, #000);
  padding: calc(var(--header-h) + 30px) var(--pad) 40px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav[hidden] { display: block; } /* gestito via classi, non display:none, per la transizione */
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--cream);
  padding: 14px 6px; border-bottom: 1px solid color-mix(in oklab, var(--cream) 16%, transparent);
  display: flex; align-items: center; min-height: 44px;
  transform: translateX(-16px); opacity: 0;
}
.mobile-nav.is-open a { transform: none; opacity: 1; transition: transform .4s ease, opacity .4s ease; }
.mobile-nav.is-open a:nth-child(1){transition-delay:.06s}
.mobile-nav.is-open a:nth-child(2){transition-delay:.10s}
.mobile-nav.is-open a:nth-child(3){transition-delay:.14s}
.mobile-nav.is-open a:nth-child(4){transition-delay:.18s}
.mobile-nav.is-open a:nth-child(5){transition-delay:.22s}
.mobile-nav.is-open a:nth-child(6){transition-delay:.26s}
.mobile-nav a:active { color: var(--yellow); }

/* --------------------------- buttons --------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  padding: 15px 28px; border-radius: var(--r-pill); min-height: 52px;
  cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--green-deep); border-color: var(--green); }
.btn-ghost:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* --------------------------- section labels --------------------------- */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 7px 15px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.tag-green  { background: color-mix(in oklab, var(--green-bright) 18%, var(--cream)); color: var(--green-deep); }
.tag-coral  { background: color-mix(in oklab, var(--coral) 26%, var(--cream)); color: oklch(0.36 0.115 34); }
.tag-yellow { background: color-mix(in oklab, var(--yellow) 44%, var(--cream)); color: oklch(0.34 0.065 70); }
.tag-cream  { background: color-mix(in oklab, var(--cream) 70%, #fff); color: var(--green-deep); border: 1px solid var(--border); }

.section-title { font-size: clamp(1.9rem, 5.4vw, 3rem); color: var(--ink); }
.section-lead { font-size: 1.12rem; color: var(--ink-soft); margin-top: 12px; max-width: 56ch; }

.dot-live {
  width: 9px; height: 9px; border-radius: 50%; background: var(--green-bright);
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--green-bright) 60%, transparent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--green-bright) 55%, transparent); }
  70% { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* --------------------------- hero --------------------------- */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 11vw, 104px) 0 clamp(56px, 10vw, 96px);
  background:
    radial-gradient(circle at 1px 1px, color-mix(in oklab, var(--green) 14%, transparent) 1px, transparent 0) 0 0 / 26px 26px,
    linear-gradient(180deg, var(--cream-2), var(--cream));
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  color: var(--green-deep); background: var(--surface);
  border: 1px solid var(--border); padding: 8px 16px; border-radius: var(--r-pill);
  margin-bottom: 22px; box-shadow: var(--shadow-sm);
}
.kicker-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.hero-title {
  font-size: clamp(2.7rem, 11vw, 5.6rem); font-weight: 800; color: var(--ink);
  letter-spacing: -0.025em;
}
.hero-title .hl { color: var(--green); position: relative; }
.hero-title .hl::after {
  content: ""; position: absolute; left: 0; right: -2px; bottom: .08em; height: .14em;
  background: var(--yellow); border-radius: var(--r-pill); z-index: -1;
}
.hero-sub {
  font-size: clamp(1.08rem, 2.6vw, 1.32rem); color: var(--ink-soft);
  margin-top: 24px; max-width: 60ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* token decor */
.hero-deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.tok { position: absolute; display: block; will-change: transform; }
.tok-circle { border-radius: 50%; }
.tok-round { border-radius: 30%; }
.c-yellow { background: var(--yellow); }
.c-coral { background: var(--coral); }
.c-green { background: var(--green-bright); }
.hero-deco .tok-circle.c-yellow { width: 120px; height: 120px; top: 8%; right: 6%; opacity: .9; animation: float1 9s ease-in-out infinite; }
.hero-deco .tok-round.c-coral { width: 76px; height: 76px; bottom: 14%; right: 16%; opacity: .92; animation: float2 11s ease-in-out infinite; }
.hero-deco .tok-circle.c-green { width: 54px; height: 54px; top: 22%; right: 30%; opacity: .85; animation: float1 8s ease-in-out infinite .6s; }
.hero-deco .tok-circle.c-green.sm { width: 26px; height: 26px; bottom: 26%; right: 4%; animation: float2 7s ease-in-out infinite .3s; }
.tok-pawn { color: var(--green); width: 86px; bottom: 6%; right: 30%; opacity: .9; animation: float2 10s ease-in-out infinite; }
.tok-pawn svg { width: 100%; height: auto; }
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-22px) rotate(6deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(18px) rotate(-7deg)} }

/* --------------------------- stats --------------------------- */
.stats { background: var(--green-deep); color: var(--cream); padding: clamp(34px,6vw,52px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 8vw, 3.2rem);
  line-height: 1; color: var(--yellow);
}
.stat-lab { font-size: .98rem; color: color-mix(in oklab, var(--cream) 82%, transparent); }

/* --------------------------- chi siamo --------------------------- */
.chi { padding: clamp(56px, 9vw, 100px) 0; }
.chi-inner { display: grid; gap: 40px; }
.chi-text p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 16px; }
.chi-text .section-title { margin-top: 6px; }
.value-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.value-chips li {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  background: var(--surface); border: 1px solid var(--border); color: var(--green-deep);
  padding: 9px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
}
.chi-card {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: var(--r-xl); padding: 40px 30px; text-align: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.chi-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 1px 1px, color-mix(in oklab, #fff 14%, transparent) 1px, transparent 0) 0 0 / 22px 22px;
  opacity: .5;
}
.logo-stage {
  position: relative; z-index: 1; width: 190px; height: 190px; margin: 0 auto;
  background: var(--surface); border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.logo-stage img { width: 76%; height: auto; }
.chi-card-note {
  position: relative; z-index: 1; margin-top: 26px; color: var(--cream);
  font-family: var(--font-display); font-weight: 600; font-size: 1.25rem; line-height: 1.3;
}

/* --------------------------- projects --------------------------- */
.projects { padding: clamp(56px, 9vw, 100px) 0; background: var(--cream-2); }
.projects-head { max-width: 60ch; margin-bottom: 40px; }
.project-grid { display: grid; gap: 22px; }
.pcard {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px 26px 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.pcard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--accent, var(--green-bright));
}
.pcard-festival { --accent: var(--coral); }
.pcard-toplay   { --accent: var(--green-bright); }
.pcard-erasmus  { --accent: var(--yellow); }
.pcard-eventi   { --accent: var(--green-deep); }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.pcard-icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: color-mix(in oklab, var(--accent) 16%, var(--surface)); color: var(--accent);
  margin-bottom: 18px;
}
.pcard-icon svg { width: 28px; height: 28px; }
.pcard h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.pcard p { color: var(--ink-soft); font-size: 1.02rem; }
.pcard-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  min-height: 44px; padding: 6px 2px;
  font-family: var(--font-display); font-weight: 700; color: var(--green-deep);
}
.pcard-link::after { content: "→"; transition: transform .2s ease; }
.pcard:hover .pcard-link::after { transform: translateX(4px); }
.pcard-badge {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: .76rem;
  background: var(--green); color: #fff; padding: 6px 12px; border-radius: var(--r-pill);
}

/* --------------------------- feature sections --------------------------- */
.feature { padding: clamp(56px, 9vw, 100px) 0; }
.feature-toplay { background: var(--cream-2); }
.feature-inner { display: grid; gap: 36px; align-items: center; }
.feature-media { position: relative; }
.feature-media img {
  width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg);
  object-fit: cover; aspect-ratio: 4 / 3;
}
.feature-toplay .feature-media img { aspect-ratio: 4 / 4.2; }
.feature-media-tok {
  position: absolute; width: 64px; height: 64px; border-radius: 30%;
  background: var(--yellow); bottom: -18px; left: -14px; z-index: -1;
  box-shadow: var(--shadow-md);
}
.feature-media-tok.tok-coral { background: var(--coral); border-radius: 50%; }
.feature-body .section-title { margin: 6px 0 16px; }
.feature-body p { color: var(--ink-soft); font-size: 1.1rem; }
.feature-list {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 6px;
}
.feature-list li {
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--green-deep);
  background: color-mix(in oklab, var(--green-bright) 13%, var(--surface));
  border-radius: var(--r-pill); padding: 9px 16px;
}
.feature-note { margin-top: 18px; font-weight: 500; color: var(--ink); }

/* --------------------------- erasmus --------------------------- */
.erasmus {
  padding: clamp(56px, 9vw, 96px) 0; color: var(--cream);
  background:
    radial-gradient(circle at 1px 1px, color-mix(in oklab, #fff 10%, transparent) 1px, transparent 0) 0 0 / 24px 24px,
    linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%);
}
.erasmus-inner { max-width: 760px; }
.erasmus .section-title { color: var(--cream); }
.erasmus p { color: color-mix(in oklab, var(--cream) 86%, transparent); font-size: 1.18rem; margin-top: 8px; }
.erasmus .tag-cream { background: color-mix(in oklab, #fff 14%, transparent); color: var(--cream); border: 1px solid color-mix(in oklab,#fff 22%, transparent); }

/* --------------------------- values --------------------------- */
.values { padding: clamp(56px, 9vw, 100px) 0; }
.values-inner .section-title { max-width: 18ch; }
.values-grid { display: grid; gap: 18px; margin-top: 36px; }
.vcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.vcard:hover { transform: translateY(-4px); }
.vcard h3 { font-size: 1.3rem; color: var(--green); margin-bottom: 8px; }
.vcard p { color: var(--ink-soft); }

/* --------------------------- contact --------------------------- */
.contact { padding: clamp(56px, 9vw, 100px) 0; background: var(--cream-2); }
.contact-head { max-width: 56ch; margin-bottom: 38px; }
.contact-cards { display: grid; gap: 18px; }
.ccard {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, border-color .2s;
}
.ccard:hover { transform: translateY(-4px); border-color: var(--green-bright); }
.ccard-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .05em; color: var(--green);
  background: color-mix(in oklab, var(--green-bright) 16%, var(--surface));
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.ccard-email {
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--ink);
  word-break: break-word; margin-bottom: 8px;
}
.ccard-desc { color: var(--ink-soft); font-size: .98rem; }
.contact-foot {
  margin-top: 34px; display: flex; flex-direction: column; gap: 18px;
  padding-top: 28px; border-top: 1px solid var(--border);
}
.contact-place { font-size: 1.1rem; color: var(--ink); }
.contact-social { display: flex; align-items: center; gap: 12px; }
.social-icon {
  width: 44px; height: 44px; display: grid; place-items: center; flex: none;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; color: var(--green);
}
.social-icon svg { width: 22px; height: 22px; }
.social-text { color: var(--ink-soft); font-weight: 500; }

/* --------------------------- footer --------------------------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 44px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 11px; background: var(--surface); padding: 3px; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.footer-place { color: color-mix(in oklab, var(--cream) 64%, transparent); font-size: .94rem; }
.footer-meta p { color: color-mix(in oklab, var(--cream) 70%, transparent); font-size: .92rem; }
.footer-credit { margin-top: 6px; }
.footer-credit a { color: var(--yellow); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.footer-credit a:hover { color: #fff; }

/* --------------------------- reveal anim --------------------------- */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.is-visible { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.hero .reveal[data-r="1"].is-visible { transition-delay: .05s; }
.hero .reveal[data-r="2"].is-visible { transition-delay: .15s; }
.hero .reveal[data-r="3"].is-visible { transition-delay: .28s; }
.hero .reveal[data-r="4"].is-visible { transition-delay: .40s; }

/* =========================================================
   Breakpoints
   ========================================================= */
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
  .contact-foot { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 768px) {
  :root { --header-h: 80px; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
  .nav-desktop { display: flex; align-items: center; gap: 26px; }

  .chi-inner { grid-template-columns: 1.25fr .9fr; align-items: center; gap: 56px; }
  .feature-inner { grid-template-columns: 1fr 1fr; gap: 56px; }
  .feature-inner.reverse .feature-media { order: 2; }
  .feature-media-tok { width: 86px; height: 86px; bottom: -24px; left: -24px; }
}

@media (min-width: 1024px) {
  .project-grid { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-sub { font-size: 1.32rem; }
}

/* =========================================================
   Reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .pcard:hover, .vcard:hover, .ccard:hover { transform: none; }
}
