:root {
  --bg: #0b1117;
  --section: #111827;
  --text: #f5f7fa;
  --muted: #9ca3af;
  --ice: #8ecae6;
  --orange: #f97316;
  --red: #dc2626;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 17, 23, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.navbar {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo::first-letter {
  color: var(--orange);
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
  transition: 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ice);
}
.hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(11, 17, 23, 0.95),
      rgba(11, 17, 23, 0.55),
      rgba(11, 17, 23, 0.96)
    ),
    url("../assets/hero/hero-mountain.jpg")
      center/cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 30%,
    rgba(142, 202, 230, 0.18),
    transparent 38%
  );
}
.hero__content {
  position: relative;
  max-width: 900px;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--ice);
  font-size: 0.78rem;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 12px;
}
h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  letter-spacing: -1px;
}
h1 {
  font-size: clamp(4rem, 11vw, 8.8rem);
}
h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 22px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  color: #dde7f0;
  margin: 20px 0 34px;
  max-width: 720px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid var(--border);
  transition: 0.3s;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: white;
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.24);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(249, 115, 22, 0.35);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
}
.btn--ghost:hover {
  background: rgba(142, 202, 230, 0.12);
  border-color: var(--ice);
}
.btn--small {
  padding: 10px 16px;
  font-size: 0.85rem;
  margin-top: 14px;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding: 110px 0;
}
.section--dark {
  background: var(--section);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.story p,
.story-block p,
.contact-info p {
  color: var(--muted);
  margin-bottom: 16px;
}
.text-link {
  color: var(--ice);
  font-weight: 800;
}
.image-frame {
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.image-frame img {
  height: 520px;
  width: 100%;
  object-fit: cover;
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(11, 17, 23, 0.3));
}

.stats {
  padding: 42px 0;
  background: linear-gradient(180deg, #0b1117, #111827);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}
.stat-card span {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ice);
}
.stat-card small {
  color: var(--muted);
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.exp-card,
.blog-card,
.press-card {
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.35s;
}
.exp-card:hover,
.blog-card:hover,
.press-card:hover {
  transform: translateY(-8px);
  border-color: rgba(142, 202, 230, 0.45);
}
.exp-card img,
.blog-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}
.exp-card div,
.blog-card div,
.press-card {
  padding: 24px;
}
.exp-card span,
.blog-card span,
.press-card span {
  color: var(--ice);
  font-size: 0.82rem;
  font-weight: 800;
}
.exp-card p,
.blog-card p,
.press-card p {
  color: var(--muted);
}
.exp-card a {
  color: var(--orange);
  font-weight: 900;
  margin-top: 14px;
  display: inline-block;
}
.badge {
  display: inline-block;
  background: rgba(142, 202, 230, 0.12);
  border: 1px solid rgba(142, 202, 230, 0.3);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--ice), var(--orange));
}
.timeline-item {
  position: relative;
  margin-bottom: 26px;
  padding: 26px 26px 26px 68px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.12);
}
.timeline-item b {
  color: var(--ice);
}
.timeline-item p {
  color: var(--muted);
}

.masonry {
  columns: 3 260px;
  column-gap: 18px;
}
.gallery-img,
.video-thumb {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  cursor: pointer;
  break-inside: avoid;
  transition: 0.3s;
  box-shadow: var(--shadow);
}
.gallery-img {
  height: 280px;
  object-fit: cover;
}
.gallery-img.tall {
  height: 430px;
}
.gallery-img:hover {
  filter: brightness(0.75);
  transform: scale(0.98);
}
.video-thumb {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #172033, #29110c);
  color: var(--ice);
  font-weight: 900;
  font-size: 1.2rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.press-card {
  min-height: 190px;
}
.certificates div {
  min-height: 180px;
  border: 1px dashed var(--border);
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}
.cta-band {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.18),
    rgba(142, 202, 230, 0.1)
  );
  text-align: center;
}
.cta-band h2 {
  max-width: 900px;
  margin: 0 auto 26px;
}

