@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&display=swap');

:root {
  --cyan: #0080BF;
  --cyan-deep: #019EE1;
  --gold: #D1AE6C;
  --charcoal: #292D31;
  --taupe: #896C4D;
  --ivory: #E3CFAA;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box
}

@font-face {
  font-family: 'Demarus';
  src: url('../fonts/Woodstamp.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Demarus', sans-serif !important;
}

p, a {
    font-weight: 300 !important;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0.3px;
}

/* 
strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 2px;
} */

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Barlow Condensed', sans-serif;
  /* font-family: Arial, Helvetica, sans-serif */
}

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

button,
input,
select,
textarea {
  font: inherit
}

.top-strip {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  padding: 9px 14px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 1.8px
}

.site-header {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  border-bottom: 5px solid var(--charcoal);
  background: var(--ivory);
  position: relative;
  z-index: 10
}

.brand img {
  width: 180px;
  height: 86px;
  object-fit: contain
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .8px
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 3px solid transparent
}

.main-nav a:hover {
  border-color: var(--cyan)
}

.cart-link {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 12px 16px !important;
  border: 2px solid var(--charcoal) !important
}

.cart-link span {
  display: inline-grid;
  place-items: center;
  background: var(--gold);
  color: var(--charcoal);
  width: 23px;
  height: 23px;
  margin-left: 6px;
  border-radius: 50%
}

.menu-toggle {
  display: none;
  background: var(--charcoal);
  color: var(--ivory);
  border: 0;
  padding: 12px;
  font-weight: 900
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 650px;
  border-bottom: 8px solid var(--charcoal)
}

.hero-copy {
  padding: 64px 7vw;
  background: var(--ivory);
  position: relative
}

.poster-frame:before,
.poster-frame:after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 3px solid var(--charcoal);
  pointer-events: none
}

.poster-frame:after {
  inset: 28px;
  border-width: 1px
}

.eyebrow,
.mini {
  font-size: 12px;
  letter-spacing: 2.4px;
  font-weight: 900;
  color: var(--white)
}

.hero h1,
.page-hero h1,
.product-detail h1 {
  /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
  letter-spacing: 2px;
  line-height: .82;
  margin: 25px 0;
  font-size: clamp(62px, 8vw, 130px)
}

.hero h1 span {
  color: var(--cyan)
}

.hero-kicker {
  font-weight: 900;
  letter-spacing: 5px;
  color: var(--charcoal);
  border-top: 6px solid var(--charcoal);
  border-bottom: 6px solid var(--charcoal);
  padding: 12px 0
}

.hero-copy>p {
  max-width: 650px;
  font-weight: 700;
  line-height: 1.7
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px
}

.btn {
  display: inline-block;
  background: var(--cyan);
  color: var(--ivory);
  border: 3px solid var(--charcoal);
  box-shadow: 5px 5px 0 var(--charcoal);
  padding: 15px 22px;
  font-weight: 950;
  letter-spacing: 1px;
  cursor: pointer
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--charcoal)
}

.btn-light {
  background: var(--gold);
  color: var(--charcoal)
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--cyan);
  border-left: 8px solid var(--charcoal)
}

.burst {
  width: 85%;
  aspect-ratio: 1;
  background: repeating-conic-gradient(var(--gold) 0 5deg, transparent 5deg 11deg);
  border-radius: 50%;
  position: absolute
}

.versus-card {
  z-index: 2;
  background: var(--charcoal);
  color: var(--ivory);
  border: 8px solid var(--gold);
  padding: 34px 28px;
  transform: rotate(-0deg);
  box-shadow: 12px 12px 0 rgba(41, 45, 49, .45);
  display: flex;
  align-items: center;
  gap: 20px;
  /* font-family: Impact, sans-serif; */
  font-size: clamp(28px, 4vw, 62px)
}

.versus-card b {
  color: var(--gold);
  font-size: 1.3em
}

.ticker {
  display: flex;
  gap: 30px;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  background: var(--charcoal);
  color: var(--ivory);
  /* font-family: Impact, sans-serif; */
  font-size: 26px;
  letter-spacing: 2px;
  justify-content: center
}

.ticker i {
  color: var(--gold);
  font-style: normal
}

