:root {
  --blue: #153f76;
  --blue-bright: #2b7fce;
  --pink: #ea0d78;
  --red: #ff4d57;
  --gold: #ffb548;
  --ink: #f7f3ef;
  --muted: #d8d5d2;
  --surface: #132235;
  --surface-soft: #0d1827;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
  font-family: "Roboto", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234, 13, 120, 0.22), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(255, 181, 72, 0.12), transparent 18%),
    linear-gradient(180deg, #09111c 0%, #102035 45%, #0b1624 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 20%),
    radial-gradient(circle at 80% 70%, rgba(234, 13, 120, 0.08), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.75;
}

img {
  max-width: 100%;
}

.ambient-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.ambient-orb,
.ambient-grid {
  position: absolute;
}

.ambient-orb {
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.42;
  animation: drift 16s ease-in-out infinite alternate;
}

.orb-one {
  width: 340px;
  height: 340px;
  top: 8%;
  left: -80px;
  background: rgba(234, 13, 120, 0.28);
}

.orb-two {
  width: 300px;
  height: 300px;
  top: 24%;
  right: -60px;
  background: rgba(68, 183, 255, 0.22);
  animation-duration: 20s;
}

.orb-three {
  width: 420px;
  height: 420px;
  bottom: -120px;
  left: 28%;
  background: rgba(255, 181, 72, 0.16);
  animation-duration: 24s;
}

.ambient-grid {
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
  animation: pulse-grid 10s ease-in-out infinite;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 28px;
  background: rgba(9, 17, 28, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

main,
footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
}

.main-nav .header-cta {
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, var(--pink), var(--blue-bright));
  color: #fff;
  font-weight: 700;
}

.hero,
.section {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  min-height: calc(100vh - 87px);
  padding: 48px 0 40px;
}

.hero-copy,
.content-card,
.theme-banner,
.info-card,
.detail-card,
.nomination-panel,
.contact-panel,
.logo-panel,
.gallery-card,
.media-card,
.countdown-item,
.topics-grid article,
.cta-card {
  position: relative;
  overflow: hidden;
}

.hero-copy::before,
.content-card::before,
.theme-banner::before,
.info-card::before,
.detail-card::before,
.nomination-panel::before,
.contact-panel::before,
.gallery-card::before,
.media-card::before,
.topics-grid article::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--blue-bright));
  opacity: 0.9;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.lead,
.content-card p,
.theme-banner p,
.info-card p,
.contact-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.hero-actions,
.hero-meta,
.highlight-pills,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 26px 0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.countdown-item {
  padding: 16px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.countdown-item strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  color: #fff;
}

.countdown-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-meta span,
.highlight-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--pink), var(--blue-bright));
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.hero-art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  animation: float-logo 6s ease-in-out infinite;
}

.section {
  padding: 82px 0;
}

.slogan-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.slogan-strip span {
  padding: 18px 20px;
  background: linear-gradient(135deg, #ffefe2, #ffe2f1);
  color: #0b1320;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.gallery-section {
  padding-top: 34px;
}

.campaign-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  gap: 18px;
}

.gallery-card {
  min-height: 260px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #132235, #0e1827);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.gallery-card:hover,
.media-card:hover,
.highlight-visual:hover,
.topics-grid article:hover,
.info-card:hover,
.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
}

