@import 'about-team.css';

/* =============================================================
   LIFE AT GEANY  -  Dedicated Stylesheet
   Theme: Premium Light Corporate & Modern AI (White & Orange Glow)
   ============================================================= */

/* ── Full-screen Hero Section Styling ── */
#lag-hero {
  height: 100vh !important;
  min-height: 100vh !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
}

#lag-hero .au-hero__scroll {
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: max-content !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
  z-index: 3 !important;
  font-size: 0.72rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}

#lag-hero .au-scroll-line {
  height: 48px !important;
}

@media (max-width: 600px) {
  #lag-hero .au-hero__scroll {
    bottom: 14px !important;
    font-size: 0.65rem !important;
    gap: 6px !important;
  }

  #lag-hero .au-scroll-line {
    height: 36px !important;
  }
}

@media (max-height: 750px) {
  #lag-hero .au-hero__scroll {
    bottom: 12px !important;
    display: flex !important;
  }
}

.lag-hero__container {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  background: transparent !important;
}

.lag-hero__left-col {
  pointer-events: all !important;
  max-width: 550px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

@media (max-width: 768px) {
  #lag-hero {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    height: 100vh !important;
    min-height: 100vh !important;
    padding-top: 90px !important; /* spacing below sticky header */
    padding-bottom: 0 !important;
  }

  .lag-hero__container {
    display: block !important;
    height: auto !important;
    padding: 0 24px !important;
  }
  
  .lag-hero__left-col {
    max-width: 100% !important;
    width: 100% !important;
  }

  .lag-hero2__canvas {
    height: 100% !important;
  }
}

.lag-hero2__pills--dark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  margin-top: 36px;
}

.lag-hero2__pill--dark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lag-hero2__pill--dark:hover {
  background: rgba(254, 148, 2, 0.12);
  border-color: rgba(254, 148, 2, 0.35);
  transform: translateY(-4px);
}

.lag-hero2__pill--dark i {
  font-size: 1.25rem;
  background: var(--gs-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.lag-hero2__pill--dark strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
}

.lag-hero2__pill--dark span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

@media (max-width: 768px) {
  .lag-hero2__pills--dark {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .lag-hero2__pills--dark {
    grid-template-columns: 1fr 1fr;
  }
}


/* ── GLOBAL LIGHT OVERRIDES FOR LIFE AT GEANY PAGE ── */
body {
  background-color: #FFFFFF !important;
  color: #1E293B !important;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Custom Selection Color */
::selection {
  background: rgba(249, 115, 22, 0.15);
  color: #EA580C;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
  background: rgba(249, 115, 22, 0.25);
  border-radius: 5px;
  border: 2px solid #F8FAFC;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(249, 115, 22, 0.45);
}

/* ── HEADER STYLING ── */
/* Keep global header styling (light background) but adjust transition */
.site-header {
  transition: all 0.3s ease !important;
}

/* ── SHARED STYLING TOKENS ── */
.lag-pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(135deg, #fd5f24, #f53548, #cd3576);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid rgba(253, 95, 36, 0.18);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}

.lag-text-accent {
  color: transparent;
  background: linear-gradient(135deg, #fd5f24, #f53548, #cd3576);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── HERO ─────────────────────────────────────────────────── */
.lag-hero2 {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background: #FFFFFF;
}

/* Light warm mesh background */
.lag-hero2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 25%, rgba(249, 115, 22, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 75%, rgba(249, 115, 22, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 50%, #FFFFFF 100%);
}

/* Dotted grid overlay */
.lag-hero2__grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 90%);
}

/* Glowing background orbs */
.lag-hero2__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 1;
}

.lag-hero2__orb--1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  animation: lagOrbPulse 12s ease-in-out infinite alternate;
}

.lag-hero2__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -50px;
  left: 2%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, transparent 70%);
  animation: lagOrbPulse 14s ease-in-out infinite alternate-reverse 2s;
}

.lag-hero2__orb--3 {
  width: 250px;
  height: 250px;
  top: 25%;
  left: 35%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.03) 0%, transparent 70%);
  animation: lagOrbPulse 9s ease-in-out infinite alternate 1s;
}