.page-hero {
  padding: 140px 0 90px;
  background:
    linear-gradient(90deg, rgba(11, 17, 23, 0.96), rgba(11, 17, 23, 0.74)),
    url("../assets/hero/page-hero.jpg")
      center/cover;
}
.page-hero p {
  color: #dde7f0;
  max-width: 760px;
}
.story-stack {
  display: grid;
  gap: 34px;
}
.story-block {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}
.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  padding: 42px;
  border-left: 4px solid var(--orange);
  background: rgba(249, 115, 22, 0.07);
  border-radius: 0 28px 28px 0;
}
.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.filter-btn {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--ice);
  color: #061018;
}
.contact-form {
  display: grid;
  gap: 16px;
}
input,
select,
textarea {
  width: 100%;
  background: #0e1620;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px;
  color: var(--text);
  font: inherit;
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-info {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
}
.cta-mini {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(142, 202, 230, 0.1);
  color: var(--ice);
  font-weight: 900;
}
.center {
  text-align: center;
  margin-top: 30px;
}
.footer {
  padding: 80px 0 28px;
  background: linear-gradient(180deg, #0b1117 0%, #05080c 100%);
  border-top: 1px solid rgba(142, 202, 230, 0.18);
  position: relative;
  overflow: hidden;
}

.trusted-section {
  overflow: hidden;
}

.trusted-section .section-head {
  text-align: center;
  margin-bottom: 50px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 90px;

  width: max-content;

  animation: scrollLogos 15s linear infinite;
}

.logo-track img {
  height: 58px;
  width: auto;

  object-fit: contain;

  opacity: 1;

  transition: 0.35s ease;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-track {
    gap: 60px;
  }

  .logo-track img {
    height: 32px;
  }
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(142, 202, 230, 0.08),
    transparent 40%
  );
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 42px;
  position: relative;
  z-index: 2;
}

.footer p,
.footer a {
  display: block;
  color: var(--muted);
  margin: 10px 0;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: var(--ice);
  transform: translateX(4px);
}

.footer h4 {
  margin-bottom: 18px;
  color: var(--ice);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer .logo {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  display: inline-block;
}

.footer-tagline {
  max-width: 320px;
}

.footer-quote {
  color: #f97316 !important;
  font-style: italic;
  margin-top: 18px;
  font-size: 15px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f5f7fa;
  font-size: 18px;
  transition: 0.35s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #8ecae6;
  color: #0b1117;
  border-color: #8ecae6;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(142, 202, 230, 0.25);
}

.footer-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f97316;
  color: #fff !important;
  font-weight: 600;
}

.footer-cta:hover {
  background: #ea580c;
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--ice);
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer .logo {
    font-size: 28px;
  }
}
.copyright {
  text-align: center;
  color: var(--muted);
  margin-top: 40px;
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-height: 85vh;
  border-radius: 22px;
}
.lightbox button {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 3rem;
  background: none;
  border: 0;
  color: white;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 76px;
    right: -100%;
    width: 78%;
    height: calc(100vh - 76px);
    background: #0b1117;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
    border-left: 1px solid var(--border);
    transition: 0.35s;
  }
  .nav-links.open {
    right: 0;
  }
  .hamburger {
    display: block;
  }
  .two-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 42px;
    align-items: start;
  }
  .stats__grid,
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  h1 {
    font-size: clamp(3.6rem, 13vw, 6rem);
  }
}
@media (max-width: 640px) {
  .section {
    padding: 78px 0;
  }
  .stats__grid,
  .mini-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
  .image-frame img {
    height: 360px;
  }
  .section-head {
    display: block;
  }
  .timeline::before {
    left: 14px;
  }
  .timeline-item {
    padding-left: 50px;
  }
  .timeline-item::before {
    left: 5px;
  }
}

.hero--center {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11, 17, 23, 0.52), rgba(11, 17, 23, 0.58)),
    linear-gradient(
      90deg,
      rgba(11, 17, 23, 0.68),
      rgba(11, 17, 23, 0.12),
      rgba(11, 17, 23, 0.68)
    ),
    url("../assets/hero/hero-everest.jpg")
      center/cover no-repeat;
  overflow: hidden;
}

.hero--center::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 15, 0.28);
  z-index: 0;
}

.hero--center .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 24%,
      rgba(255, 255, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(11, 17, 23, 0.18), rgba(11, 17, 23, 0.65));
  z-index: 1;
}