.gallery-card img,
.media-card img,
.highlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tall {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-logo {
  background:
    radial-gradient(circle at top right, rgba(255, 181, 72, 0.16), transparent 25%),
    linear-gradient(180deg, #1a2e48, #102035);
}

.gallery-logo img {
  object-fit: contain;
  padding: 34px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2,
.theme-banner h2,
.contact-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.split-grid,
.details-grid,
.contact-section,
.nomination-section {
  display: grid;
  gap: 22px;
}

.split-grid {
  grid-template-columns: 1fr 0.95fr;
}

.intro-section .split-grid {
  grid-template-columns: 1fr;
}

.media-stack {
  display: grid;
  gap: 18px;
}

.media-card {
  min-height: 280px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #132235, #0f1d2f);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.content-card,
.theme-banner,
.info-card,
.detail-card,
.nomination-panel,
.contact-panel,
.nomination-form,
.contact-form,
.stat-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.content-card,
.theme-banner,
.nomination-panel,
.contact-panel,
.nomination-form,
.contact-form,
.logo-panel {
  padding: 30px;
  border-radius: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  grid-column: 1 / -1;
}

.stat-grid article,
.info-card,
.detail-card {
  padding: 24px;
  border-radius: 24px;
  text-align: center;
}

.stat-grid strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
}

.stat-grid span {
  color: var(--muted);
}

.theme-banner {
  background:
    radial-gradient(circle at top right, rgba(255, 181, 72, 0.18), transparent 22%),
    linear-gradient(135deg, #1d3450 0%, #102239 100%);
  text-align: center;
}

.highlights-section {
  display: grid;
  gap: 24px;
}

.gallery-showcase {
  display: grid;
  gap: 24px;
}

.partners-section {
  display: grid;
  gap: 24px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partner-card {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.partner-card img {
  display: block;
  width: min(100%, 460px);
  height: auto;
  background: #ffffff;
  padding: 12px;
}

.masonry-gallery {
  column-count: 4;
  column-gap: 18px;
}

.masonry-item {
  position: relative;
  break-inside: avoid;
  display: block;
  width: 100%;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #132235, #0f1d2f);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  transition: background 260ms ease;
  pointer-events: none;
}

.masonry-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
}

.masonry-item:hover::after,
.masonry-item:focus-visible::after,
.masonry-item.is-revealed::after {
  background: rgba(0, 0, 0, 0);
}

.masonry-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 260ms ease;
}

.masonry-item:hover img,
.masonry-item:focus-visible img,
.masonry-item.is-revealed img {
  transform: scale(1.03);
}

.highlight-visual {
  min-height: 260px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #132235, #0f1d2f);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.card-grid,
.details-grid,
.topics-grid,
.poster-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.details-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-label {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topics-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.poster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.poster-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.topics-grid article {
  padding: 20px;
  background: #16283d;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight: 600;
  text-align: center;
}

.hero-meta span,
.highlight-pills span,
.button,
.countdown-item,
.hero-art,
.content-card,
.theme-banner,
.nomination-panel,
.contact-panel,
.partner-card,
.nomination-form,
.contact-form,
.logo-panel,
.masonry-item,
.stat-grid article,
.info-card,
.detail-card,
.topics-grid article,
.nomination-form input,
.nomination-form select,
.nomination-form textarea,
.contact-form input,
.contact-form select {
  border-radius: 0;
}

.contact-section {
  grid-template-columns: 1fr;
  align-items: start;
}

.nomination-section {
  grid-template-columns: 1fr;
  align-items: start;
}

.nomination-page .site-header {
  position: sticky;
}

.nomination-hero {
  min-height: auto;
  padding-top: 56px;
}

.nomination-art {
  min-height: 420px;
}

.nomination-embed-section {
  grid-template-columns: 0.82fr 1.18fr;
}

.nomination-full-section {
  width: 100%;
  max-width: 1520px;
  display: grid;
  gap: 22px;
  padding-left: 16px;
  padding-right: 16px;
}

.nomination-full-intro {
  width: 100%;
}

.form-embed-card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-embed-card-full {
  width: 100%;
}

.zoho-form-shell {
  width: 100%;
  min-height: 969px;
  padding: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 181, 72, 0.14), transparent 25%),
    linear-gradient(180deg, #112035, #0b1624);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-embed-card,
.zoho-form-shell {
  border-radius: 0;
}

.contact-links {
  margin-top: 18px;
  justify-content: center;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 1rem;
}

.contact-panel {
  justify-items: center;
  text-align: center;
}

.logo-panel {
  display: grid;
  place-items: center;
  min-height: 100%;
}

.logo-panel img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.sdc-link {
  margin-top: 8px;
  justify-self: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.nomination-form {
  display: grid;
  gap: 14px;
}

.cta-card {
  align-content: center;
  justify-items: start;
  min-height: 100%;
}

.nomination-section .nomination-panel,
.nomination-section .cta-card,
.contact-section .contact-panel,
.contact-section .cta-card {
  width: 100%;
}

.nomination-panel {
  justify-items: center;
  text-align: center;
}

.cta-note {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.contact-form label,
.nomination-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.nomination-form input,
.nomination-form select,
.nomination-form textarea {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: #0d1827;
}

.nomination-form textarea {
  min-height: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.site-footer {
  padding: 28px 20px 42px;
  text-align: center;
  color: var(--muted);
}

.footer-tag {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.footer-copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  background: #ffffff;
  color: #0b1624;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.whatsapp-bubble {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #08150d;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
}

.whatsapp-bubble svg {
  width: 28px;
  height: 28px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.gallery-lightbox[hidden] {
  display: none;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox-frame {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 15, 24, 0.92);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(30px, -24px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(-18px, 36px, 0) scale(0.94);
  }
}

@keyframes pulse-grid {
  0%,
  100% {
    opacity: 0.06;
  }
  50% {
    opacity: 0.12;
  }
}

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

@media (max-width: 1100px) {
  .hero,
  .split-grid,
  .contact-section,
  .nomination-section,
  .nomination-embed-section,
  .nomination-full-section,
  .card-grid,
  .details-grid,
  .topics-grid,
  .poster-grid,
  .campaign-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-tall {
    grid-row: auto;
    min-height: 320px;
  }

  .masonry-gallery {
    column-count: 3;
    column-gap: 16px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 18px;
  }

  .brand {
    width: calc(100% - 60px);
    align-items: center;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-self: center;
    justify-self: center;
    flex-shrink: 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-copy span {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      margin-top 220ms ease,
      padding-top 220ms ease;
  }

  .site-header.menu-open .main-nav {
    max-height: 520px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    width: min(100%, 420px);
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    justify-content: center;
    text-align: center;
  }

  .main-nav .header-cta {
    width: 100%;
  }

  .hero,
  .section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .slogan-strip {
    padding-left: 10px;
    padding-right: 10px;
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 28px 0 30px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

  .lead,
  .content-card p,
  .theme-banner p,
  .info-card p,
  .contact-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-meta span {
    min-width: 0;
    padding: 0 10px;
    font-size: 0.85rem;
    text-align: center;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .countdown-item {
    padding: 14px 8px;
  }

  .countdown-item strong {
    font-size: clamp(1.35rem, 5vw, 2rem);
  }

  .countdown-item span {
    font-size: 0.72rem;
  }

  .hero-art {
    min-height: 280px;
  }

  .hero-art img {
    max-height: 360px;
  }

  .section {
    padding: 58px 0;
  }

  .content-card,
  .theme-banner,
  .nomination-panel,
  .contact-panel,
  .nomination-form,
  .contact-form,
  .logo-panel,
  .form-embed-card {
    padding: 22px;
  }

  .zoho-form-shell {
    padding: 8px;
  }

  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .stat-grid article {
    padding: 18px 10px;
  }

  .stat-grid strong {
    font-size: 1.5rem;
  }

  .stat-grid span {
    font-size: 0.8rem;
  }

  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-links a {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }

  .whatsapp-label {
    display: none;
  }

  .masonry-gallery {
    column-count: 2;
    column-gap: 14px;
  }

  .highlight-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .highlight-pills span {
    width: auto;
    min-width: 0;
    min-height: 52px;
    padding: 10px 12px;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand {
    width: calc(100% - 56px);
  }

  .hero,
  .section,
  .nomination-full-section,
  .slogan-strip {
    padding-left: 8px;
    padding-right: 8px;
  }

  .main-nav a {
    min-width: 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .countdown-item {
    padding: 12px 6px;
  }

  .countdown-item strong {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .countdown-item span {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-meta span {
    width: auto;
    min-height: 38px;
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .stat-grid,
  .partners-grid,
  .card-grid,
  .topics-grid,
  .poster-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .stat-grid article {
    padding: 14px 4px;
  }

  .stat-grid strong {
    font-size: 1.15rem;
  }

  .stat-grid span {
    font-size: 0.65rem;
    line-height: 1.35;
  }

  .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .highlight-pills span {
    width: auto;
    min-height: 48px;
    padding: 8px 6px;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .footer-tag {
    font-size: clamp(1rem, 5.1vw, 1.45rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .section-heading h2,
  .theme-banner h2,
  .contact-panel h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero-art {
    min-height: 220px;
  }

  .hero-art img {
    max-height: 260px;
  }

  .content-card,
  .theme-banner,
  .nomination-panel,
  .contact-panel,
  .nomination-form,
  .contact-form,
  .logo-panel,
  .form-embed-card {
    padding: 18px;
  }

  .form-embed-card {
    padding: 12px;
  }

  .zoho-form-shell {
    min-height: 760px;
    padding: 0;
  }

  .gallery-showcase {
    gap: 18px;
  }

  .masonry-gallery {
    column-count: 1;
    column-gap: 0;
  }

  .masonry-item {
    margin-bottom: 14px;
  }

  .gallery-lightbox {
    padding: 18px 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    min-height: 42px;
    padding: 0 14px;
  }
}
