.lgfs-section,
.lgfs-section * {
  box-sizing: border-box;
}

.lgfs-section {
  --lgfs-black: #0b0b0b;
  --lgfs-white: #fff;
  --lgfs-paper: #f3f0eb;
  position: relative;
  width: auto;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: clamp(58px, 6vw, 106px) clamp(18px, 3vw, 46px);
  overflow: hidden;
  color: var(--lgfs-black);
  background: var(--lgfs-white);
}

.lgfs-inner {
  width: min(100%, 1480px);
  margin: 0 auto;
}

.lgfs-header {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 56px);
}

.lgfs-kicker {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.lgfs-section .lgfs-title {
  max-width: 1000px;
  margin: 0 !important;
  color: var(--lgfs-black) !important;
  font-family: inherit !important;
  font-size: clamp(44px, 6.2vw, 100px) !important;
  font-weight: 800 !important;
  line-height: .9 !important;
  letter-spacing: -.055em !important;
  text-transform: uppercase;
}

.lgfs-copy {
  max-width: 480px;
  margin: 0 0 24px;
  color: rgba(11, 11, 11, .72);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

.lgfs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid var(--lgfs-black);
  color: var(--lgfs-black) !important;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.lgfs-button:hover {
  color: var(--lgfs-white) !important;
  background: var(--lgfs-black);
  transform: translateY(-2px);
}

.lgfs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
  height: clamp(650px, 55vw, 860px);
}

.lgfs-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 0;
  overflow: hidden;
  color: var(--lgfs-white) !important;
  background: var(--lgfs-paper);
  text-decoration: none !important;
}

.lgfs-card--hero {
  grid-row: 1 / 3;
}

.lgfs-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--lgfs-position, 50% 50%);
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .45s ease;
}

.lgfs-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, .025) 28%, rgba(0, 0, 0, .7) 100%);
  pointer-events: none;
  transition: opacity .3s ease;
}

.lgfs-card:hover .lgfs-image {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.lgfs-card:hover::after {
  opacity: .92;
}

.lgfs-card-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(22px, 3vw, 44px);
}

.lgfs-card-kicker {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.lgfs-section .lgfs-card-title {
  max-width: 760px;
  margin: 0 0 18px !important;
  color: var(--lgfs-white) !important;
  font-family: inherit !important;
  font-size: clamp(28px, 3.25vw, 56px) !important;
  font-weight: 700 !important;
  line-height: .98 !important;
  letter-spacing: -.04em !important;
  text-transform: uppercase;
}

.lgfs-section .lgfs-card:not(.lgfs-card--hero) .lgfs-card-title {
  max-width: 460px;
  font-size: clamp(23px, 2.15vw, 34px) !important;
}

.lgfs-card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .85);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lgfs-card-link span {
  transition: transform .25s ease;
}

.lgfs-card:hover .lgfs-card-link span {
  transform: translateX(4px);
}

.lgfs-card:focus-visible,
.lgfs-button:focus-visible {
  outline: 3px solid #d9bca8;
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .lgfs-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lgfs-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .lgfs-card--hero {
    grid-row: auto;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .lgfs-card:not(.lgfs-card--hero) {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 680px) {
  .lgfs-section {
    margin-right: 0;
    margin-left: 0;
    padding: 48px 14px 58px;
  }

  .lgfs-header {
    gap: 22px;
    margin-bottom: 28px;
  }

  .lgfs-section .lgfs-title {
    font-size: clamp(40px, 13.5vw, 62px) !important;
    line-height: .92 !important;
  }

  .lgfs-copy {
    font-size: 15px;
  }

  .lgfs-button {
    width: 100%;
  }

  .lgfs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lgfs-card--hero,
  .lgfs-card:not(.lgfs-card--hero) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .lgfs-card-content {
    padding: 24px 20px;
  }

  .lgfs-section .lgfs-card-title,
  .lgfs-section .lgfs-card:not(.lgfs-card--hero) .lgfs-card-title {
    font-size: clamp(26px, 8.5vw, 38px) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lgfs-image,
  .lgfs-button,
  .lgfs-card-link span {
    transition: none;
  }
}
