:root {
  --ink: #0d0d0d;
  --paper: #f8f7f5;
  --white: #fff;
  --aqua: #dff2f1;
  --aqua-deep: #0c8395;
  --gold: #f0a510;
  --line: #d9d8d5;
  --content: 1352px;
  --condensed: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --body: "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  position: relative;
  z-index: 20;
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header-inner {
  width: calc(100% - 184px);
  max-width: var(--content);
  height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  column-gap: 55px;
  align-items: center;
}

.wordmark {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  width: max-content;
  padding: 2px 0 0;
  transform: rotate(-3deg);
  line-height: 1;
}

.wordmark-crown {
  position: absolute;
  top: -7px;
  left: 28px;
  width: 25px;
  height: 17px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.wordmark-rise,
.wordmark-together,
.footer-wordmark {
  font-family: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.wordmark-rise {
  color: var(--aqua-deep);
  font-size: 38px;
}

.wordmark-together {
  margin-left: -1px;
  font-size: 30px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 51px;
}

.desktop-nav a,
.section-heading a,
.story-copy a {
  font-family: var(--condensed);
  font-size: 15px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0 23px;
}

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

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

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 19px;
}

.icon-button,
.menu-toggle {
  width: 28px;
  height: 34px;
  padding: 5px 2px;
  background: none;
  border: 0;
  cursor: pointer;
}

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

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

.hero {
  display: grid;
  grid-template-columns: 33.5% 66.5%;
  height: 470px;
  background: #f5f4f2;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 26px 30px 12px max(6vw, calc((100vw - var(--content)) / 2 + 10px));
  background: linear-gradient(98deg, #fafafa 1%, #f8f7f5 85%, rgba(248, 247, 245, 0.96));
}

.hero-copy::after {
  position: absolute;
  top: 0;
  right: -52px;
  width: 75px;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #f8f7f5 0%, rgba(248, 247, 245, 0) 100%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--aqua-deep);
  font-family: var(--condensed);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  max-width: 475px;
  margin: 0 0 25px;
  font-family: var(--condensed);
  font-size: clamp(50px, 4.15vw, 67px);
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.01;
  text-transform: uppercase;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 39px;
  border: 1px solid var(--ink);
  font-family: var(--condensed);
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.primary-button {
  min-width: 220px;
  background: var(--ink);
  color: var(--white);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--aqua-deep);
  border-color: var(--aqua-deep);
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  min-width: 0;
  overflow: hidden;
  background: #afd9d5;
}

.hero-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.hero-panel img {
  height: 100%;
  object-fit: cover;
}

.hero-panel-woman {
  border-left: 11px solid #71b4b5;
  clip-path: polygon(5% 0, 100% 0, 93% 100%, 0 100%);
  margin-right: -41px;
}

.hero-panel-woman img {
  object-position: 50% 40%;
  transform: scale(1.045);
}

.hero-panel-man {
  z-index: 0;
}

.hero-panel-man img {
  object-position: 50% 30%;
  transform: scale(1.03);
}

.hero-accent {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-a {
  top: -70px;
  left: 42%;
  width: 120px;
  height: 600px;
  background: rgba(226, 117, 90, 0.36);
  mix-blend-mode: multiply;
  transform: rotate(7deg);
}

.hero-accent-b {
  right: -20px;
  bottom: -80px;
  width: 155px;
  height: 270px;
  background: rgba(242, 171, 135, 0.55);
  transform: skew(-10deg);
}

.hero-stamp {
  position: absolute;
  right: 30px;
  bottom: 12px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--condensed);
  font-size: 34px;
  letter-spacing: 0.08em;
  opacity: 0;
}

.arrivals {
  padding: 20px max(6vw, calc((100vw - var(--content)) / 2)) 26px;
  background: #faf9f7;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 13px;
}

.section-heading h2,
.story-copy h2,
.relief-details h2,
.brand-story h2,
.relief-dialog h2 {
  margin: 0;
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 29px;
}

.section-heading a span,
.story-copy a span {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--body);
  font-size: 22px;
  transition: transform 160ms ease;
}

.section-heading a:hover span,
.story-copy a:hover span {
  transform: translateX(5px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) 315px;
  gap: 14px;
}

.product-card {
  min-width: 0;
  text-align: center;
}

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

.product-image::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(0, 0, 0, 0.02);
  pointer-events: none;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

.product-image-halter img {
  object-position: 79% 48%;
}

.product-image-set img {
  object-position: 50% 62%;
}

.product-image-tee img {
  object-fit: contain;
  padding: 8px;
}

.product-image-tee-dress img {
  object-position: 50% 40%;
}

.product-image-muscle img {
  object-position: 20% 48%;
}

.product-card h3 {
  margin: 8px -8px 1px;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-card p {
  margin: 3px 0 0;
  font-size: 14px;
}

.relief-card {
  min-width: 0;
  height: 254px;
  padding: 17px 24px 15px;
  background:
    radial-gradient(circle at 23% 20%, rgba(255,255,255,.9), transparent 45%),
    linear-gradient(135deg, #e7f5f3, #d5eeed);
  border: 1px solid #4f9aa0;
  text-align: center;
}

.relief-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 3px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.relief-card h3 {
  margin: 0 0 7px;
  font-family: var(--condensed);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.relief-button {
  min-width: 199px;
  height: 34px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  font-family: var(--condensed);
  font-size: 14px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.relief-card > p {
  max-width: 260px;
  margin: 15px auto 1px;
  font-size: 14px;
  line-height: 1.35;
}

.relief-card > a {
  font-size: 13px;
}

.story {
  display: grid;
  grid-template-columns: 454fr 386fr 512fr;
  width: calc(100% - 184px);
  max-width: var(--content);
  min-height: 335px;
  margin: 0 auto 48px;
  overflow: hidden;
  background: var(--white);
}

.architecture-art {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  background: #dfe9e3;
}

.architecture-art::before,
.architecture-art::after {
  position: absolute;
  content: "";
}

.architecture-art::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent 31.5%, rgba(255,255,255,.7) 31.5% 32.3%, transparent 32.3% 64.8%, rgba(255,255,255,.75) 64.8% 65.7%, transparent 65.7%),
    linear-gradient(180deg, rgba(255,255,255,.45), transparent 35%);
  z-index: 2;
}

.architecture-art::after {
  top: 0;
  right: 0;
  left: 0;
  height: 13px;
  background: rgba(255,255,255,.75);
  box-shadow: 0 8px 0 rgba(33, 96, 91, .18);
  z-index: 4;
}

.building {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 19px;
  padding-top: 46px;
  border-right: 5px solid rgba(255, 255, 255, 0.7);
}

.building i {
  position: relative;
  display: block;
  width: 43px;
  height: 154px;
  background: #558e8b;
  border: 8px solid rgba(255,255,255,.72);
  box-shadow: 0 0 0 4px rgba(47, 109, 103, .2), inset 0 0 0 3px rgba(0,0,0,.08);
}

.building i::before,
.building i::after {
  position: absolute;
  top: -5px;
  bottom: -5px;
  width: 13px;
  content: "";
  background: repeating-linear-gradient(180deg, #74aaa5 0 7px, #3d7774 7px 9px);
  border: 1px solid rgba(0,0,0,.12);
}

.building i::before { left: -23px; }
.building i::after { right: -23px; }

.building-a {
  left: 0;
  width: 34%;
  background: #b8d9d1;
}

.building-b {
  left: 34%;
  width: 33%;
  background: #e7b6a8;
}

.building-c {
  right: 0;
  width: 33%;
  background: #e7d7c4;
}

.building-b i {
  background: #87aaa3;
}

.building-c i {
  background: #b6c7c0;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 50px;
  background: #fbfaf8;
}

.story-copy .eyebrow {
  display: none;
}

.story-copy h2 {
  margin-bottom: 13px;
  font-size: 31px;
}

.story-copy p {
  margin: 0 0 9px;
  font-size: 14px;
  line-height: 1.45;
}

.story-copy a {
  margin-top: 12px;
  font-size: 13px;
}

.story-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.story-photo img {
  height: 100%;
  object-fit: cover;
  object-position: 48% 32%;
}

.relief-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 95px max(8vw, calc((100vw - 1180px) / 2));
  background: var(--aqua);
}

.relief-details h2,
.brand-story h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.98;
}

.relief-details p {
  margin: 0 0 25px;
  font-size: 17px;
  line-height: 1.65;
}

.secondary-button {
  min-height: 46px;
  font-size: 16px;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.brand-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 580px;
  background: #121212;
  color: var(--white);
}

.brand-story figure {
  margin: 0;
  min-width: 0;
}

.brand-story img {
  height: 100%;
  object-fit: cover;
}

.brand-story > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.brand-story > div > p:last-child {
  max-width: 390px;
  font-size: 18px;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 40px;
  min-height: 108px;
  padding: 25px max(6vw, calc((100vw - var(--content)) / 2));
  background: #080808;
  color: var(--white);
  border-top: 1px solid #303030;
}

.footer-wordmark {
  color: #f1f1f1;
  font-size: 30px;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.relief-dialog {
  width: min(560px, calc(100% - 36px));
  padding: 48px;
  border: 1px solid #377f84;
  background: #edf9f7;
  box-shadow: 0 20px 100px rgba(0,0,0,.32);
}

.relief-dialog::backdrop {
  background: rgba(0,0,0,.65);
}

.relief-dialog h2 {
  margin-bottom: 22px;
  font-size: 42px;
}

.relief-dialog p {
  font-size: 16px;
  line-height: 1.55;
}

.relief-dialog .primary-button {
  margin-top: 16px;
  font-size: 15px;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 0;
  background: none;
  border: 0;
  font-size: 34px;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--aqua-deep);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .header-inner,
  .story {
    width: calc(100% - 72px);
  }

  .desktop-nav {
    gap: 28px;
  }

  .hero {
    grid-template-columns: 39% 61%;
  }

  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .relief-card {
    grid-column: 1 / -1;
    height: auto;
    min-height: 220px;
  }
}

@media (max-width: 860px) {
  .site-header,
  .header-inner {
    height: 64px;
  }

  .header-inner {
    width: calc(100% - 36px);
    grid-template-columns: 1fr auto;
    column-gap: 0;
  }

  .wordmark-rise { font-size: 33px; }
  .wordmark-together { font-size: 25px; }
  .wordmark-crown { left: 24px; width: 22px; }

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

  .header-actions {
    gap: 12px;
  }

  .menu-toggle {
    position: relative;
    display: block;
  }

  .menu-toggle span {
    position: absolute;
    left: 3px;
    width: 23px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease, top 180ms ease;
  }

  .menu-toggle span:first-child { top: 11px; }
  .menu-toggle span:last-child { top: 21px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 16px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 16px; transform: rotate(-45deg); }

  .mobile-nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 45px 24px;
    background: #fff;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 9px 0;
    font-family: var(--condensed);
    font-size: 42px;
    letter-spacing: .03em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    display: flex;
    height: auto;
    flex-direction: column;
  }

  .hero-copy {
    min-height: 330px;
    padding: 60px 24px 46px;
    order: 2;
  }

  .hero-copy::after { display: none; }
  .hero .eyebrow { display: block; }
  .hero h1 { font-size: clamp(50px, 13vw, 72px); }

  .hero-visual {
    grid-template-columns: 49% 51%;
    height: 61vw;
    min-height: 320px;
    max-height: 520px;
  }

  .hero-panel-woman { margin-right: -15px; }

  .arrivals {
    padding: 34px 20px 40px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 12px;
  }

  .product-image {
    height: 47vw;
    max-height: 360px;
  }

  .product-card h3 {
    margin-right: 0;
    margin-left: 0;
  }

  .relief-card {
    grid-column: 1 / -1;
    min-height: 260px;
    padding: 24px;
  }

  .story {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0;
  }

  .architecture-art {
    min-height: 380px;
  }

  .story-copy {
    padding: 38px 30px;
  }

  .story-photo {
    grid-column: 1 / -1;
    height: 62vw;
    max-height: 540px;
  }

  .relief-details,
  .brand-story {
    grid-template-columns: 1fr;
  }

  .relief-details {
    gap: 30px;
    padding: 70px 25px;
  }

  .brand-story figure { min-height: 440px; }
  .brand-story > div { padding: 70px 25px; }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 540px) {
  .bag-button { display: none; }

  .hero-visual {
    height: 83vw;
    grid-template-columns: 52% 48%;
  }

  .hero-panel-woman img { object-position: 55% 34%; }
  .hero-panel-man img { object-position: 48% 28%; }
  .hero-accent-a { left: 52%; width: 75px; }

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

  .hero h1 {
    margin-bottom: 30px;
    font-size: 14vw;
  }

  .primary-button {
    width: 100%;
  }

  .section-heading h2 { font-size: 27px; }
  .section-heading a { font-size: 12px; }

  .product-grid {
    gap: 25px 10px;
  }

  .product-card h3 { font-size: 13px; }

  .story {
    grid-template-columns: 1fr;
  }

  .architecture-art {
    min-height: 300px;
  }

  .story-copy {
    min-height: 320px;
  }

  .story-photo {
    grid-column: auto;
    height: 110vw;
    max-height: 610px;
  }

  .relief-dialog {
    padding: 42px 24px 30px;
  }

  .relief-dialog h2 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* Mock-fidelity artwork and desktop geometry. */
.wordmark .wordmark-image {
  display: block;
  width: 170px;
  height: 60px;
  object-fit: cover;
  object-position: center;
}

.wordmark > :not(.wordmark-image) {
  display: none;
}

@media (min-width: 861px) {
  .hero {
    grid-template-columns: 33.3333% 66.6667%;
  }

  .hero-copy {
    z-index: 5;
    justify-content: flex-start;
    overflow: visible;
    padding-top: 128px;
  }

  .hero h1 {
    width: 590px;
    max-width: none;
    margin-bottom: 25px;
    font-size: 56px;
    letter-spacing: 3px;
    line-height: 1.12;
    white-space: nowrap;
  }

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

  .hero-visual > * {
    display: none;
  }

  .arrivals {
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .product-image {
    height: 212px;
  }

  .product-image img,
  .product-image-tee img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: fill;
    object-position: center;
  }
}

@media (max-width: 860px) {
  .wordmark .wordmark-image {
    width: 148px;
    height: 52px;
    object-fit: contain;
  }
}

/* Exact 1536px desktop treatment derived from the approved composition. */
@media (min-width: 1500px) {
  .site-header,
  .header-inner {
    height: 73px;
  }

  .site-header {
    background: #fff url("assets/header-desktop.png") center / 100% 73px no-repeat;
  }

  .header-inner {
    opacity: 0;
  }

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

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

  .hero-copy::after,
  .hero-copy .eyebrow,
  .hero-copy h1 {
    display: none;
  }

  .hero-copy .primary-button {
    position: absolute;
    top: 281px;
    left: 103px;
    width: 219px;
    min-width: 0;
    min-height: 52px;
    padding: 0;
    border: 0;
    opacity: 0;
  }

  .arrivals {
    height: 349px;
    padding: 26px max(6%, calc((100% - var(--content)) / 2)) 0;
    overflow: hidden;
  }

  .section-heading {
    margin-bottom: 10px;
  }

  .product-grid {
    grid-template-columns: 188px 13px 190px 15px 192px 16px 184px 16px 178px 47px 316px;
    gap: 0;
  }

  .product-card:nth-of-type(1) { grid-column: 1; }
  .product-card:nth-of-type(2) { grid-column: 3; }
  .product-card:nth-of-type(3) { grid-column: 5; }
  .product-card:nth-of-type(4) { grid-column: 7; }
  .product-card:nth-of-type(5) { grid-column: 9; }

  .relief-card {
    grid-column: 11;
    width: 316px;
    height: 254px;
    padding: 0;
    background: url("assets/relief-card-desktop.png") left top / 316px 254px no-repeat;
  }

  .relief-card > * {
    opacity: 0;
  }

  .story {
    width: 1356px;
    max-width: none;
    height: 335px;
    min-height: 335px;
    margin-right: 0;
    margin-left: 92px;
    grid-template-columns: 454px 386px 516px;
  }

  .story-copy {
    justify-content: flex-start;
    padding-top: 38px;
  }

  .architecture-art {
    min-height: 335px;
    background: #dfe9e3 url("assets/story-architecture-full.png") center / cover no-repeat;
  }

  .architecture-art::before,
  .architecture-art::after,
  .architecture-art .building {
    display: none;
  }

  .story-photo {
    position: relative;
    height: 335px;
  }

  .story-photo::after {
    position: absolute;
    inset: 0 0 auto;
    height: 132px;
    content: "";
    background: url("assets/story-photo-top.png") center top / 100% 132px no-repeat;
    pointer-events: none;
  }
}