.section {
  padding: 75px 5vw
}

.section-heading {
  /* display: flex;
  align-items: end;
  justify-content: space-between; */
  border-bottom: 6px solid var(--charcoal);
  padding-bottom: 16px;
  margin-bottom: 30px
}

.section-heading h2,
.story-copy h2 {
  /* font-family: Impact, sans-serif; */
  font-size: clamp(42px, 6vw, 82px);
  margin: 5px 0 0;
  line-height: .95;
  letter-spacing: 1px
}

.section-heading>a {
  font-weight: 900;
  color: var(--cyan)
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.product-card {
  border: 4px solid var(--charcoal);
  background: var(--ivory);
  box-shadow: 7px 7px 0 var(--charcoal)
}

.product-image {
  height: 460px;
  display: grid;
  place-items: center;
  position: relative;
  border-bottom: 4px solid var(--charcoal);
  overflow: hidden
}

.tone-gold {
  background: var(--gold)
}

.tone-cyan {
  background: var(--cyan)
}

.tone-taupe {
  background: var(--taupe)
}

.tone-charcoal {
  background: var(--charcoal)
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ivory);
  color: var(--charcoal);
  border: 3px solid var(--charcoal);
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1px;
  z-index: 3
}

.mask-icon {
  width: 190px;
  height: 230px;
  background: var(--ivory);
  border: 10px solid var(--charcoal);
  border-radius: 48% 48% 38% 38%/42% 42% 55% 55%;
  position: relative;
  clip-path: polygon(12% 0, 35% 10%, 50% 0, 65% 10%, 88% 0, 100% 32%, 91% 72%, 72% 100%, 50% 88%, 28% 100%, 9% 72%, 0 32%)
}

.mask-icon:before,
.mask-icon:after {
  content: "";
  position: absolute;
  top: 72px;
  width: 58px;
  height: 35px;
  background: var(--charcoal);
  border-radius: 60% 20% 55% 30%
}

.mask-icon:before {
  left: 20px;
  transform: rotate(14deg)
}

.mask-icon:after {
  right: 20px;
  transform: rotate(-14deg)
}

.mask-icon span {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 70px;
  height: 36px;
  border: 8px solid var(--charcoal);
  border-radius: 50%
}

.tone-charcoal .mask-icon {
  background: var(--gold);
  border-color: var(--ivory)
}

.product-info {
  padding: 18px
}

.product-info small,
.cart-meta small {
  font-weight: 900;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px
}

.product-info h3 {
  min-height: 48px;
  margin: 7px 0 16px;
  font-size: 42px !important;
}

.product-info a {
  min-height: 48px;
  margin: 7px 0 16px;
  font-size: 42px !important;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  border-top: 2px solid var(--charcoal);
  padding-top: 14px; 
  font-size: 28px !important;
}

.text-button {
  border: 0;
  background: none;
  color: var(--cyan);
  font-weight: 950;
  cursor: pointer
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 8px solid var(--charcoal);
  border-bottom: 8px solid var(--charcoal)
}

.story-poster {
  background: var(--gold);
  padding: 50px;
  display: grid;
  text-align: center;
  place-items: center;
  border-right: 8px solid var(--charcoal);
  min-height: 610px
}

.story-poster>span,
.story-poster>p {
  font-weight: 950;
  letter-spacing: 3px;
  border-top: 4px solid var(--charcoal);
  border-bottom: 4px solid var(--charcoal);
  padding: 10px;
  width: 100%
}

.story-poster h2 {
  /* font-family: Impact, sans-serif; */
  font-size: 70px;
  line-height: .9;
  margin: 20px 0
}

.story-mask {
  background: var(--cyan);
  width: 280px;
  height: 280px;
  border: 8px solid var(--charcoal);
  display: grid;
  place-items: center;
  transform: rotate(2deg)
}

.mask-icon.big {
  width: 200px;
  height: 240px
}

.story-copy {
  padding: 70px;
  background: var(--taupe);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start
}

.story-copy p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  max-width: 700px
}

.marquee-panel {
  margin: 70px 5vw;
  background: var(--charcoal);
  color: var(--ivory);
  border: 8px solid var(--gold);
  outline: 5px solid var(--charcoal);
  padding: 35px;
  text-align: center
}

