:root {
  --black: #070707;
  --off-white: #f5f4f2;
  --white: #fff;
  --aqua: #078eb6;
  --gold: #e5a00b;
  --line: #d7d5d2;
  --header-height: 56px;
  --page-pad: clamp(24px, 5.2vw, 80px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--off-white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  color: #fff;
  background: var(--black);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 198px;
  height: 50px;
  color: #fff;
  white-space: nowrap;
}

.brand img {
  width: 41px;
  margin-right: 4px;
}

.brand-rise,
.brand-together {
  display: inline-block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-style: italic;
  line-height: 1;
  letter-spacing: -2px;
  transform: rotate(-6deg);
}

.brand-rise {
  margin-top: -4px;
  color: var(--aqua);
  font-size: 36px;
  font-weight: 700;
}

.brand-together {
  margin: 8px 0 0 -5px;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
}

.brand-dash {
  position: absolute;
  right: 2px;
  bottom: 6px;
  width: 28px;
  height: 3px;
  background: var(--gold);
  transform: rotate(-8deg) skewX(-20deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 46px;
}

.desktop-nav a {
  position: relative;
  padding: 20px 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 13px;
  left: 0;
  height: 2px;
  background: var(--aqua);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.icon-button,
.menu-button {
  position: relative;
  display: grid;
  width: 30px;
  height: 42px;
  padding: 0;
  border: 0;
  place-items: center;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.bag-button span {
  position: absolute;
  right: -5px;
  bottom: 8px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  background: var(--aqua);
  font-size: 10px;
  font-weight: 900;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  min-height: 490px;
  grid-template-columns: 37.5% 62.5%;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero-copy {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 57px 34px 46px var(--page-pad);
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.hero-crown {
  width: 158px;
  height: 83px;
  margin: 0 0 4px 36px;
  object-fit: contain;
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #050505;
  font-family: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(58px, 5.05vw, 78px);
  font-weight: 950;
  letter-spacing: -5px;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-strokes {
  display: flex;
  width: 100%;
  margin: 20px 0 29px;
  align-items: center;
}

.brush {
  position: relative;
  display: block;
  height: 17px;
  transform: rotate(-3deg);
  clip-path: polygon(0 42%, 8% 19%, 27% 26%, 49% 5%, 69% 23%, 88% 0, 100% 33%, 95% 58%, 100% 74%, 75% 70%, 55% 90%, 37% 67%, 15% 88%, 2% 72%);
}

.brush-aqua {
  width: min(76%, 340px);
  background: var(--aqua);
}

.brush-gold {
  width: 102px;
  margin-left: 28px;
  background: var(--gold);
  transform: rotate(-4deg) scaleY(0.65);
}

.primary-button,
.small-button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 31px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid var(--black);
  background: var(--black);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.primary-button:hover,
.primary-button:focus-visible,
.small-button:hover,
.small-button:focus-visible {
  color: var(--black);
  background: transparent;
  transform: translateY(-2px);
}

.hero-photo {
  min-width: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 15%),
    url("assets/hero-group.jpg") 49% 47% / cover no-repeat;
}

.drop-section {
  display: grid;
  min-height: 302px;
  padding: 17px 4.45vw 15px var(--page-pad);
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: clamp(26px, 3vw, 52px);
  border-bottom: 1px solid var(--line);
  background: #f7f6f4;
}

.section-marker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.drop-marker {
  padding-top: 25px;
}

.number-wrap {
  position: relative;
}

.section-number {
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 131px;
  font-weight: 900;
  letter-spacing: -8px;
  line-height: 0.8;
}

.marker-slash {
  position: absolute;
  right: -16px;
  bottom: 10px;
  width: 76px;
  height: 9px;
  background: var(--gold);
  clip-path: polygon(0 35%, 25% 10%, 48% 28%, 75% 0, 100% 43%, 83% 70%, 55% 62%, 23% 100%);
  transform: rotate(-8deg);
}

.drop-marker h2 {
  margin: 13px 0 17px;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.6px;
  line-height: 1;
  text-transform: uppercase;
}

.small-button {
  min-height: 40px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.product-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-card {
  min-width: 0;
  background: #fff;
}

.product-image {
  position: relative;
  display: block;
  height: 221px;
  overflow: hidden;
  background: #e6e3e0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0, 1);
}

.product-image--wide img {
  object-position: 78% 38%;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.quick-add {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  padding: 11px;
  color: #fff;
  background: rgba(5, 5, 5, 0.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-card:hover .quick-add,
.product-image:focus-visible .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-meta {
  min-height: 47px;
  padding: 8px 12px 7px;
}

.product-meta h3,
.product-meta p {
  margin: 0;
  text-transform: uppercase;
}

.product-meta h3 {
  overflow: hidden;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-meta p {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 1px;
}

.relief-banner {
  position: relative;
  display: grid;
  height: 94px;
  padding: 0 var(--page-pad);
  grid-template-columns: minmax(260px, 1fr) 94px auto 60px minmax(280px, 1.15fr);
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 142, 182, 0.08), transparent 34%),
    var(--black);
}

.relief-photo {
  position: absolute;
  top: -48px;
  bottom: -48px;
  width: 31%;
  opacity: 0.5;
  filter: grayscale(1) contrast(1.2);
  transition:
    opacity 200ms ease,
    transform 300ms ease;
}

.relief-photo--left {
  left: 0;
  background: url("assets/beach-shorts.jpg") center 63% / 140% auto no-repeat;
  clip-path: polygon(0 24%, 57% 18%, 75% 43%, 83% 70%, 100% 89%, 72% 100%, 38% 79%, 0 73%);
}

.relief-photo--right {
  right: 0;
  background: url("assets/nassau-woman.jpg") center 72% / 110% auto no-repeat;
  clip-path: polygon(15% 34%, 100% 7%, 100% 89%, 77% 80%, 45% 91%, 0 75%);
}

.relief-banner:hover .relief-photo {
  opacity: 0.72;
  transform: scale(1.03);
}

.target-mark {
  position: relative;
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  grid-column: 2;
  place-items: center;
  border: 2px solid var(--aqua);
  border-radius: 50%;
}

.target-mark i {
  position: absolute;
  border: 2px solid var(--aqua);
  border-radius: 50%;
}

.target-mark i:nth-child(1) {
  width: 48px;
  height: 48px;
}

.target-mark i:nth-child(2) {
  width: 27px;
  height: 27px;
}

.target-mark i:nth-child(3) {
  width: 3px;
  height: 3px;
  border: 0;
  background: var(--aqua);
}

.target-mark i:nth-child(4) {
  width: 91px;
  height: 2px;
  border: 0;
  background: rgba(7, 142, 182, 0.48);
  transform: rotate(90deg);
}

.relief-copy {
  position: relative;
  z-index: 2;
  grid-column: 3;
  padding: 0 34px;
  text-align: center;
}

.relief-copy strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.relief-copy em {
  display: block;
  width: 103px;
  height: 7px;
  margin: 13px auto 0;
  background: var(--gold);
  clip-path: polygon(0 35%, 28% 5%, 48% 38%, 77% 0, 100% 42%, 73% 68%, 38% 59%, 8% 100%);
  transform: rotate(-5deg);
}

.relief-arrow {
  position: relative;
  z-index: 2;
  grid-column: 4;
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
}

.purpose-section {
  display: grid;
  min-height: 500px;
  padding: 19px var(--page-pad) 70px;
  grid-template-columns: 205px minmax(330px, 1fr) minmax(420px, 1.16fr);
  gap: 28px;
  background: #f7f6f4;
}

.purpose-marker {
  padding-top: 7px;
}

.purpose-marker .section-number {
  font-size: 124px;
}

.marker-slash--aqua {
  background: var(--aqua);
}

.eyebrow {
  margin: 20px 0 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.purpose-copy {
  padding-top: 26px;
}

.purpose-copy h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(38px, 3.1vw, 50px);
  font-weight: 950;
  letter-spacing: -2.7px;
  line-height: 0.98;
  text-transform: uppercase;
}

.purpose-copy p {
  max-width: 520px;
  margin: 34px 0 28px;
  color: #353535;
  font-size: 17px;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  padding-bottom: 5px;
  gap: 18px;
  border-bottom: 2px solid var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.text-link span {
  color: var(--aqua);
}

.purpose-gallery {
  display: grid;
  height: 395px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.purpose-gallery figure {
  margin: 0;
  overflow: hidden;
}

.purpose-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.purpose-gallery figure:first-child img {
  object-position: 52% 42%;
}

.purpose-gallery figure:last-child img {
  object-position: 50% 34%;
}

.transparency-section {
  display: grid;
  padding: 75px var(--page-pad);
  grid-template-columns: 1fr 0.75fr;
  gap: 8vw;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.94) 0 48%, rgba(0, 0, 0, 0.68) 100%),
    url("assets/hero-group.jpg") center 45% / cover no-repeat;
}

.transparency-section h2 {
  margin: 18px 0 0;
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 950;
  letter-spacing: -4px;
  line-height: 0.91;
  text-transform: uppercase;
}

.transparency-copy {
  align-self: end;
}

.transparency-copy p {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.6;
}

.primary-button--light {
  color: var(--black);
  border-color: #fff;
  background: #fff;
}

.primary-button--light:hover,
.primary-button--light:focus-visible {
  color: #fff;
}

.site-footer {
  display: flex;
  min-height: 116px;
  padding: 20px var(--page-pad);
  align-items: center;
  gap: 36px;
  color: #fff;
  background: #050505;
}

.footer-brand {
  flex: 0 0 185px;
}

.site-footer p {
  margin: 0;
  color: #aaa;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.site-footer p:last-child {
  margin-left: auto;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 23px;
    margin-left: 22px;
  }

  .hero {
    grid-template-columns: 41% 59%;
  }

  .hero-copy {
    padding-left: 5vw;
  }

  .hero h1 {
    font-size: 62px;
  }

  .drop-section {
    grid-template-columns: 220px 1fr;
  }

  .section-number {
    font-size: 110px;
  }

  .product-image {
    height: 205px;
  }

  .relief-banner {
    grid-template-columns: minmax(110px, 1fr) 78px auto 42px minmax(120px, 1fr);
  }

  .relief-copy strong {
    font-size: 17px;
  }

  .purpose-section {
    grid-template-columns: 155px minmax(270px, 0.8fr) minmax(380px, 1.2fr);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  .brand {
    width: 175px;
  }

  .brand img {
    width: 37px;
  }

  .brand-rise {
    font-size: 32px;
  }

  .brand-together {
    font-size: 22px;
  }

  .desktop-nav,
  .search-button,
  .account-button {
    display: none;
  }

  .header-actions {
    gap: 13px;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .menu-button span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: -1;
    display: flex;
    padding: 55px 25px;
    flex-direction: column;
    gap: 4px;
    background: #050505;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 19px 0;
    border-bottom: 1px solid #292929;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
  }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 410px;
    padding: 42px 24px 39px;
  }

  .hero-crown {
    width: 120px;
    height: 68px;
    margin-left: 18px;
  }

  .hero h1 {
    font-size: clamp(57px, 17vw, 88px);
    letter-spacing: -4px;
  }

  .hero-strokes {
    max-width: 520px;
    margin: 21px 0 25px;
  }

  .hero-photo {
    min-height: 58vw;
    background-position: 49% 47%;
  }

  .drop-section {
    display: block;
    padding: 36px 0 44px;
  }

  .drop-marker {
    display: grid;
    padding: 0 24px 28px;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 20px;
  }

  .drop-marker h2 {
    margin: 0 0 8px;
  }

  .drop-marker .small-button {
    margin-bottom: 0;
  }

  .section-number {
    font-size: 94px;
  }

  .product-grid {
    display: flex;
    padding: 0 24px 8px;
    gap: 12px;
    overflow-x: auto;
    scroll-padding-left: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    width: min(71vw, 310px);
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .product-image {
    height: min(72vw, 315px);
  }

  .quick-add {
    display: none;
  }

  .relief-banner {
    height: 140px;
    padding: 0 24px;
    grid-template-columns: 64px 1fr 26px;
    gap: 15px;
  }

  .relief-photo {
    width: 44%;
    opacity: 0.22;
  }

  .target-mark {
    width: 60px;
    height: 60px;
    grid-column: 1;
  }

  .target-mark i:nth-child(1) {
    width: 41px;
    height: 41px;
  }

  .target-mark i:nth-child(2) {
    width: 22px;
    height: 22px;
  }

  .relief-copy {
    grid-column: 2;
    padding: 0;
    text-align: left;
  }

  .relief-copy strong {
    font-size: clamp(15px, 4.2vw, 21px);
    line-height: 1.25;
    white-space: normal;
  }

  .relief-copy em {
    margin-right: 0;
    margin-left: 0;
  }

  .relief-arrow {
    grid-column: 3;
  }

  .purpose-section {
    padding: 36px 24px 52px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .purpose-marker {
    display: flex;
    padding: 0;
    flex-direction: row;
    align-items: end;
    gap: 22px;
  }

  .purpose-marker .section-number {
    font-size: 94px;
  }

  .purpose-marker .eyebrow {
    margin-bottom: 8px;
  }

  .purpose-copy {
    padding-top: 0;
  }

  .purpose-copy h2 {
    font-size: clamp(39px, 11.5vw, 64px);
  }

  .purpose-copy p {
    margin: 24px 0;
  }

  .purpose-gallery {
    height: 70vw;
    max-height: 560px;
  }

  .transparency-section {
    padding: 62px 24px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .transparency-section h2 {
    font-size: clamp(46px, 12.7vw, 73px);
  }

  .site-footer {
    padding: 28px 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 163px;
  }

  .brand img {
    width: 34px;
  }

  .brand-rise {
    font-size: 30px;
  }

  .brand-together {
    font-size: 20px;
  }

  .bag-button {
    display: none;
  }

  .hero-copy {
    min-height: 385px;
  }

  .hero h1 {
    font-size: 59px;
  }

  .hero-photo {
    min-height: 72vw;
  }

  .primary-button {
    min-height: 50px;
    padding: 0 25px;
    font-size: 13px;
  }

  .drop-marker {
    grid-template-columns: auto 1fr;
  }

  .drop-marker .small-button {
    display: none;
  }

  .drop-marker h2 {
    font-size: 24px;
  }

  .product-card {
    width: 73vw;
  }

  .purpose-gallery {
    height: auto;
    grid-template-columns: 1fr;
  }

  .purpose-gallery figure {
    height: 108vw;
    max-height: 520px;
  }

  .purpose-gallery figure:last-child {
    display: none;
  }

  .site-footer {
    display: block;
  }

  .site-footer p {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mock-fidelity artwork and desktop geometry. */
.site-header .brand .brand-lockup {
  display: block;
  width: 195px;
  height: 50px;
  margin: 0;
  object-fit: cover;
  object-position: center;
}

.site-header .brand > :not(.brand-lockup) {
  display: none;
}

@media (min-width: 921px) {
  .hero {
    height: 491px;
    min-height: 491px;
    grid-template-columns: 37.5% 62.5%;
  }

  .hero-copy {
    z-index: 2;
    overflow: visible;
    padding-top: 52px;
  }

  .hero-crown {
    width: 150px;
    height: 95px;
    margin: 0 0 2px 29px;
    object-fit: cover;
  }

  .hero h1 {
    width: 570px;
    font-size: 100px;
    letter-spacing: -8px;
    line-height: .83;
  }

  .hero-strokes {
    margin-top: 18px;
    margin-bottom: 28px;
  }

  .hero-photo {
    background: url("assets/hero-composite.png") center / 100% 100% no-repeat;
  }

  .drop-section {
    height: 302px;
    min-height: 302px;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 52px;
  }

  .product-image img {
    object-fit: fill;
    object-position: center;
  }

  .relief-banner {
    display: block;
    height: 93px;
    padding: 0;
    background: url("assets/bimini-strip.png") center / 100% 100% no-repeat;
  }

  .relief-banner > * {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 920px) {
  .site-header .brand .brand-lockup {
    width: 164px;
    height: 44px;
    object-fit: contain;
  }
}

/* Exact 1536px desktop treatment derived from the approved composition. */
@media (min-width: 1500px) {
  .site-header {
    background: var(--black) url("assets/header-desktop.png") center / 100% 56px no-repeat;
  }

  .site-header > * {
    opacity: 0;
  }

  .hero {
    grid-template-columns: 575px minmax(0, 1fr);
  }

  .hero-copy {
    padding: 0;
    overflow: hidden;
    background: #fff url("assets/hero-left.png") left top / 575px 491px no-repeat;
  }

  .hero-crown,
  .hero h1,
  .hero-strokes {
    opacity: 0;
  }

  .hero-copy .primary-button {
    position: absolute;
    top: 391px;
    left: 80px;
    width: 223px;
    min-height: 55px;
    padding: 0;
    border: 0;
    opacity: 0;
  }

  .drop-section {
    position: relative;
    padding-top: 18px;
    background-color: #f7f6f4;
    background-image: url("assets/drop-left.png");
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 392px 302px;
  }

  .drop-marker > * {
    opacity: 0;
  }

  .product-image {
    height: 222px;
  }

  .purpose-section {
    padding-right: 66px;
    padding-left: 80px;
    grid-template-columns: 205px 25px 598px 28px 534px;
    gap: 0;
  }

  .purpose-marker { grid-column: 1; }
  .purpose-copy { grid-column: 3; }

  .purpose-gallery {
    position: relative;
    grid-column: 5;
  }

  .purpose-gallery::after {
    position: absolute;
    inset: 0 0 auto;
    height: 63px;
    content: "";
    background: url("assets/purpose-gallery-top.png") left top / 534px 63px no-repeat;
    pointer-events: none;
  }
}