@keyframes lagOrbPulse {
  0% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.08) translate(15px, -10px);
    opacity: 0.8;
  }

  100% {
    transform: scale(0.95) translate(-8px, 8px);
    opacity: 0.4;
  }
}

.lag-hero2__body {
  position: relative;
  z-index: 5;
  max-width: 950px;
}

/* Breadcrumb */
.lag-hero2__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: #64748B;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(249, 115, 22, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.lag-hero2__breadcrumb a {
  color: #64748B;
  text-decoration: none;
  transition: color .3s;
}

.lag-hero2__breadcrumb a:hover {
  color: #F97316;
}

.lag-hero2__breadcrumb span {
  color: #F97316;
  font-weight: 600;
}

.lag-hero2__breadcrumb i {
  font-size: .55rem;
  color: #CBD5E1;
}

/* Headline */
.lag-hero2__title {
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #0A1628;
  margin-bottom: 24px;
  letter-spacing: -2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lag-hero2__title-accent {
  color: transparent;
  background: linear-gradient(135deg, #F97316 0%, #FFA25E 50%, #EA580C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.lag-hero2__sub {
  font-size: 1.25rem;
  color: #475569;
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* Stat Cards (Light Glassmorphism) */
.lag-hero2__pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.lag-hero2__pill {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(249, 115, 22, 0.12);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.lag-hero2__pill:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.06), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.lag-hero2__pill i {
  font-size: 1.35rem;
  color: #F97316;
  margin-bottom: 6px;
  transition: transform 0.4s ease;
}

.lag-hero2__pill:hover i {
  transform: scale(1.1) rotate(5deg);
}

.lag-hero2__pill strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #0A1628;
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.lag-hero2__pill span {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.lag-hero2__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Scroll indicator */
.lag-hero2__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border-radius: 100px;
  border: 2px solid rgba(249, 115, 22, 0.18);
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
}

.lag-hero2__scroll-dot {
  width: 4px;
  height: 10px;
  border-radius: 100px;
  background: #F97316;
  animation: lagScrollDot2 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes lagScrollDot2 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  70% {
    transform: translateY(16px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

/* ── GALLERY ──────────────────────────────────────────────── */
.lag-gal {
  padding: 120px 0;
  background: #F8FAFC;
  position: relative;
  border-top: 1px solid rgba(249, 115, 22, 0.08);
  border-bottom: 1px solid rgba(249, 115, 22, 0.08);
  overflow: hidden;
}

.lag-gal__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}

.lag-gal__title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #0A1628;
  line-height: 1.15;
  margin-top: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -1px;
}

.lag-gal__sub {
  font-size: 1.05rem;
  color: #64748B;
  margin-top: 8px;
}

/* Filter Tabs */
.lag-filter {
  display: inline-flex;
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 6px;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.lag-filter__btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid transparent;
  color: #64748B;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Inter', sans-serif;
}

.lag-filter__btn:hover {
  color: #0A1628;
  background: rgba(0, 0, 0, 0.03);
}

.lag-filter__btn.active {
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  font-weight: 700;
}

/* Masonry Grid */
.lag-gal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
  position: relative;
  z-index: 5;
}

.lag-gal__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lag-gal__item--wide {
  grid-column: span 2;
}

.lag-gal__item--tall {
  grid-row: span 2;
}

.lag-gal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lag-gal__item:hover img {
  transform: scale(1.05);
}

/* Hover Overlay */
.lag-gal__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 20px;
}

.lag-gal__item:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 95, 36, 0.25);
  box-shadow: 0 10px 25px rgba(253, 95, 36, 0.08);
}

.lag-gal__item:hover .lag-gal__overlay {
  opacity: 1;
}

