/* =========================================================
   ICTATT.ORG — HOME GATEWAY (UPDATED 3 PANEL VERSION)
   - Top full-width panel
   - Bottom left / right panels
   - Non-hovered panels go grayscale
   - Mobile stacks panels
   ========================================================= */

:root {
  --bg: #0b1220;
  --ink: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);

  --ring: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.35);

  --radius: 22px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --font:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --display: "Bebas Neue", var(--font);

  --page-pad: 16px;
  --gap: 16px;
  --topbar-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-image: linear-gradient(to top, #f9d423 0%, #ff4e50 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-y: auto;
}

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

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

button {
  font: inherit;
}

/* =========================================================
   BEE CURSOR (SENSORY PANEL ONLY)
   ========================================================= */
.gateway-panel--elderly,
.gateway-panel--elderly * {
  cursor:
    url("images/cup-cursor.png") 16 16,
    pointer !important;
}

.gateway-panel--sensory,
.gateway-panel--sensory * {
  cursor:
    url("images/bee-cursor.png") 16 16,
    pointer !important;
}

.gateway-panel--top,
.gateway-panel--top * {
  cursor:
    url("images/brush-cursor.png") 16 16,
    pointer !important;
}

/* =========================================================
   DOT TRAIL
   ========================================================= */
.dot-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 9999;
  background: #ffd400;
  box-shadow:
    0 0 0 2px rgba(255, 212, 0, 0.22),
    0 10px 18px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0.95;
  animation: dotTrailFade 520ms ease-out forwards;
}

@keyframes dotTrailFade {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
}

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-h);
  z-index: 1000;
  background: rgb(46, 45, 45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.topbar-inner {
  width: min(1280px, 94vw);
  min-height: var(--topbar-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: auto;
  padding-left: 0;
}

.brand img {
  width: auto;
  height: 58px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.icta-language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icta-language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 38px;
}

.icta-language-link:hover {
  transform: translateY(-1px);
}

.icta-language-link img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition:
    background 180ms var(--ease),
    transform 180ms var(--ease),
    color 180ms var(--ease);
}

.menu a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.menu-cta {
  background: rgb(13, 219, 219) !important;
  color: rgba(10, 15, 25, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* =========================================================
   BURGER + MOBILE MENU
   ========================================================= */
.burger,
.mobile-overlay {
  display: none;
}

.burger {
  width: 54px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(163, 30, 30, 0.08);
  cursor: pointer;
  position: relative;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  transition:
    transform 0.22s var(--ease),
    top 0.22s var(--ease),
    opacity 0.2s var(--ease);
}

.burger span:nth-child(1) {
  top: 14px;
}
.burger span:nth-child(2) {
  top: 22px;
}
.burger span:nth-child(3) {
  top: 30px;
}

.burger.open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(8px);
}

.burger.open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-overlay {
  position: fixed;
  inset: var(--topbar-h) 0 0 0;
  z-index: 400;
  background: rgba(32, 25, 21, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-panel {
  height: calc(100dvh - var(--topbar-h));
  display: grid;
  place-items: center;
  padding: 18px 16px;
}

.mobile-nav {
  width: min(560px, 92vw);
  display: grid;
  gap: 14px;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 18px;
  padding: 16px 18px;
  color: rgba(246, 244, 243, 0.95);
  font-family: var(--icta-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.6;
}

.mobile-cta {
  background: rgb(13, 219, 219);
  color: rgba(10, 15, 25, 0.92);
}

/* =========================================================
   MAIN
   ========================================================= */
main {
  padding: 0;
}

/* =========================================================
   GATEWAY GRID
   ========================================================= */
.gateway {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "top top"
    "sensory elderly";
  gap: 10px;
  padding: 10px;
  margin-top: var(--topbar-h);
  background: white;
  align-items: stretch;
  width: 100%;
}

/* =========================================================
   PANEL BASE
   ========================================================= */
.gateway-panel {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: rgba(188, 16, 16, 0.06);
  box-shadow: var(--shadow);
  min-height: 0;
  isolation: isolate;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    border-color 220ms var(--ease),
    filter 320ms var(--ease),
    opacity 320ms var(--ease);
}

.gateway:hover .gateway-panel:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  border-color: rgb(25, 232, 225);
}

.gateway-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  opacity: 0.92;
  transition:
    transform 2200ms var(--ease),
    opacity 400ms var(--ease);
  will-change: transform, opacity;
}

.gateway-panel:hover::before {
  transform: scale(1.12);
  opacity: 1;
}

.gateway-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gateway-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: clamp(16px, 2.4vw, 34px);
  display: grid;
  align-content: end;
  gap: 12px;
}

.gateway-content--center {
  text-align: center;
  justify-items: center;
  align-content: center;
}

.gateway-logo {
  width: 270px;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.gateway-logo--top {
  width: 175px;
}

.gateway-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: #f0f1e9;
  letter-spacing: 1px;
  font-size: clamp(46px, 4.6vw, 84px);
  line-height: 0.92;
}

.gateway-title-2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: #f0f1e9;
  letter-spacing: 1px;
  font-size: 65px;
  line-height: 0.82;
}

.gateway-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.7;
  max-width: 60ch;
}

