
.smith-moda-gateway {
  --smg-green: #0f3328;
  --smg-gold: #a8843a;
  --smg-cream: #f6f0e6;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 48px clamp(18px, 5vw, 74px) 72px;
  background: var(--smg-cream);
  box-sizing: border-box;
  overflow: hidden;
}

.smith-moda-gateway__header {
  text-align: center;
  margin: 0 auto 38px;
}

.smith-moda-gateway__ornament {
  display: block;
  width: 116px;
  height: 22px;
  margin: 0 auto 12px;
  position: relative;
  background:
    radial-gradient(circle at center, var(--smg-cream) 0 7px, transparent 8px),
    radial-gradient(circle at center, var(--smg-gold) 0 8px, transparent 9px);
}

.smith-moda-gateway__ornament::before,
.smith-moda-gateway__ornament::after {
  content: "";
  position: absolute;
  top: 10px;
  width: 45px;
  height: 1px;
  background: rgba(168,132,58,.76);
}

.smith-moda-gateway__ornament::before { left: 0; }
.smith-moda-gateway__ornament::after { right: 0; }

.smith-moda-gateway__logo {
  display: block;
  width: min(390px, 72vw);
  height: auto;
  margin: 0 auto 18px;
  mix-blend-mode: multiply;
}

.smith-moda-gateway__intro {
  max-width: 700px;
  margin: 0 auto;
  color: #24322e;
  font-size: clamp(16px, 1.65vw, 22px);
  line-height: 1.45;
}

.smith-moda-gateway__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin: 0 auto 34px;
}

.smith-moda-gateway__card {
  position: relative;
  display: block;
  min-height: 360px;
  border-radius: 7px;
  overflow: hidden;
  background: #d7d0c5;
  box-shadow: 0 10px 25px rgba(31,38,34,.13);
  text-decoration: none !important;
  transform: translateY(0) scale(1);
  transition: transform .28s ease, box-shadow .28s ease;
}

.smith-moda-gateway__card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smith-moda-gateway__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,19,15,.20), rgba(8,19,15,.68));
}

.smith-moda-gateway__icon {
  position: absolute;
  top: 25px;
  left: 50%;
  width: 82px;
  height: 82px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #07392f;
  border: 2px solid var(--smg-gold);
  z-index: 2;
}

.smith-moda-gateway__icon svg {
  width: 49px;
  height: 49px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smith-moda-gateway__copy {
  position: absolute;
  top: 134px;
  left: 34px;
  right: 34px;
  z-index: 2;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.55);
}

.smith-moda-gateway__copy strong {
  display: block;
  margin: 0 0 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.55vw, 44px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.smith-moda-gateway__copy span {
  display: block;
  font-size: clamp(16px, 1.42vw, 22px);
  line-height: 1.4;
  font-weight: 500;
}

.smith-moda-gateway__arrow {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 58px;
  height: 58px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--smg-gold);
  color: var(--smg-gold);
  font: 400 34px/1 Arial, sans-serif;
  z-index: 2;
  transition: transform .28s ease, box-shadow .28s ease;
}

.smith-moda-gateway__card:hover,
.smith-moda-gateway__card:focus-visible {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 18px 34px rgba(15,51,40,.24);
  outline: none;
}

.smith-moda-gateway__card:hover .smith-moda-gateway__arrow,
.smith-moda-gateway__card:focus-visible .smith-moda-gateway__arrow {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 0 0 10px rgba(168,132,58,.13);
}

.smith-moda-gateway__cta {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  line-height: 0;
  box-shadow: 0 10px 24px rgba(31,38,34,.10);
}

.smith-moda-gateway__cta-image {
  display: block;
  width: 100%;
  height: auto;
}

.smith-moda-gateway__cta-link {
  position: absolute;
  left: 22%;
  top: 53%;
  width: 31%;
  height: 35%;
  z-index: 2;
  border-radius: 5px;
  transition: transform .24s ease, filter .24s ease;
}

.smith-moda-gateway__cta-link:hover,
.smith-moda-gateway__cta-link:focus-visible {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.05);
  outline: none;
}

@media (max-width: 767px) {
  .smith-moda-gateway {
    padding: 38px 14px 46px;
  }

  .smith-moda-gateway__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .smith-moda-gateway__card {
    min-height: 335px;
  }

  .smith-moda-gateway__copy {
    top: 130px;
    left: 22px;
    right: 22px;
  }

  .smith-moda-gateway__cta-link {
    left: 20%;
    top: 51%;
    width: 36%;
    height: 39%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .smith-moda-gateway__card,
  .smith-moda-gateway__arrow,
  .smith-moda-gateway__cta-link {
    transition: none;
  }

  .smith-moda-gateway__card:hover,
  .smith-moda-gateway__card:focus-visible,
  .smith-moda-gateway__cta-link:hover,
  .smith-moda-gateway__cta-link:focus-visible {
    transform: none;
  }
}
