:root {
  --brand: #b85c38;
  --brand-dark: #7b241c;
  --brand-soft: #fff1e6;
  --accent: #f0a51d;
  --accent-deep: #d97706;
  --sindoor: #8f1f18;
  --ink: #000000;
  --muted: #000000;
  --line: #ead8cb;
  --surface: #fff8f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fffdf9;
  color: var(--ink);
  font-family: "Inter", "Anek Bangla", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

a {
  color: var(--brand);
}

.btn {
  border-radius: 8px;
  font-weight: 600;
}

.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-active-bg: var(--brand-dark);
  --bs-btn-active-border-color: var(--brand-dark);
  --bs-btn-color: #fffdf9;
}

.btn-outline-dark {
  --bs-btn-color: #fffdf9;
  --bs-btn-border-color: rgba(255, 253, 249, 0.72);
  --bs-btn-hover-bg: #fffdf9;
  --bs-btn-hover-border-color: #fffdf9;
  --bs-btn-hover-color: var(--sindoor);
}

.btn-outline-terra {
  --bs-btn-color: var(--sindoor);
  --bs-btn-border-color: rgba(123, 36, 28, 0.42);
  --bs-btn-hover-bg: var(--sindoor);
  --bs-btn-hover-border-color: var(--sindoor);
  --bs-btn-hover-color: #fffdf9;
}

.navbar {
  background: rgba(255, 253, 249, 0.94) !important;
  backdrop-filter: blur(16px);
  --bs-navbar-padding-y: 0.9rem;
}

.navbar-brand {
  color: var(--ink);
  margin-left: clamp(-8rem, -7vw, -3rem);
}

.brand-logo {
  display: block;
  height: 78px;
  max-width: min(58vw, 680px);
  object-fit: contain;
  width: auto;
}

.nav-link {
  color: #3b2d26;
  font-weight: 400;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
}

.nav-link.active {
  color: var(--sindoor) !important;
  font-weight: 700;
}