.gateway-btn {
  margin-top: 6px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgb(13, 219, 219) !important;
  color: rgba(25, 43, 78, 0.92);
  transition:
    transform 180ms var(--ease),
    filter 180ms var(--ease);
}

.gateway-panel:hover .gateway-btn {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.gateway-hint {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  max-width: 62ch;
}

/* =========================================================
   PANEL AREAS
   ========================================================= */
.gateway-panel--top {
  grid-area: top;
  min-height: 50vh;
}

.gateway-panel--sensory {
  grid-area: sensory;
  min-height: 45vh;
}

.gateway-panel--elderly {
  grid-area: elderly;
  min-height: 45vh;
}

/* =========================================================
   PANEL BACKGROUNDS
   ========================================================= */
.gateway-panel--top::before {
  background-image: url("images/icta-background.webp?v=17");
  filter: blur(1px);
}

.gateway-panel--top .gateway-overlay {
  background:
    linear-gradient(
      135deg,
      rgba(0, 105, 180, 0.3) 0%,
      rgba(0, 0, 0, 0.3) 45%,
      rgba(0, 0, 0, 0.5) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.08) 100%
    );
}

.gateway-panel--sensory::before {
  background-image: url("images/funeriffic-background-tile.webp?v=17");
  filter: blur(1px);
}

.gateway-panel--sensory .gateway-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 105, 180, 0.28) 0%,
      rgba(0, 0, 0, 0.34) 55%,
      rgba(0, 0, 0, 0.14) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0) 100%
    );
}

.gateway-panel--elderly::before {
  background-image: url("images/elderly-care-background-tile.webp?v=17");
  filter: blur(1px);
}

.gateway-panel--elderly .gateway-overlay {
  background:
    linear-gradient(
      270deg,
      rgba(0, 105, 180, 0.28) 0%,
      rgba(0, 0, 0, 0.34) 55%,
      rgba(0, 0, 0, 0.14) 100%
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0) 100%
    );
}

/* =========================================================
   TEXT ALIGNMENTS
   ========================================================= */
.gateway-panel--sensory .gateway-content {
  text-align: left;
  justify-items: start;
}

.gateway-panel--elderly .gateway-content {
  text-align: right;
  justify-items: end;
}

.gateway-panel--elderly .gateway-sub,
.gateway-panel--elderly .gateway-hint {
  margin-left: auto;
}

/* =========================================================
   STUB
   ========================================================= */
.stub {
  height: 0;
  overflow: hidden;
}

/* =========================================================
   WAVE SECTION
   ========================================================= */
.wave-section {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: transparent;
  padding: clamp(34px, 5vw, 86px) 0 0;
  margin-top: var(--gap);
}

.wave-section__inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0 0 clamp(150px, 16vw, 240px);
}

.wave-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100vw;
  pointer-events: none;
  z-index: 1;
}

.wave-boat {
  position: absolute;
  left: 10%;
  bottom: 15px;
  width: clamp(140px, 18vw, 240px);
  height: auto;
  z-index: 3;
  pointer-events: none;
  transform-origin: center bottom;
  animation: boatRide 7s ease-in-out infinite;
}

@keyframes boatRide {
  0% {
    transform: translateX(0) translateY(0) rotate(-2deg);
  }
  25% {
    transform: translateX(12px) translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateX(24px) translateY(2px) rotate(2deg);
  }
  75% {
    transform: translateX(12px) translateY(-6px) rotate(-1deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(-2deg);
  }
}

.wave-kicker {
  margin: 0 0 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.72);
}

.wave-title {
  margin: 0 0 14px;
  font-family: var(--display);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  color: rgba(10, 10, 10, 0.92);
}

.wave-lead {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(20, 20, 20, 0.78);
  max-width: 80ch;
}

.waves {
  display: block;
  width: 100vw;
  height: 18vh;
  min-height: 110px;
  max-height: 170px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #ffffff;
  color: rgba(10, 10, 10, 0.9);
  padding: clamp(46px, 6vw, 90px) 0;
}

.services__inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
}

.services-kicker {
  margin: 0 0 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.65);
}

.services-title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 66px);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 0.95;
}

.services-lead {
  margin: 0 0 18px;
  color: rgba(10, 10, 10, 0.72);
  line-height: 1.8;
  max-width: 78ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 28px;
  align-items: start;
  justify-content: center;
}

.service-card--media {
  position: relative;
  padding-top: 150px;
}

.service-card__media {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% + 18px);
  transform: translateX(-50%);
  display: block;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
  z-index: 2;
}

.service-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 260ms var(--ease);
}

.service-card__media:hover img {
  transform: scale(1.04);
}

.service-card__body {
  position: relative;
  z-index: 1;
  min-height: 280px;
  width: 100%;
  padding: 104px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.service-card__body h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.92);
}