.lag-gal__overlay i {
  font-size: 1.15rem;
  color: #ffffff;
  background: linear-gradient(135deg, #fd5f24, #f53548, #cd3576);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 5px 15px rgba(253, 95, 36, 0.3);
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lag-gal__overlay span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lag-gal__item:hover .lag-gal__overlay i,
.lag-gal__item:hover .lag-gal__overlay span {
  transform: translateY(0);
}

.lag-hidden {
  display: none !important;
}

/* ── LIGHTBOX (LIGHT GLASSMORPHIC BACKDROP) ────────────────── */
.lag-lb {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lag-lb.active {
  display: flex;
}

.lag-lb__inner {
  max-width: 85vw;
  max-height: 85vh;
  text-align: center;
  position: relative;
  animation: lagLbZoom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lagLbZoom {
  from {
    transform: scale(0.96);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lag-lb__inner img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(253, 95, 36, 0.18);
  transition: opacity 0.25s ease;
  border: 1px solid rgba(253, 95, 36, 0.12);
}

.lag-lb__caption {
  background: linear-gradient(135deg, #fd5f24, #f53548, #cd3576);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.lag-lb__close,
.lag-lb__nav {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(253, 95, 36, 0.12);
  color: #0A1628;
  display: grid;
  place-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid rgba(253, 95, 36, 0.25);
  box-shadow: 0 4px 12px rgba(253, 95, 36, 0.16);
  backdrop-filter: blur(5px);
  z-index: 100000;
}

.lag-lb__close {
  top: 30px;
  right: 30px;
  font-size: 1.3rem;
}

.lag-lb__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.lag-lb__close:hover,
.lag-lb__nav:hover {
  background: linear-gradient(135deg, #fd5f24, #f53548, #cd3576);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(245, 53, 72, 0.35);
  transform: scale(1.08) translateY(0);
}

.lag-lb__nav:hover {
  transform: translateY(-50%) scale(1.08);
}

.lag-lb__nav--prev {
  left: 30px;
}

.lag-lb__nav--next {
  right: 30px;
}

/* ── JOIN CTA ─────────────────────────────────────────────── */
.lag-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1628 0%, #12213E 60%, #180D25 100%);
  padding: 90px 0;
  text-align: left;
}

.lag-cta__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lag-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.lag-cta__orb--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: rgba(254, 148, 2, .2);
}

.lag-cta__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -80px;
  background: rgba(205, 53, 118, .2);
}

.lag-cta__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.lag-cta__text {
  max-width: 680px;
}

.lag-cta__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.lag-cta__tag i {
  animation: lagPulseIcon 2s infinite ease-in-out;
  color: #ffffff;
}

@keyframes lagPulseIcon {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.8;
  }
}

.lag-cta__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 10px;
}

.lag-cta__sub {
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  margin-bottom: 0;
}

.lag-cta__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lag-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.lag-cta__btn--primary {
  background: #ffffff;
  color: #0A1628;
}

.lag-cta__btn--primary:hover {
  transform: translateY(-3px);
}

.lag-cta__btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .9);
  color: #ffffff;
}

.lag-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-3px);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lag-gal__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .lag-hero2__pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .lag-hero2 {
    padding: 140px 0 80px;
    min-height: auto;
  }

  .lag-gal {
    padding: 90px 0;
  }

  .lag-gal__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .lag-gal__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .lag-gal__item--wide {
    grid-column: span 1;
  }

  .lag-gal__item--tall {
    grid-row: span 1;
  }

  .lag-cta {
    padding: 90px 0;
  }

  .lag-cta__body {
    padding: 45px 24px;
    border-radius: 24px;
  }
}

@media (max-width: 600px) {
  .lag-hero2__scroll {
    display: none;
  }

  .lag-lb__nav {
    display: none;
  }

  .lag-hero2__pills {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .lag-cta__btns {
    flex-direction: column;
    align-items: stretch;
    max-width: 300px;
    margin: 0 auto;
  }

  .lag-filter {
    width: 100%;
    flex-direction: column;
    border-radius: 16px;
    padding: 8px;
  }

  .lag-filter__btn {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .lag-gal__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .lag-gal__item--wide,
  .lag-gal__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}