/* ===================== FONTS ===================== */
@font-face {
  font-family: "Durara Playful";
  src: url("fonts/durara-playful.otf") format("opentype");
  font-weight: normal;
  font-display: swap;
}

/* ===================== TOKENS ===================== */
:root {
  --navy: #1c3a5c;
  --navy-deep: #142b44;
  --sun: #fbc53c;
  --coral: #e2574c;
  --green: #8dc541;
  --blue: #4c9fd6;
  --cream: #fdf8ef;
  --ink: #20303f;
  --muted: #5d6b78;
  --white: #ffffff;

  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 18px 40px -20px rgba(20, 43, 68, .45);
  --shadow-sm: 0 8px 20px -12px rgba(20, 43, 68, .4);
  --maxw: 1180px;
  --display: "Durara Playful", "Nunito", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.display { font-family: var(--display); font-weight: normal; }
.h2 {
  font-family: var(--display);
  font-weight: normal;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.02;
  margin: .1em 0 .35em;
  color: var(--navy);
  letter-spacing: .5px;
}
.h2--light { color: var(--white); }
.ink-sun { color: var(--sun); }
.ink-coral { color: var(--coral); }
.ink-green { color: var(--green); }
.ink-blue { color: var(--blue); }

.section { max-width: var(--maxw); margin: 0 auto; padding: 84px 24px; }
.section--center { text-align: center; }
.section__sub { max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.eyebrow--coral { background: #fde4e1; color: var(--coral); }
.eyebrow--green { background: #e7f4d4; color: #5f9020; }
.eyebrow--blue  { background: #dcf0fb; color: #2f7bad; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: 999px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  line-height: 1;
}
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }
.btn:hover { transform: translateY(-2px); }
.btn--sun   { background: var(--sun); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--coral { background: var(--coral); color: #fff; box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color:#fff; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 18px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(28, 58, 92, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__brand img { height: 40px; width: auto; }
.nav__links { margin-left: auto; display: flex; gap: 26px; }
.nav__links a { color: #cfe0f0; font-weight: 700; font-size: .98rem; }
.nav__links a:hover { color: var(--sun); }
.nav__cta { padding: 9px 20px; }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; background:
    radial-gradient(1200px 600px at 80% -10%, #29507a 0%, transparent 60%),
    var(--navy); }
.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 24px clamp(60px, 8vw, 100px);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
  position: relative; z-index: 2;
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; z-index: 1; }
.hero__blob--1 { width: 240px; height: 240px; background: var(--coral); top: -60px; left: -60px; }
.hero__blob--2 { width: 320px; height: 320px; background: var(--blue); bottom: -120px; right: -80px; opacity: .35; }

.kicker { display:inline-block; color: var(--sun); font-weight: 800; letter-spacing: .5px;
  background: rgba(251,197,60,.12); padding: 7px 16px; border-radius: 999px; margin-bottom: 18px; }
.display { font-size: clamp(3.2rem, 9vw, 6rem); line-height: .92; color: #fff; margin: 0 0 18px; letter-spacing: 1px; }
.hero__lead { color: #d4e2f0; font-size: 1.2rem; max-width: 30ch; margin: 0 0 28px; }
.hero__lead strong { color: var(--sun); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero__facts { list-style: none; display: flex; gap: 14px; padding: 0; margin: 0; flex-wrap: wrap; }
.hero__facts li { display: flex; flex-direction: column; padding: 12px 18px; border-radius: 16px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.hero__facts b { font-weight: 900; color: var(--sun); font-size: 1.45rem; letter-spacing:.3px; }
.hero__facts span { color: #aebfcf; font-size: .82rem; }

.hero__art { position: relative; }
.hero__photo { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  border: 6px solid #fff; transform: rotate(-2deg); }
.badge { position: absolute; font-weight: 800; color: #fff; padding: 10px 16px; border-radius: 14px;
  box-shadow: var(--shadow-sm); font-size: .9rem; transform: rotate(-4deg); }
.badge--green { background: var(--green); bottom: -16px; left: -14px; }
.badge--blue { background: var(--blue); top: -14px; right: -10px; transform: rotate(5deg); }

/* ===================== MARQUEE ===================== */
.strip { background: var(--sun); overflow: hidden; padding: 14px 0; border-top: 4px solid var(--navy); border-bottom: 4px solid var(--navy); }
.strip__track { display: inline-flex; align-items: center; gap: 18px; white-space: nowrap; animation: scroll 28s linear infinite; }
.strip__track span { font-family: var(--display); font-size: 1.4rem; color: var(--navy); letter-spacing: 1px; }
.strip__track i { color: var(--coral); font-style: normal; font-size: 1.2rem; }
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .strip__track { animation: none; } }

/* ===================== ABOUT ===================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 6px solid #fff; transform: rotate(2deg); }
.about__copy p { color: var(--muted); }
.about__copy strong { color: var(--navy); }
.pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.pill { font-weight: 800; padding: 9px 16px; border-radius: 999px; font-size: .92rem; }
.pill--sun { background: #fff1cd; color: #9a7411; }
.pill--green { background: #e7f4d4; color: #5f9020; }
.pill--blue { background: #dcf0fb; color: #2f7bad; }

/* ===================== TRACKS ===================== */
.tracks .cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; text-align: left; }
.card { background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm);
  border-bottom: 6px solid transparent; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon { font-size: 2.4rem; margin-bottom: 10px; line-height: 1; }
.card h3 { font-family: var(--display); font-weight: normal; color: var(--navy); font-size: 1.5rem; margin: 0 0 8px; letter-spacing: .5px; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
.card--sun { border-bottom-color: var(--sun); }
.card--coral { border-bottom-color: var(--coral); }
.card--green { border-bottom-color: var(--green); }
.card--blue { border-bottom-color: var(--blue); }

/* ===================== TIMELINE / DAY ===================== */
.daywrap { max-width: 880px; }
.day__head { text-align: center; margin-bottom: 40px; }
.daytime { font-family: "Nunito", sans-serif; font-weight: 900; letter-spacing: 0; }
.daytime__arrow { color: var(--sun); margin: 0 6px; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 86px; top: 10px; bottom: 10px; width: 3px;
  background: repeating-linear-gradient(var(--navy) 0 8px, transparent 8px 16px); opacity: .25; }
.timeline li { display: grid; grid-template-columns: 70px 26px 1fr; align-items: start; gap: 16px; padding: 14px 0; }
.timeline__time { font-weight: 900; color: var(--navy); text-align: right; font-size: 1.15rem; letter-spacing: .2px; padding-top: 2px; }
.timeline__dot { width: 18px; height: 18px; border-radius: 50%; margin: 6px auto 0; border: 4px solid #fff; box-shadow: 0 0 0 2px rgba(0,0,0,.06); position: relative; z-index: 2; }
.dot--sun { background: var(--sun);} .dot--coral { background: var(--coral);} .dot--green { background: var(--green);} .dot--blue { background: var(--blue);}
.timeline li b { color: var(--navy); font-size: 1.1rem; }
.timeline li p { margin: 2px 0 0; color: var(--muted); font-size: .96rem; }

/* ===================== BAND / STATS ===================== */
.band { background: var(--navy); border-radius: var(--radius-lg); color: #fff; max-width: calc(var(--maxw) - 0px);
  margin: 0 auto; padding: 64px 24px; position: relative; overflow: hidden; }
.band::after { content:""; position:absolute; inset:0; background:
  radial-gradient(400px 200px at 15% 0%, rgba(141,197,65,.25), transparent 60%),
  radial-gradient(400px 200px at 90% 100%, rgba(76,159,214,.3), transparent 60%); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 30px; position: relative; z-index: 2; }
.stat b { display: block; font-weight: 900; font-size: clamp(2.6rem, 6vw, 3.6rem); line-height: 1; letter-spacing: .5px; }
.stat span { color: #b9c9d8; font-weight: 700; font-size: .95rem; }

/* ===================== GALLERY (packed masonry) ===================== */
.gallery { column-count: 3; column-gap: 14px; margin-top: 40px; }
.g { margin: 0 0 14px; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow-sm); break-inside: avoid; -webkit-column-break-inside: avoid; }
.g img { width: 100%; height: auto; display: block; transition: transform .4s ease; }
.g:hover img { transform: scale(1.05); }

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(15, 28, 45, .94);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lb__stage { margin: 0; max-width: min(1100px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
.lb__img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto;
  border-radius: 16px; border: 5px solid #fff; box-shadow: 0 30px 70px -20px rgba(0,0,0,.7);
  object-fit: contain;
}
.lb__count { margin-top: 14px; color: #cfe0f0; font-weight: 800; letter-spacing: 1px; font-size: .95rem; }
.lb__close {
  position: absolute; top: 18px; right: 22px; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.lb__close:hover { background: var(--coral); }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.12); color: #fff; font-size: 2.2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .15s ease, transform .15s ease;
}
.lb__nav:hover { background: var(--sun); color: var(--navy); }
.lb__prev { left: 18px; }
.lb__next { right: 18px; }

/* ===================== CTA ===================== */
.cta__card { max-width: 820px; margin: 0 auto; text-align: center; background:
    linear-gradient(135deg, var(--coral), #c8463c);
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px) 28px; color: #fff; box-shadow: var(--shadow);
  position: relative; overflow: hidden; }
.cta__card::before { content:"🚀"; position:absolute; font-size: 8rem; right: -10px; bottom: -28px; opacity: .14; }
.cta__card p { color: #ffe8e5; max-width: 52ch; margin: 0 auto 26px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__fine { font-size: .92rem; margin-top: 22px; }
.cta__fine a { color: #fff; text-decoration: underline; font-weight: 700; }

/* ===================== FAQ ===================== */
.faq { max-width: 880px; }
.faq__head { text-align: center; margin-bottom: 34px; }
.faq__list details { background: #fff; border-radius: 16px; padding: 4px 22px; margin-bottom: 12px; box-shadow: var(--shadow-sm); border-left: 5px solid var(--blue); }
.faq__list details[open] { border-left-color: var(--coral); }
.faq__list summary { font-weight: 800; color: var(--navy); cursor: pointer; padding: 16px 0; list-style: none; position: relative; padding-right: 30px; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 1.6rem; color: var(--coral); transition: transform .2s ease; }
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list p { color: var(--muted); margin: 0 0 16px; }
.faq__list a { color: var(--blue); font-weight: 700; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy-deep); color: #cfe0f0; padding: 56px 24px 40px; text-align: center; }
.footer__inner { max-width: 700px; margin: 0 auto; }
.footer__logo { height: 46px; width: auto; margin: 0 auto 14px; }
.footer__tag { color: #9fb4c8; font-size: .95rem; margin: 0 0 22px; }
.footer__links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.footer__links a { font-weight: 700; color: #cfe0f0; }
.footer__links a:hover { color: var(--sun); }
.footer__copy { color: #6f86a0; font-size: .85rem; margin: 0; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .gallery { column-count: 2; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { max-width: 460px; margin: 0 auto; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about__media { order: 2; }
  .tracks .cards { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .section { padding: 60px 20px; }
  .tracks .cards { grid-template-columns: 1fr; }
  .gallery { column-count: 2; column-gap: 10px; }
  .g { margin-bottom: 10px; }
  .hero__facts { width: 100%; }
  .hero__facts li { flex: 1 1 30%; }
  .timeline li { grid-template-columns: 56px 22px 1fr; gap: 12px; }
  .timeline::before { left: 67px; }
}