.hero-section {
  background:
    linear-gradient(rgba(240, 165, 29, 0.12), rgba(240, 165, 29, 1)),
    url("../images/hero-background.webp") center / cover no-repeat,
    var(--accent);
  color: var(--ink);
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.hero-section .container {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 560px;
  position: relative;
  z-index: 1;
}

.hero-title {
  animation: heroTitleFloat 5200ms ease-out 1350ms both;
  bottom: 1.25rem;
  left: 50%;
  margin: 0;
  max-width: min(88vw, 920px);
  position: absolute;
  transform: translateX(-50%);
  width: 72%;
  z-index: 2;
}

.hero-anim-stack {
  aspect-ratio: 846 / 477;
  position: relative;
  transform: translateY(-2.25rem);
  width: min(78.2vw, 719px);
}

.hero-anim {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: contain;
  position: absolute;
  width: 100%;
}

.hero-anim-primary {
  animation: heroWipeDown 2800ms ease-out 820ms both;
}

.hero-anim-secondary {
  animation: heroWipeIn 5200ms ease-out 1280ms both;
}

.hero-anim-tertiary {
  animation: heroWipeDown 4200ms ease-out 2100ms both;
}

.hero-anim-quaternary {
  animation: heroFadeUp 6200ms ease-out 2800ms both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroWipeIn {
  from {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
  }

  to {
    clip-path: circle(75% at 50% 50%);
    opacity: 1;
  }
}

@keyframes heroWipeDown {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes heroTitleFloat {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.hero-section h1,
.section-title,
.cta-section h2 {
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-section .lead {
  color: rgba(255, 253, 249, 0.86);
  max-width: 660px;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 253, 249, 0.76);
}

.hero-section .eyebrow {
  color: #ffd98a;
}

.hero-panel {
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(255, 230, 199, 0.72);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(39, 13, 8, 0.28);
  color: var(--ink);
  padding: 1.25rem;
}

.hero-panel-top {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}

.hero-panel-top span {
  color: var(--muted);
  font-weight: 500;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

.stat-grid div {
  background: linear-gradient(180deg, #fff8f1, #fff1e6);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.stat-grid strong {
  color: var(--sindoor);
  display: block;
  font-size: 1.8rem;
  line-height: 1.1;
}

.stat-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.section-padding {
  padding: 5rem 0;
}

.bg-soft {
  background: var(--surface);
}

.durga-puja-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(240, 165, 29, 0.18), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, var(--surface) 100%);
}

.durga-puja-title {
  color: var(--sindoor);
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 0.95;
  white-space: nowrap;
}

.durga-puja-subtitle {
  color: var(--brand);
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  font-weight: 500;
  margin-bottom: 0;
}

.durga-puja-copy {
  color: #3b2d26;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.85;
}

.durga-puja-copy p {
  margin-bottom: 1.35rem;
}

.durga-puja-copy strong {
  color: var(--sindoor);
  font-weight: 700;
}

.dp-banner {
  background:
    linear-gradient(rgba(240, 165, 29, 0.08), rgba(240, 165, 29, 0.08)),
    url("../images/durga-banner-1.webp") 18% 5% / cover no-repeat,
    var(--accent);
  color: #fffdf9;
  display: flex;
  align-items: center;
  min-height: 360px;
}

.dp-banner .container {
  display: flex;
  justify-content: flex-end;
}

.dp-banner-copy {
  max-width: 520px;
  text-align: left;
  text-shadow: 0 4px 20px rgba(45, 1, 7, 0.36);
}

.dp-banner-copy span {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dp-banner-copy h1 {
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.92;
  margin: 0.35rem 0 0;
}

.gallery-banner {
  background:
    linear-gradient(rgba(45, 1, 7, 0.16), rgba(45, 1, 7, 0.16)),
    url("../images/gallery-banner.png") center / cover no-repeat,
    linear-gradient(135deg, #fff8f1, #f7e0cf);
  align-items: center;
  color: #fffdf9;
  display: flex;
  min-height: 360px;
}

.gallery-banner .container {
  display: flex;
  justify-content: flex-end;
}

.gallery-banner-copy {
  max-width: 520px;
  text-align: left;
  text-shadow: 0 4px 20px rgba(45, 1, 7, 0.42);
}

.gallery-banner-copy span {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-banner-copy h1 {
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.92;
  margin: 0.35rem 0 0;
}

.sponsorship-hero,
.sponsorship-banner {
  background:
    linear-gradient(90deg, rgba(45, 1, 7, 0.78), rgba(123, 36, 28, 0.36)),
    url("../images/sponsorship-banner.png") center / cover no-repeat,
    linear-gradient(135deg, var(--sindoor), var(--brand));
  color: #fffdf9;
}

.sponsorship-hero {
  align-items: center;
  display: flex;
  min-height: 360px;
  padding: 5rem 0;
}

.sponsorship-hero-title {
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.95;
}

.sponsorship-hero-copy {
  color: rgba(255, 253, 249, 0.84);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  max-width: 760px;
}

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

.sponsor-stat-grid div,
.sponsor-benefit,
.sponsor-package,
.sponsor-logo-grid div {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sponsor-stat-grid div {
  padding: 1.15rem;
}

.sponsor-stat-grid strong {
  color: var(--sindoor);
  display: block;
  font-size: 1.65rem;
  line-height: 1.1;
}

.sponsor-stat-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
  margin-top: 0.4rem;
}

.sponsor-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sponsor-pill-grid span {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3b2d26;
  font-weight: 500;
  padding: 0.75rem 1rem;
}

.sponsor-benefit,
.sponsor-package {
  padding: 1.5rem;
}

.sponsor-benefit h3,
.sponsor-package h3 {
  color: var(--sindoor);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sponsor-benefit ul {
  color: var(--muted);
  margin: 0;
  padding-left: 1.1rem;
}

.sponsor-benefit li + li {
  margin-top: 0.45rem;
}

.sponsor-impact-list {
  display: grid;
  gap: 0.85rem;
}

.sponsor-impact-list p {
  background: #fffdf9;
  border-left: 4px solid var(--brand);
  margin: 0;
  padding: 0.9rem 1rem;
}

.sponsor-package p {
  color: var(--muted);
}

.sponsor-package a {
  font-weight: 700;
  text-decoration: none;
}

.sponsor-logo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sponsor-logo-grid div {
  align-items: center;
  aspect-ratio: 16 / 9;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.sponsor-logo-grid img {
  display: block;
  max-height: 76px;
  max-width: 100%;
  object-fit: contain;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy.narrow {
  max-width: 440px;
}

.gallery-section {
  background:
    radial-gradient(circle at 86% 8%, rgba(240, 165, 29, 0.14), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, var(--surface) 100%);
}

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

.gallery-item {
  background: #fffdf9;
  border: 1px solid rgba(184, 92, 56, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(123, 36, 28, 0.08);
  cursor: zoom-in;
  display: block;
  margin: 0 0 1rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

.gallery-item::after {
  background: linear-gradient(180deg, transparent 42%, rgba(23, 18, 15, 0.34));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 180ms ease;
}

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

.gallery-item:hover,
.gallery-item:focus {
  box-shadow: 0 20px 44px rgba(123, 36, 28, 0.16);
  transform: translateY(-3px);
}

.gallery-item:hover::after,
.gallery-item:focus::after {
  opacity: 1;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.035);
}

.gallery-modal .modal-content {
  background: #17120f;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-modal .modal-header {
  border-bottom-color: rgba(255, 253, 249, 0.12);
  color: #fffdf9;
}

.gallery-modal .btn-close {
  filter: invert(1);
}

.gallery-modal .modal-body {
  padding: 0;
  position: relative;
}

.gallery-modal-image {
  display: block;
  max-height: 82vh;
  object-fit: contain;
  width: 100%;
}

.gallery-modal-nav {
  align-items: center;
  background: rgba(23, 18, 15, 0.58);
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-radius: 999px;
  color: #fffdf9;
  display: inline-flex;
  font-size: 3rem;
  height: 52px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 180ms ease, transform 180ms ease;
  width: 52px;
  z-index: 2;
}

.gallery-modal-nav:hover,
.gallery-modal-nav:focus {
  background: rgba(143, 31, 24, 0.88);
  transform: translateY(-50%) scale(1.04);
}

.gallery-modal-prev {
  left: 1rem;
}

.gallery-modal-next {
  right: 1rem;
}

.feature-card {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  box-shadow: 0 18px 40px rgba(123, 36, 28, 0.11);
  transform: translateY(-4px);
}

.feature-icon {
  color: var(--accent-deep);
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.event-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.event-list .list-group-item {
  align-items: center;
  border-color: var(--line);
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
}

.event-date {
  background: var(--brand-soft);
  border-radius: 8px;
  color: var(--sindoor);
  flex: 0 0 auto;
  font-weight: 600;
  padding: 0.75rem;
  text-align: center;
  width: 76px;
}

.event-list small {
  color: var(--muted);
  display: block;
  margin-top: 0.15rem;
}

.puja-schedule {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(123, 36, 28, 0.08);
}

.puja-schedule .table {
  min-width: 820px;
}

.puja-schedule th {
  background: var(--brand-soft);
  color: var(--sindoor);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.7rem 0.55rem;
  white-space: nowrap;
}

.puja-schedule td {
  color: #3b2d26;
  font-size: 0.84rem;
  padding: 0.65rem 0.55rem;
}

.puja-schedule .tithi-alt td {
  background: #fff8f1;
}

.puja-schedule .tithi-row:not(.tithi-alt) td {
  background: #fffdf9;
}

.puja-schedule td:first-child {
  color: var(--sindoor);
  font-weight: 700;
}

.puja-schedule em {
  color: var(--muted);
  font-style: normal;
}

.puja-schedule .ritual-details-col {
  max-width: 240px;
  width: 30%;
}

.calendar-downloads {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.startup-register-hero {
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.72), rgba(143, 31, 24, 0.42)),
    radial-gradient(circle at 82% 18%, rgba(240, 165, 29, 0.65), transparent 18rem),
    linear-gradient(135deg, var(--sindoor), var(--brand));
  color: #fffdf9;
  padding: 6rem 0;
}

.startup-register-hero-copy {
  max-width: 760px;
}

.startup-register-hero h1 {
  font-family: "Anek Bangla", "Inter", sans-serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 0.95;
  margin: 0.75rem 0 1rem;
}

.startup-register-hero p {
  color: rgba(255, 253, 249, 0.86);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 620px;
}

.startup-register-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(240, 165, 29, 0.18), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, var(--surface) 100%);
}

.startup-register-form {
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(123, 36, 28, 0.1);
  padding: 1.5rem;
}

.form-section + .form-section {
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

.form-section h3 {
  color: var(--sindoor);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.form-select {
  border-color: var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
}

.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.25rem rgba(184, 92, 56, 0.15);
}

.startup-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.startup-checks .form-check {
  background: #fff8f1;
  border: 1px solid rgba(184, 92, 56, 0.18);
  border-radius: 8px;
  margin: 0;
  padding: 0.75rem 1rem 0.75rem 2.4rem;
}

.startup-form-status {
  border-radius: 8px;
  margin: 1.5rem 0 1rem;
  padding: 1rem;
}

.startup-form-status.is-success {
  background: #edf7ed;
  border: 1px solid #b7dfb9;
  color: #145a1f;
}

.startup-form-status.is-error {
  background: #fff1e6;
  border: 1px solid rgba(143, 31, 24, 0.28);
  color: var(--sindoor);
}

.startup-submit-button {
  margin-top: 1.25rem;
}

.startup-success-modal .modal-content {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.startup-success-modal .modal-header {
  background: var(--brand-soft);
  border-bottom-color: var(--line);
  color: var(--sindoor);
}

.cta-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 165, 29, 0.42), transparent 18rem),
    linear-gradient(135deg, var(--sindoor), var(--brand));
  color: #fffdf9;
  padding: 4rem 0;
}

.cta-section p {
  color: rgba(255, 253, 249, 0.78);
}

.contact-form {
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
}

.form-control {
  border-color: var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
}

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.25rem rgba(184, 92, 56, 0.15);
}

.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 165, 29, 0.18), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, var(--surface) 100%);
}

.contact-section .col-lg-5 {
  width: 100%;
}

.contact-section .section-title {
  max-width: 680px;
}

.contact-section .section-copy {
  max-width: 760px;
}

.contact-details {
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(123, 36, 28, 0.1);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
  padding: 1.5rem;
}

.contact-details p {
  background: #fff8f1;
  border: 1px solid rgba(184, 92, 56, 0.16);
  border-radius: 8px;
  color: #3b2d26;
  margin-bottom: 0;
  padding: 1rem;
}

.contact-details p strong {
  color: var(--sindoor);
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.contact-details p:nth-child(3) {
  grid-column: 1 / -1;
}

.social-links {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  grid-column: 1 / -1;
  padding-top: 1.25rem;
}

.social-links a {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-links img {
  display: block;
  height: 32px;
  object-fit: contain;
  width: 32px;
}

.social-links a:hover,
.social-links a:focus {
  opacity: 0.86;
  transform: translateY(-2px);
}

.site-footer {
  background: #17120f;
  color: rgba(255, 253, 249, 0.74);
  padding: 1.5rem 0;
}

.site-footer a {
  color: rgba(255, 253, 249, 0.78);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fffdf9;
}

@media (max-width: 991.98px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand {
    margin-left: 0;
  }

  .brand-logo {
    height: 44px;
    max-width: 72vw;
  }

  .hero-section {
    min-height: 430px;
  }

  .hero-section .container {
    min-height: 430px;
  }

  .hero-title {
    bottom: 1rem;
    max-width: 90vw;
    width: 86%;
  }

  .hero-anim-stack {
    transform: translateY(-1.5rem);
    width: 79.9vw;
  }

  .dp-banner {
    background-position: 35% 5%;
    min-height: 430px;
  }

  .gallery-banner {
    min-height: 360px;
  }

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

  .gallery-banner .container {
    justify-content: center;
  }

  .gallery-banner-copy {
    max-width: 92vw;
    text-align: center;
  }

  .dp-banner .container {
    justify-content: center;
  }

  .dp-banner-copy {
    max-width: 92vw;
    text-align: center;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .hero-anim {
    animation: none;
  }

  .hero-title {
    animation: none;
  }

  .hero-anim-secondary {
    clip-path: none;
  }

  .hero-anim-tertiary {
    clip-path: none;
  }
}
