/* ============================================================
   JOKA GROOVE – EPK Landing Page  |  style.css
   Paleta: Verde #2dbe6c / Laranja #ff6b00 / Amarelo #ffd600
           Rosa #ff3cac / Roxo #784ba0 / Azul ciano #00d4ff
============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:    #2dbe6c;
  --green-d:  #1a9e55;
  --orange:   #ff6b00;
  --yellow:   #ffd600;
  --pink:     #ff3cac;
  --purple:   #784ba0;
  --cyan:     #00d4ff;
  --gold:     #f5c518;
  --white:    #ffffff;
  --dark:     #0d0d0d;
  --card-bg:  rgba(255,255,255,0.07);
  --radius:   18px;
  --shadow:   0 8px 40px rgba(0,0,0,0.35);
  --font-head:'Bebas Neue', cursive;
  --font-body:'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #0d1a0f;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

.container {
  width: min(1200px, 95%);
  margin: 0 auto;
}

/* ---- CANVAS PARTÍCULAS ---- */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 120% 100% at 50% 0%,
    #1a5c2e 0%,
    #0d3318 40%,
    #0a1f0d 100%);
  overflow: hidden;
  padding: 80px 20px 60px;
  z-index: 1;
}

/* Splash decorativos nos cantos */
.splash {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.splash-tl {
  top: -40px; left: -40px;
  width: 420px; height: 420px;
  background: url('https://www.genspark.ai/api/files/s/5R0PgIEd') top left / cover no-repeat;
  filter: saturate(1.4) brightness(1.1);
  transform: scaleX(-1);
}
.splash-br {
  bottom: -40px; right: -40px;
  width: 420px; height: 420px;
  background: url('https://www.genspark.ai/api/files/s/5R0PgIEd') bottom right / cover no-repeat;
  filter: saturate(1.4) hue-rotate(30deg);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 960px;
  width: 100%;
}

/* ---- FOTO CÍRCULO ---- */
.hero-photo-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  animation: spin-ring 10s linear infinite;
}
.ring-outer {
  border: 3px dashed var(--gold);
  inset: -14px;
  animation-duration: 14s;
  animation-direction: reverse;
}
.ring-inner {
  border: 4px solid transparent;
  background: conic-gradient(
    var(--orange), var(--yellow), var(--green),
    var(--cyan), var(--pink), var(--purple), var(--orange)
  ) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  animation-duration: 6s;
}

@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

.photo-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--gold);
  box-shadow:
    0 0 0 6px rgba(245,197,24,0.25),
    0 0 60px rgba(245,197,24,0.4),
    0 20px 60px rgba(0,0,0,0.7);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s;
}
.hero-photo:hover { transform: scale(1.06); }

.photo-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: #1a0a00;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(245,197,24,.5);
}

/* ---- HERO TEXT ---- */
.hero-text {
  text-align: center;
}
.hero-subtitle {
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hero-name {
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: .9;
  letter-spacing: .04em;
  text-shadow: 0 6px 40px rgba(0,0,0,.8);
  margin-bottom: 14px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 40%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--cyan) 60%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-tagline {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 32px;
}
.hero-tagline em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 700;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  border: none;
  text-decoration: none;
}
.btn:hover { transform: translateY(-3px); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37,211,102,.4);
}
.btn-whatsapp:hover { box-shadow: 0 10px 40px rgba(37,211,102,.6); }

.btn-site {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #1a0a00;
  box-shadow: 0 6px 30px rgba(255,107,0,.35);
}
.btn-site:hover { box-shadow: 0 10px 40px rgba(255,107,0,.55); }

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
  flex-direction: row;
}
.btn-lg span { display: flex; flex-direction: column; }
.btn-lg strong { font-size: 1rem; }
.btn-lg small { font-size: .72rem; opacity: .85; font-weight: 400; }
.btn-lg i { font-size: 1.6rem; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Pulse animation */
@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 6px 50px rgba(37,211,102,.8), 0 0 80px rgba(37,211,102,.3); }
}
.pulse-btn { animation: pulse-shadow 2s ease-in-out infinite; }