.marquee-title {
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 950
}

.marquee-match {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  /* font-family: Impact, sans-serif; */
  font-family: 'Demarus', sans-serif;
  font-size: clamp(45px, 7vw, 105px);
  line-height: 1;
  margin: 20px 0
}

.marquee-match span {
  color: var(--gold)
}

.marquee-panel p {
  letter-spacing: 4px;
  font-weight: 900
}

.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 50px 5vw;
  border-top: 8px solid var(--gold)
}

.footer-logo {
  width: 160px;
  height: 80px;
  object-fit: contain
}

.site-footer div {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.site-footer strong {
  color: var(--gold);
  letter-spacing: 2px
}

.site-footer p {
  margin: 0;
  line-height: 1.5
}

.page-hero {
  padding: 75px 5vw;
  background: var(--cyan);
  border-bottom: 8px solid var(--charcoal)
}

.page-hero h1 {
  margin-bottom: 10px
}

.page-hero p {
  font-weight: 800;
  font-size: 19px
}

.page-hero.compact {
  padding-top: 45px;
  padding-bottom: 45px
}

.page-hero.compact h1 {
  font-size: clamp(60px, 8vw, 100px)
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px
}

.filter {
  background: var(--ivory);
  border: 3px solid var(--charcoal);
  padding: 11px 15px;
  font-weight: 950;
  cursor: pointer
}

.filter.active,
.filter:hover {
  background: var(--gold)
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
  border-bottom: 8px solid var(--charcoal)
}

.product-image-large {
  height: auto;
  min-height: 650px;
  border-right: 8px solid var(--charcoal)
}

.product-detail-copy {
  padding: 70px 7vw
}

.product-detail h1 {
  font-size: clamp(54px, 7vw, 105px)
}

.detail-price {
  /* font-family: Impact, sans-serif; */
  font-size: 42px;
  color: var(--cyan)
}

.product-detail-copy>p {
  font-size: 19px;
  line-height: 1.7;
  font-weight: 700
}

.detail-specs {
  border-top: 4px solid var(--charcoal);
  border-bottom: 4px solid var(--charcoal);
  margin: 25px 0
}

.detail-specs div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--charcoal)
}

.detail-specs div:last-child {
  border-bottom: 0
}

.buy-form {
  display: flex;
  gap: 16px;
  align-items: end;
  flex-wrap: wrap
}

.buy-form label {
  font-weight: 950;
  display: flex;
  flex-direction: column;
  gap: 7px
}

.buy-form select {
  padding: 13px;
  border: 3px solid var(--charcoal);
  background: var(--ivory)
}

.cart-wrap {
  padding: 60px 5vw;
  display: grid;
  grid-template-columns: 1.6fr .7fr;
  gap: 35px;
  align-items: start
}

.cart-list {
  border-top: 5px solid var(--charcoal)
}

.cart-item {
  display: grid;
  grid-template-columns: 110px 1fr auto auto auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 3px solid var(--charcoal)
}

.cart-thumb {
  height: 110px;
  display: grid;
  place-items: center;
  border: 3px solid var(--charcoal)
}

.mask-icon.small {
  width: 65px;
  height: 82px;
  border-width: 5px
}

.mask-icon.small:before,
.mask-icon.small:after {
  top: 26px;
  width: 18px;
  height: 12px
}

.mask-icon.small:before {
  left: 8px
}

.mask-icon.small:after {
  right: 8px
}

.mask-icon.small span {
  bottom: 13px;
  width: 25px;
  height: 14px;
  border-width: 3px
}

.cart-meta h3 {
  margin: 4px 0 8px
}

.qty-form {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.qty-form input {
  width: 75px;
  padding: 8px;
  border: 2px solid var(--charcoal);
  background: var(--ivory)
}

.qty-form button,
.remove-btn {
  border: 0;
  background: none;
  font-weight: 950;
  cursor: pointer
}

.cart-subtotal {
  /* font-family: Impact, sans-serif; */
  font-size: 25px
}

.remove-btn {
  font-size: 30px
}

.cart-summary,
.order-card {
  background: var(--gold);
  border: 5px solid var(--charcoal);
  box-shadow: 8px 8px 0 var(--charcoal);
  padding: 25px
}

.cart-summary>div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 2px solid var(--charcoal)
}

