/* =========================================
   GREAT GLOBAL MEND — Stylesheet
   Brand: #E26591 (pink) · #A53660 (deep pink)
   Fonts: Poppins (headings) · Inter (body)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

@font-face {
  font-family: 'Ginto Nord';
  src: url('fonts/GintoNord-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --pink:        #E26591;
  --pink-dark:   #A53660;
  --pink-deep:   #822548;
  --pink-light:  #FAE8EF;
  --white:       #FFFFFF;
  --grey-light:  #F7F4F5;
  --grey-mid:    #EDE9EA;
  --grey-border: #DDD7D9;
  --text:        #1E1316;
  --text-mid:    #4A3B3E;
  --text-muted:  #7A6669;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   24px;
  --shadow:      0 4px 24px rgba(162, 54, 96, 0.10);
  --shadow-lg:   0 8px 40px rgba(162, 54, 96, 0.18);
  --max-w:       1160px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ---- Utility ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 48px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pink);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 40px;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: all 0.22s;
}
.btn-outline:hover { background: var(--pink); color: white; }

/* =======================================
   NAVIGATION
   ======================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-mid);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: calc(var(--max-w) + 80px);
  margin: 0 auto;
}
.navbar-logo img {
  height: 76px;
  width: auto;
margin-right:30px;
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.2s;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--pink); }
.navbar-actions { display: flex; align-items: center; gap: 12px; }

/* =======================================
   HERO
   ======================================= */
.hero {
  width: 100%;
  background: var(--pink);
  position: relative;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-text {
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'Ginto Nord', 'Poppins', sans-serif;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 4.2vw, 4rem);
  text-shadow: 0 6px 24px rgba(165, 54, 96, 0.85);
  pointer-events: none;
  white-space: nowrap;
}
.hero-text-line { display: block; }
@media (max-width: 768px) {
  .hero-text {
    left: 50%;
    top: 32%;
    text-align: center;
    font-size: clamp(1.3rem, 6vw, 2.2rem);
  }
}
.hero-partners {
  position: absolute;
  top: 72%;
  left: 25%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  pointer-events: none;
}
.hero-partners-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-partners-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.partner-logo {
  width: auto;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}
/* Per-partner sizing — tweak these heights independently */
.partner-logo--care     { height: clamp(44px, 5vw, 70px); }
.partner-logo--fabpatch { height: clamp(26px, 3vw, 42px); }
@media (max-width: 768px) {
  .hero-partners {
    top: 60%;
    left: 5%;
    transform: none;
    align-items: flex-start;
  }
  .hero-partners-row { gap: 18px; }
  .partner-logo--care     { height: clamp(28px, 6vw, 42px); }
  .partner-logo--fabpatch { height: clamp(16px, 3.6vw, 26px); }
}
.hero-date-strip {
  background: var(--pink-deep);
  color: white;
  text-align: center;
  padding: 14px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.hero-date-strip span {
  opacity: 0.7;
  font-weight: 400;
  margin: 0 16px;
}

/* =======================================
   ABOUT SECTION
   ======================================= */
.about-section {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  align-items: center;
}
.about-text { padding-right: 64px; }
.about-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.75;
}
.feature-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 3.5L6 11l-3.5-3.5-1 1L6 13l8.5-8.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.about-character {
  position: relative;
  align-self: flex-end;
}
.about-character img {
  width: 100%;
  max-width: 380px;
  height: 500px;
  object-fit: contain;
  object-position: top center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* =======================================
   STATS SECTION
   ======================================= */
.stats-section {
  padding: 88px 0;
  background: var(--grey-light);
  position: relative;
}
.stats-header { margin-bottom: 56px; }
.stats-group { margin-bottom: 56px; }
.stats-group:last-child { margin-bottom: 0; }
.stats-group-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.stats-group-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card.goal {
  background: var(--pink);
  color: white;
}
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  color: var(--pink);
}
.stat-card.goal .stat-number { color: white; }
.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.35;
}
.stat-card.goal .stat-label { color: rgba(255,255,255,0.82); }
.stat-year-tag {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-light);
  padding: 3px 10px;
  border-radius: 20px;
}
.stat-card.goal .stat-year-tag {
  color: white;
  background: rgba(255,255,255,0.22);
}