/* ---- SCROLL DOWN ---- */
.scroll-down {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}
.scroll-down span {
  display: block;
  width: 10px; height: 10px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
  animation: chevron 1.4s ease infinite;
}
.scroll-down span:nth-child(2) { animation-delay: .2s; opacity: .7; }
.scroll-down span:nth-child(3) { animation-delay: .4s; opacity: .4; }
@keyframes chevron {
  0%   { opacity: 0; transform: rotate(45deg) translate(-4px,-4px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg) translate(4px,4px); }
}

/* ---- COLOR STRIP ---- */
.color-strip {
  display: flex;
  overflow: hidden;
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--green), var(--cyan), var(--pink), var(--purple), var(--orange));
  padding: 12px 0;
  position: relative;
  z-index: 2;
}
.color-strip::before,
.color-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}
.color-strip::before { left:0; background: linear-gradient(to right, var(--orange), transparent); }
.color-strip::after  { right:0; background: linear-gradient(to left,  var(--orange), transparent); }

.strip-item {
  flex-shrink: 0;
  padding: 0 28px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .12em;
  color: #1a0a00;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- SECTIONS ---- */
.section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #001a0a;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .2em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section-tag.light {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #1a0a00;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: .03em;
}

/* ---- BIO SECTION ---- */
.bio-section {
  background: linear-gradient(180deg, #0a1f0d 0%, #0d1a0f 100%);
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.bio-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: transform .3s, border-color .3s;
}
.bio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,190,108,.4);
}
.bio-card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  box-shadow: 0 4px 24px rgba(45,190,108,.35);
}
.bio-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: .04em;
  margin-bottom: 12px;
  color: var(--yellow);
}
.bio-card p { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.7; }

/* centro */
.bio-card-center {
  background: linear-gradient(135deg, rgba(45,190,108,.15), rgba(0,212,255,.1));
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  border-color: rgba(45,190,108,.3);
}
.bio-award {
  display: flex;
  align-items: center;
  gap: 14px;
}
.award-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.award-icon.gold     { background: linear-gradient(135deg, #f5c518, #e0a800); color: #1a0a00; }
.award-icon.platinum { background: linear-gradient(135deg, #e8e8e8, #a8a8a8); color: #1a0a00; }
.bio-award span { font-weight: 600; display: block; }
.bio-award small { font-size: .78rem; color: rgba(255,255,255,.6); }

/* ---- TIMELINE ---- */
.timeline {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 12px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--yellow), var(--orange), var(--pink));
  z-index: 0;
}
.timeline-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
  padding-top: 44px;
  z-index: 1;
}
.timeline-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border: 3px solid var(--dark);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(255,214,0,.5);
}
.timeline-year {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.timeline-content p { font-size: .78rem; color: rgba(255,255,255,.75); padding: 0 8px; }

/* ---- METRICS SECTION ---- */
.metrics-section {
  background: #0a1a10;
  overflow: hidden;
}
.metrics-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.metrics-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .15;
  filter: saturate(2) hue-rotate(20deg);
}

.metrics-section .container { position: relative; z-index: 1; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.metric-card {
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(14px);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green), var(--cyan));
}
.metric-card.featured::before {
  background: linear-gradient(to right, var(--orange), var(--yellow), var(--pink));
}
.metric-card.featured {
  background: rgba(255,107,0,.12);
  border-color: rgba(255,214,0,.3);
  transform: scale(1.04);
}
.metric-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 12px 50px rgba(45,190,108,.25); }
.metric-card.featured:hover { transform: scale(1.06) translateY(-4px); }

.metric-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-card.featured .metric-icon {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-value {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-value small { font-size: .5em; }
.metric-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.metric-note {
  font-size: .72rem;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 12px;
}
.metric-bar {
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}
.metric-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--green), var(--cyan));
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.4s cubic-bezier(.23,1,.32,1);
}
.metric-card.featured .metric-bar-fill {
  background: linear-gradient(to right, var(--orange), var(--yellow));
}