.grand-total {
  font-size: 20px
}

.cart-summary .btn {
  margin-top: 22px;
  width: 100%;
  text-align: center
}

.empty-cart,
.success-poster {
  padding: 60px;
  text-align: center;
  border: 5px solid var(--charcoal);
  background: var(--gold);
  grid-column: 1/-1
}

.empty-cart h2,
.success-poster h2 {
  /* font-family: Impact, sans-serif; */
  font-size: 56px;
  margin: 0 0 15px
}

.checkout {
  padding: 60px 5vw
}

.checkout-form {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  align-items: start
}

.checkout-form>div:first-child {
  display: grid;
  gap: 14px
}

.checkout-form label {
  font-weight: 950;
  display: grid;
  gap: 7px
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 3px solid var(--charcoal);
  padding: 13px;
  background: var(--ivory)
}

.checkout-form textarea {
  min-height: 120px;
  resize: vertical
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px
}

.order-card h2 {
  /* font-family: Impact, sans-serif; */
  font-size: 50px;
  margin: 10px 0
}

.order-card p {
  font-weight: 700;
  line-height: 1.6
}

@media(max-width:1050px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .main-nav {
    gap: 14px
  }
}

@media(max-width:820px) {
  .site-header {
    min-height: 90px
  }

  .brand img {
    width: 125px;
    height: 60px
  }

  .menu-toggle {
    display: block
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    padding: 20px 5vw;
    border-bottom: 5px solid var(--charcoal);
    flex-direction: column;
    align-items: flex-start
  }

  .main-nav.open {
    display: flex
  }

  .hero,
  .split-story,
  .product-detail,
  .cart-wrap,
  .checkout-form {
    grid-template-columns: 1fr
  }

  .hero-art {
    min-height: 430px;
    border-left: 0;
    border-top: 8px solid var(--charcoal)
  }

  .story-poster {
    border-right: 0;
    border-bottom: 8px solid var(--charcoal)
  }

  .product-image-large {
    min-height: 500px;
    border-right: 0;
    border-bottom: 8px solid var(--charcoal)
  }

  .site-footer {
    grid-template-columns: 1fr
  }

  .cart-item {
    grid-template-columns: 90px 1fr auto
  }

  .qty-form,
  .cart-subtotal {
    grid-column: 2
  }

  .remove-btn {
    grid-column: 3;
    grid-row: 1
  }
}

@media(max-width:560px) {
  .product-grid {
    grid-template-columns: 1fr
  }

  .hero-copy {
    padding: 55px 9vw
  }

  .poster-frame:before {
    inset: 12px
  }

  .poster-frame:after {
    inset: 18px
  }

  .hero h1 {
    font-size: 64px
  }

  .product-image {
    height: 460px !important;
  }

  .section {
    padding: 55px 5vw
  }

  .section-heading {
    /* align-items: flex-start;
    flex-direction: column; */
    gap: 12px
  }

  .story-poster,
  .story-copy {
    padding: 35px 22px
  }

  .story-poster h2 {
    font-size: 54px
  }

  .story-mask {
    width: 230px;
    height: 230px
  }

  .marquee-match {
    gap: 12px;
    flex-direction: column
  }

  .two-cols {
    grid-template-columns: 1fr
  }
}


/* SEO / sales content */
.seo-lead {
  max-width: 980px;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 700
}

.seo-punch {
  display: block;
  margin: 24px 0;
  letter-spacing: 2px;
  border-left: 8px solid var(--cyan);
  padding: 12px 18px
}

.identity-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 8px solid var(--charcoal);
  border-bottom: 8px solid var(--charcoal)
}

.identity-title {
  background: var(--cyan);
  padding: 65px 6vw;
  border-right: 8px solid var(--charcoal)
}

.identity-title h2,
.transformation h2,
.find-mask h2,
.gift-collector h2,
.mexico-story h2,
.benefits-strip h2 {
  /* font-family: Impact, sans-serif; */
  line-height: .95;
  letter-spacing: 1px;
  font-size: clamp(42px, 5vw, 76px);
  margin: 12px 0
}