/* =======================================
   CHARACTER BANNER
   ======================================= */
.characters-strip {
  background: var(--pink);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.character-banner {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.strip-cta {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}
.strip-cta-pill {
  background: white;
  color: var(--pink-deep);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  padding: 18px 36px;
  border-radius: 60px;
  display: inline-block;
  box-shadow: var(--shadow-lg);
  line-height: 1.25;
}
.strip-cta-pill em {
  font-style: normal;
  color: var(--pink);
}

/* =======================================
   SCHEDULE TABLE
   ======================================= */
.schedule-section {
  padding: 88px 0;
  background: var(--white);
}
.schedule-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.75;
}
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-mid);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 600px;
}
.schedule-table thead {
  background: var(--text);
  color: white;
}
.schedule-table th {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
  white-space: nowrap;
}
.schedule-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--grey-mid);
  color: var(--text);
  vertical-align: middle;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:nth-child(even) td { background: var(--grey-light); }
.schedule-table tbody tr:hover td { background: var(--pink-light); transition: background 0.18s; }
.council-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--text);
}
.time-badge {
  display: inline-flex;
  align-items: center;
  background: var(--pink);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.venue-text {
  color: var(--text-mid);
  font-size: 0.88rem;
}
.table-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* =======================================
   ASSETS CTA BAND
   ======================================= */
.cta-band {
  background: var(--pink-deep);
  padding: 72px 40px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.btn-white {
  background: white;
  color: var(--pink-deep);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s;
}
.btn-white:hover { background: var(--pink-light); transform: translateY(-1px); }

/* =======================================
   FOOTER
   ======================================= */
footer {
  background: var(--text);
  color: white;
  padding: 56px 40px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.footer-logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 360px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}
.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 8px;
}

/* =======================================
   ASSETS PAGE — SPECIFIC
   ======================================= */
.assets-hero {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink-dark) 55%, var(--pink) 100%);
  padding: 80px 40px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.assets-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(226,101,145,0.35) 0%, transparent 65%);
}
.assets-hero-content { position: relative; z-index: 1; }
.assets-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.assets-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto;
}
.assets-section {
  padding: 80px 0;
  background: var(--grey-light);
}
.instructions-block {
  background: white;
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 56px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--pink);
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}
.instructions-block h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--text);
}
.instructions-block ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.instructions-block ol li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.instructions-block ol li strong {
  color: var(--text);
  font-weight: 600;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.download-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1px solid var(--grey-mid);
}
.download-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.download-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.download-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.download-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.6;
}
.download-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.spec-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--grey-mid);
  color: var(--text-muted);
  padding: 3px 9px;
  border-radius: 20px;
}
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 11px 22px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: background 0.22s;
}
.btn-download:hover { background: var(--pink-dark); }

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .about-text { padding-right: 0; margin-bottom: 40px; }
  .about-character { display: flex; justify-content: center; }
  .about-character img { max-width: 280px; height: 360px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
}

@media (max-width: 768px) {
  .navbar-inner { padding: 12px 20px; }
  .navbar-links { display: none; }
  .container { padding: 0 20px; }
  .stats-section, .schedule-section { padding: 56px 0; }
  .section-title { margin-bottom: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .strip-cta-pill { padding: 12px 22px; }
  .cta-band { padding: 56px 24px; }
  footer { padding: 40px 20px 32px; }
  .assets-hero { padding: 60px 24px; }
  .assets-section { padding: 56px 0; }
  .instructions-block { padding: 28px 24px; margin: 0 20px 40px; }
  .download-grid { margin: 0 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.8rem; }
  .hero-date-strip { font-size: 0.82rem; }
}