/* ---- VIDEO SECTION ---- */
.video-section {
  background: linear-gradient(180deg, #0d1a0f 0%, #0a1520 100%);
}
.video-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto 24px;
}
.video-glow {
  position: absolute;
  inset: -30px;
  border-radius: 30px;
  background: radial-gradient(ellipse, rgba(45,190,108,.3) 0%, transparent 70%);
  pointer-events: none;
  animation: glow-pulse 3s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.04); }
}
.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(45,190,108,.5);
  box-shadow: 0 20px 80px rgba(0,0,0,.7);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
}
.video-caption i { color: var(--green); margin-right: 8px; }

/* ---- GALLERY SECTION ---- */
.gallery-section {
  background: #0a1a10;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.gallery-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s, filter .5s;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) saturate(1.3);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: .08em;
}

/* ---- AWARDS SECTION ---- */
.awards-section {
  background: linear-gradient(180deg, #0d1a0f 0%, #0a1520 100%);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.award-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .3s, border-color .3s;
}
.award-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,197,24,.4);
}
.award-badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}
.gold-badge {
  background: radial-gradient(circle, #ffd700, #b8860b);
  color: #1a0a00;
  box-shadow: 0 0 30px rgba(255,215,0,.5);
}
.plat-badge {
  background: radial-gradient(circle, #e8e8e8, #888);
  color: #1a0a00;
  box-shadow: 0 0 30px rgba(200,200,200,.4);
}
.special-badge {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #001a0a;
  box-shadow: 0 0 30px rgba(45,190,108,.4);
}
.award-card h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .06em;
  margin-bottom: 10px;
  color: var(--yellow);
}
.award-card p { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.7; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: #0a1f0d;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .08;
  filter: saturate(2);
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-photo-small {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  border: 4px solid var(--gold);
  box-shadow: 0 0 40px rgba(245,197,24,.5);
}
.cta-photo-small img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  letter-spacing: .03em;
  margin-bottom: 16px;
  line-height: 1;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 36px;
}

/* ---- SOCIAL LINKS ---- */
.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.social-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: transform .3s, background .3s;
}
.social-btn:hover {
  transform: scale(1.2);
  background: var(--green);
  border-color: var(--green);
}

/* ---- FOOTER ---- */
.footer {
  background: #060e07;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  z-index: 2;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-logo span {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 6px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.5); transition: color .3s; }
.footer-links a:hover { color: var(--green); }

/* ---- FLOAT WHATSAPP ---- */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: #fff;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 30px rgba(37,211,102,.55);
  z-index: 999;
  animation: pulse-shadow 2.5s ease-in-out infinite;
  transition: transform .25s;
}
.float-wa:hover { transform: scale(1.15); }

/* ---- AOS ANIMATIONS (fallback manual) ---- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="zoom-in"] { transform: scale(.85); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* Delay helpers */
[data-aos-delay="100"] { transition-delay: .1s; }
[data-aos-delay="200"] { transition-delay: .2s; }
[data-aos-delay="300"] { transition-delay: .3s; }
[data-aos-delay="400"] { transition-delay: .4s; }
[data-aos-delay="500"] { transition-delay: .5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-main { grid-column: 1 / 3; grid-row: auto; }
  .awards-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bio-grid     { grid-template-columns: 1fr; }
  .awards-grid  { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-main { grid-column: auto; }
  .hero-inner   { gap: 28px; }
  .hero-photo-wrap { width: 220px; height: 220px; }
  .timeline { flex-direction: column; gap: 20px; }
  .timeline::before { display: none; }
  .timeline-item { padding-top: 0; padding-left: 50px; text-align: left; }
  .timeline-dot { top: 6px; left: 16px; transform: none; }
  .metric-card.featured { transform: none; }
}
@media (max-width: 480px) {
  .metrics-grid  { grid-template-columns: 1fr; }
  .cta-buttons   { flex-direction: column; align-items: center; }
  .btn-lg        { width: 100%; max-width: 340px; }
}