.identity-copy {
  background: var(--gold);
  padding: 65px 6vw;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.seo-card-grid article {
  border: 4px solid var(--charcoal);
  padding: 25px;
  background: var(--ivory);
  box-shadow: 6px 6px 0 var(--charcoal)
}

.seo-card-grid article:nth-child(2) {
  background: var(--cyan-deep)
}

.seo-card-grid article:nth-child(3) {
  background: var(--taupe)
}

.seo-card-grid article:nth-child(4) {
  background: var(--cyan)
}

.seo-card-grid article>span {
  /* font-family: Impact, sans-serif; */
  font-size: 45px
}

.seo-card-grid h3 {
  /* font-family: Impact, sans-serif; */
  font-size: 30px;
  margin: 8px 0
}

.seo-card-grid p {
  font-weight: 700;
  line-height: 1.55
}

.transformation {
  padding: 90px 8vw;
  text-align: center;
  background: var(--charcoal);
  color: var(--ivory);
  border-top: 8px solid var(--gold);
  border-bottom: 8px solid var(--gold)
}

.transformation h2 em {
  color: var(--gold);
  font-style: normal
}

.transformation p {
  max-width: 900px;
  margin: 25px auto;
  font-size: 19px;
  line-height: 1.75;
  font-weight: 700
}

.transformation strong {
  display: block;
  max-width: 950px;
  margin: auto;
  color: var(--gold);
  letter-spacing: 2px
}

.find-mask {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 45px;
  align-items: stretch
}

.find-mask-copy>p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700
}

.use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0
}

.use-list span {
  border: 3px solid var(--charcoal);
  padding: 9px 12px;
  font-weight: 950;
  font-size: 12px
}

.ring-card {
  background: var(--cyan);
  border: 7px solid var(--charcoal);
  box-shadow: 10px 10px 0 var(--gold);
  padding: 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.ring-card h3 {
  /* font-family: Impact, sans-serif; */
  font-size: 55px;
  line-height: .95;
  margin: 20px 0
}

.ring-card b {
  /* font-family: Impact, sans-serif; */
  font-size: 35px;
  color: var(--ivory)
}

.gift-collector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 8px solid var(--charcoal);
  border-bottom: 8px solid var(--charcoal)
}

.gift-collector article {
  padding: 65px 6vw;
  background: var(--gold)
}

.gift-collector article+article {
  background: var(--taupe);
  border-left: 8px solid var(--charcoal)
}

.gift-collector p {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700
}

.gift-collector strong {
  display: block;
  letter-spacing: 1px
}

.mexico-story {
  text-align: center;
  max-width: 1100px;
  margin: auto
}

.mexico-story>p {
  font-size: 19px;
  line-height: 1.75;
  font-weight: 700
}

.poster-lines {
  border-top: 5px solid var(--charcoal);
  border-bottom: 5px solid var(--charcoal);
  padding: 12px;
  margin-bottom: 35px;
  font-weight: 950;
  letter-spacing: 3px;
  color: var(--cyan)
}

.mexico-story blockquote {
  /* font-family: Impact, sans-serif; */
  font-family: 'Demarus', sans-serif;
  font-size: clamp(36px, 5vw, 70px);
  margin: 35px 0 0;
  color: var(--cyan)
}

.benefits-strip {
  text-align: center;
  padding: 65px 5vw;
  background: var(--gold);
  border-top: 8px solid var(--charcoal)
}

.benefits-strip>div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 25px auto 32px;
  font-weight: 950
}

@media(max-width:900px) {
  .seo-card-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .identity-panel,
  .find-mask,
  .gift-collector {
    grid-template-columns: 1fr
  }

  .identity-title {
    border-right: 0;
    border-bottom: 8px solid var(--charcoal)
  }

  .gift-collector article+article {
    border-left: 0;
    border-top: 8px solid var(--charcoal)
  }
}

@media(max-width:560px) {
  .seo-card-grid {
    grid-template-columns: 1fr
  }

  .identity-title,
  .identity-copy,
  .gift-collector article {
    padding: 45px 6vw
  }
}

.product-image-container img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents tiny baseline alignment gaps */
}

.versus-card img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents tiny baseline alignment gaps */
}