.service-card__body p {
  margin: 0 0 16px;
  color: rgba(10, 10, 10, 0.72);
  line-height: 1.7;
  font-size: 14px;
}

.service-link {
  display: inline-flex;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.88);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-card--sensory-1 .service-card__body {
  background: #dff7f2;
}

.service-card--sensory-2 .service-card__body {
  background: #e8f0ff;
}

.service-card--sensory-3 .service-card__body {
  background: #fff4cc;
}

.service-card--sensory-4 .service-card__body {
  background: #f6e8ff;
}

/* =========================================================
   SPONSORS
   ========================================================= */
.sponsors-section {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #ffffff;
  color: rgba(10, 10, 10, 0.9);
  padding: clamp(46px, 6vw, 90px) 0;
}

.sponsors-section__inner {
  width: min(1280px, 94vw);
  margin: 0 auto;
}

.sponsors-kicker {
  margin: 0 0 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  color: rgba(10, 10, 10, 0.65);
}

.sponsors-title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 66px);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 0.95;
}

.sponsors-lead {
  margin: 0 0 24px;
  color: rgba(10, 10, 10, 0.72);
  line-height: 1.8;
  max-width: 78ch;
}

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

.sponsor-card {
  border-radius: 22px;
  padding: 18px;
}

.sponsor-card__logo-wrap,
.sponsor-card__logo-wrap2 {
  height: clamp(95px, 12vw, 130px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-card__logo-wrap img {
  width: clamp(110px, 14vw, 180px);
  max-width: 100%;
  max-height: clamp(75px, 10vw, 118px);
  height: auto;
  object-fit: contain;
  display: block;
}

.sponsor-card__logo-wrap2 img {
  width: clamp(105px, 11vw, 145px);
  max-width: 100%;
  max-height: clamp(68px, 7.5vw, 92px);
  height: auto;
  object-fit: contain;
  display: block;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  main {
    padding: 0;
  }

  .gateway {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "sensory"
      "elderly";
    gap: 14px;
    min-height: auto;
  }

  .gateway-panel--top,
  .gateway-panel--sensory,
  .gateway-panel--elderly {
    min-height: 56vh;
  }

  .menu {
    display: none;
  }

  .burger,
  .mobile-overlay {
    display: block;
  }

  .topbar-inner {
    width: min(1280px, 94vw);
    min-height: var(--topbar-h);
    margin: 0 auto;
    gap: 12px;
  }

  .topbar__right {
    gap: 10px;
  }

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

  .waves {
    height: 70px;
    min-height: 70px;
  }

  .wave-section__inner {
    padding-bottom: 120px;
  }
}

@media (max-width: 520px) {
  :root {
    --topbar-h: 76px;
    --page-pad: 14px;
  }

  .topbar-inner {
    min-height: 76px;
  }

  .brand img {
    height: 46px;
  }

  .icta-language-link {
    width: 34px;
    height: 34px;
  }

  .icta-language-link img {
    width: 24px;
    height: 24px;
  }

  .mobile-overlay {
    inset: 76px 0 0 0;
  }

  .mobile-panel {
    height: calc(100dvh - 76px);
  }

  .gateway-title {
    font-size: clamp(40px, 10vw, 64px);
  }

  .gateway-logo {
    width: min(220px, 70%);
  }
}

/* =========================================================
   FOOTER + SITE MAP
   ========================================================= */
.site-footer {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(180deg, #1bacb7 0%, #09101f 100%);
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  height: 550px;
}

.site-footer__top {
  padding: clamp(42px, 6vw, 82px) 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand__logo {
  display: inline-flex;
  margin-bottom: 14px;
  margin-left: 10%;
}

.footer-brand__logo img {
  width: 100px;
  height: auto;
}

.footer-brand__text {
  margin: 0;
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  transition:
    color 180ms var(--ease),
    transform 180ms var(--ease);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: rgb(227, 75, 229);
  font-weight: 500;
  transform: translateX(6px);
  font-size: 16px;
}

.footer-sitemap {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.footer-sitemap__inner {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.footer-kicker {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
  width: min(1180px, 92vw);
  padding: 16px 0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__bottom-inner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.54);
}

/* =========================================================
   RESPONSIVE FOOTER
   ========================================================= */
@media (max-width: 980px) {
  .site-footer {
    height: auto;
  }

  .site-footer__bottom {
    position: relative;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-column: 1 / -1;
  }

  .footer-brand__logo {
    display: inline-flex;
    margin: 0 0 14px;
    justify-content: center;
  }

  .footer-brand__text {
    margin: 0 auto;
    max-width: 40ch;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-brand__logo img {
    width: 120px;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 760px) {
  .sponsors-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px;
  }

  .sponsor-card__logo-wrap,
  .sponsor-card__logo-wrap2 {
    height: 140px;
  }

  .sponsor-card__logo-wrap img {
    width: 150px;
    max-height: 110px;
  }

  .sponsor-card__logo-wrap2 img {
    width: 140px;
    max-height: 102px;
  }
}