.hero--center .hero__content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: auto;
  padding-top: 15px;
}

.hero--center h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5.5rem, 10.5vw, 10rem);
  line-height: 0.82;
  font-weight: 700;
  color: #f5f7fa;
  letter-spacing: -3px;
  text-shadow: 0 10px 45px rgba(0, 0, 0, 0.4);
  margin-bottom: 34px;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 46px;
  color: #8ecae6;
  font-size: clamp(1.25rem, 2vw, 1.95rem);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.hero__meta i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(245, 247, 250, 0.45);
  display: inline-block;
}

.hero__description {
  max-width: 1050px;
  margin: 0 auto 78px;
  color: #f5f7fa;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.55;
  font-weight: 400;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero--center .hero__actions {
  justify-content: center;
  gap: 24px;
}

.hero--center .btn {
  min-width: 325px;
  min-height: 86px;
  border-radius: 999px;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.1px;
}

.hero--center .btn--primary {
  background: #8ecae6;
  color: #05111a;
  border: 1px solid #8ecae6;
  box-shadow: 0 22px 48px rgba(142, 202, 230, 0.25);
}

.hero--center .btn--primary:hover {
  transform: translateY(-4px);
  background: #a7ddf2;
  box-shadow: 0 28px 58px rgba(142, 202, 230, 0.35);
}

.hero--center .btn--outline {
  background: rgba(11, 17, 23, 0.18);
  color: #8ecae6;
  border: 3px solid #8ecae6;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.hero--center .btn--outline:hover {
  transform: translateY(-4px);
  background: rgba(142, 202, 230, 0.12);
}

.btn--arrow {
  gap: 16px;
}

.btn--arrow span {
  font-size: 2.3rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .hero--center h1 {
    font-size: clamp(4.6rem, 14vw, 7rem);
    letter-spacing: -2px;
  }

  .hero__description {
    margin-bottom: 48px;
  }

  .hero--center .btn {
    min-width: 260px;
    min-height: 72px;
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .hero--center {
    min-height: calc(100vh - 76px);
    padding: 70px 0;
  }

  .hero--center h1 {
    font-size: clamp(4rem, 18vw, 5.4rem);
    margin-bottom: 26px;
  }

  .hero__meta {
    gap: 10px;
    font-size: 1.05rem;
    margin-bottom: 34px;
  }

  .hero__meta i {
    width: 5px;
    height: 5px;
  }

  .hero__description {
    font-size: 1.05rem;
    margin-bottom: 42px;
  }

  .hero--center .hero__actions {
    gap: 16px;
  }

  .hero--center .btn {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 1rem;
  }
}
.full-story {
  display: none;
  margin-top: 10px;
}

.exp-card.active .full-story {
  display: block;
}

.story-toggle {
  margin-top: 12px;
  border: none;
  background: transparent;
  color: #9b1c1c;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.story-toggle:hover {
  text-decoration: underline;
}

.full-blog {
  display: none;
  margin-top: 12px;
}

.blog-card.active .full-blog {
  display: block;
}

.blog-toggle {
  margin-top: 14px;
  border: none;
  background: transparent;
  color: #9b1c1c;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.blog-toggle:hover {
  text-decoration: underline;
}
.card-grid {
  align-items: start;
}

.blog-card {
  align-self: start;
}

.form-message {
  margin-top: 14px;
  font-weight: 700;
  color: var(--muted);
}

.form-message.success {
  color: #8ecae6;
}

.form-message.error {
  color: #f97316;
}

@media (max-width: 980px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .site-header {
    overflow: visible;
  }

  .navbar {
    position: relative;
  }

  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 76px !important;
    right: 0 !important;
    width: min(82vw, 320px) !important;
    height: calc(100vh - 76px) !important;
    padding: 34px 24px !important;
    background: #0b1117 !important;
    border-left: 1px solid var(--border) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    z-index: 9999 !important;
    transform: translateX(110%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.25s ease !important;
  }

  .nav-links.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .hamburger {
    display: block !important;
    position: relative;
    z-index: 10000;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 36px 42px !important;
    align-items: start;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer .logo img {
    height: 95px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}
