:root {
  --bg: #08080a;
  --panel: rgba(18, 18, 21, 0.84);
  --panel-strong: rgba(24, 24, 28, 0.94);
  --line: rgba(255, 255, 255, 0.095);
  --line-red: rgba(142, 18, 28, 0.5);
  --text: #f4f1eb;
  --muted: #9d9891;
  --muted-2: #706c68;
  --red: #a31421;
  --red-bright: #d72b37;
  --red-deep: #39070c;
  --red-soft: rgba(163, 20, 33, 0.14);
  --ivory: #d8c7a6;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background: #050506;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    #050506
    url("assets/goodfellas-background.jpg") center top / cover no-repeat;
  filter: saturate(0.72) contrast(1.02) brightness(0.78);
  opacity: 0.58;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    radial-gradient(circle at 50% 5%, rgba(163, 20, 33, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(5, 5, 6, 0.62) 0%, rgba(5, 5, 6, 0.78) 34%, rgba(5, 5, 6, 0.96) 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.9), rgba(5, 5, 6, 0.5) 48%, rgba(5, 5, 6, 0.9));
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

button,
input {
  font: inherit;
}

.app-shell {
  width: min(100%, 620px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 14px 34px;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 286px;
  padding: 38px 18px 30px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(rgba(9, 9, 11, 0.18), rgba(9, 9, 11, 0.86)),
    radial-gradient(circle at 50% 16%, rgba(148, 18, 28, 0.26), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.026)),
    rgba(14, 14, 17, 0.68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero::after {
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(216, 199, 166, 0.42), rgba(163, 20, 33, 0.62), transparent);
}

.brand-badge,
.tabs,
.contact-card,
.search-box,
.product-card {
  backdrop-filter: blur(18px);
}

.hero-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  min-width: 82px;
  min-height: 32px;
  place-items: center;
  border: 1px solid rgba(216, 199, 166, 0.16);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-badge {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  margin: 2px auto 18px;
  place-items: center;
  border: 1px solid rgba(216, 199, 166, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 42%),
    radial-gradient(circle at 50% 65%, rgba(163, 20, 33, 0.22), transparent 58%),
    #121216;
  box-shadow: 0 0 0 9px rgba(255, 255, 255, 0.025), 0 18px 42px rgba(0, 0, 0, 0.48);
}

.brand-badge::before,
.brand-badge::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 132px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(216, 199, 166, 0.34), transparent);
  transform: translate(-50%, -50%) rotate(32deg);
}

.brand-badge::after {
  transform: translate(-50%, -50%) rotate(-32deg);
}

.brand-monogram {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ivory);
}

.brand-badge.has-image {
  overflow: hidden;
  background: #111;
}

.brand-badge.has-image::before,
.brand-badge.has-image::after {
  display: none;
}

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

.brand-kicker {
  position: relative;
  margin: 0 0 6px;
  color: var(--muted);
  font: 700 12px/1 Inter, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  margin-bottom: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(58px, 16vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #f7f1e6;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.58);
}

.brand-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 360px);
  min-height: 42px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  overflow: hidden;
}

.brand-strip span {
  display: grid;
  place-items: center;
  min-height: 42px;
}

.brand-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.075);
}

.brand-strip span:nth-child(2) {
  color: var(--ivory);
  background: rgba(163, 20, 33, 0.11);
}

.signature-rail {
  display: none !important;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 24px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 10, 12, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.tab-button {
  flex: 1;
  min-width: 80px;
  min-height: 50px;
  border: 0;
  border-radius: 11px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.tab-button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.tab-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #97121d, #4d0910);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.panel {
  display: none;
}

.panel.is-active {
  display: block;
  animation: fadeUp 240ms ease both;
}

.section-heading p {
  margin-bottom: 5px;
  color: var(--ivory);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.section-heading h2 {
  margin-bottom: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: #f5f0e8;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 104px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(90deg, rgba(163, 20, 33, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.026)),
    rgba(14, 14, 17, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card::before {
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  content: "";
  border-radius: 0 999px 999px 0;
  background: linear-gradient(var(--red-bright), var(--red-deep));
  opacity: 0.62;
}

.contact-card.primary {
  border-color: var(--line-red);
  background:
    linear-gradient(90deg, rgba(163, 20, 33, 0.18), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(14, 14, 17, 0.78);
}

.contact-card:hover {
  border-color: rgba(216, 199, 166, 0.28);
  transform: translateY(-2px);
}

.contact-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(216, 199, 166, 0.2);
  border-radius: 13px;
  color: var(--ivory);
  background: linear-gradient(145deg, rgba(163, 20, 33, 0.88), rgba(54, 7, 12, 0.96));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-svg {
  width: 28px;
  height: 28px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.contact-card small {
  color: var(--muted);
  line-height: 1.4;
}

.contact-card em {
  align-self: start;
  color: rgba(255, 255, 255, 0.16);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.search-box {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 56px;
  margin-bottom: 16px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(10, 10, 12, 0.58);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.search-box input::placeholder {
  color: #8f8b8d;
}

.showcase-grid {
  display: grid;
  gap: 10px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 18, 21, 0.82);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-card:hover {
  border-color: rgba(216, 199, 166, 0.22);
  background: rgba(20, 20, 23, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.product-media {
  position: relative;
  min-height: 108px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.product-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 1;
}

.product-main-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-green {
  background:
    linear-gradient(135deg, rgba(25, 94, 58, 0.72), rgba(18, 18, 22, 0.84)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 16px);
}

.media-blue {
  background:
    linear-gradient(135deg, rgba(22, 76, 130, 0.72), rgba(18, 18, 22, 0.84)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 16px);
}

.media-purple {
  background:
    linear-gradient(135deg, rgba(83, 48, 128, 0.74), rgba(18, 18, 22, 0.84)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 16px);
}

.media-yellow {
  background:
    linear-gradient(135deg, rgba(150, 119, 35, 0.74), rgba(18, 18, 22, 0.84)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 16px);
}

.media-red {
  background:
    linear-gradient(135deg, rgba(120, 12, 20, 0.78), rgba(18, 18, 22, 0.82)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 16px);
}

.media-black {
  background:
    radial-gradient(circle at 82% 18%, rgba(120, 12, 20, 0.36), transparent 8rem),
    linear-gradient(135deg, #09090c, #202024),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.038) 0 1px, transparent 1px 14px);
}

.media-white {
  background:
    radial-gradient(circle at 20% 80%, rgba(120, 12, 20, 0.28), transparent 8rem),
    linear-gradient(135deg, #d7d1c6, #787771 54%, #16171a);
}

.media-label,
.product-number {
  position: absolute;
  top: 12px;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  z-index: 2;
}

.media-label {
  left: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.34);
  font-size: 10px;
}

.product-number {
  right: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.product-thumbs {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 5px;
}

.product-thumbs img,
.product-thumbs video {
  width: 28px;
  height: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
}

.product-copy {
  padding: 11px;
}

.product-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
  margin-bottom: 8px;
}

.product-copy h3 {
  margin-bottom: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  line-height: 0.98;
  text-transform: uppercase;
}

.price-badge {
  display: inline-grid;
  min-height: 26px;
  padding: 0 9px;
  place-items: center;
  border: 1px solid rgba(216, 199, 166, 0.26);
  border-radius: 999px;
  color: var(--ivory);
  background: linear-gradient(135deg, rgba(163, 20, 33, 0.48), rgba(40, 7, 11, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-size: 11px;
  white-space: nowrap;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.price-row span {
  min-height: 24px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #eee7dc;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 700;
}

.product-copy p {
  display: -webkit-box;
  margin-bottom: 10px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-copy button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(216, 199, 166, 0.24);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.product-copy button:hover {
  border-color: rgba(216, 199, 166, 0.44);
  background: rgba(163, 20, 33, 0.18);
}

.product-card.is-hidden {
  display: none;
}

body.detail-open {
  overflow: hidden;
}

.product-detail {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  padding: 18px;
}

.product-detail.is-open {
  display: grid;
  place-items: center;
}

.product-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.product-detail-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 560px);
  max-height: min(92vh, 860px);
  overflow: auto;
  border: 1px solid rgba(216, 199, 166, 0.18);
  border-radius: 16px;
  background: rgba(18, 18, 21, 0.96);
  box-shadow: 0 26px 86px rgba(0, 0, 0, 0.62);
}

.detail-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--text);
  background: rgba(0, 0, 0, 0.52);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.detail-media {
  position: relative;
  display: grid;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 20%, rgba(163, 20, 33, 0.22), transparent 16rem),
    linear-gradient(135deg, #111116, #08080a);
}

.detail-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.56));
}

.detail-media img,
.detail-media video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 58vh;
  object-fit: cover;
}

.detail-media .media-label {
  z-index: 2;
}

.detail-thumbs {
  display: flex;
  gap: 8px;
  min-height: 64px;
  padding: 10px 12px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-thumbs button {
  position: relative;
  flex: 0 0 58px;
  height: 48px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.detail-thumbs button.is-active {
  border-color: var(--red-bright);
}

.detail-thumbs img,
.detail-thumbs video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-thumbs span {
  position: absolute;
  inset: auto 4px 4px;
  padding: 2px 4px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.66);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-copy {
  padding: 16px;
}

.detail-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-copy h2 {
  margin-bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 34px;
  line-height: 0.96;
  text-transform: uppercase;
}

.detail-copy p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.detail-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.detail-prices div {
  display: grid;
  min-height: 58px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.detail-prices span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.detail-prices strong {
  color: var(--ivory);
  font-size: 18px;
}

.detail-contact {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(216, 199, 166, 0.28);
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #97121d, #4d0910);
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line-red);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(163, 20, 33, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(14, 14, 17, 0.8);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.info-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(216, 199, 166, 0.45), rgba(163, 20, 33, 0.7), transparent);
}

.info-lead {
  margin-bottom: 16px;
  color: var(--ivory);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: #f4f1eb;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
  line-height: 1.25;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .app-shell {
    padding-block: 32px 46px;
  }

  .hero {
    min-height: 330px;
    padding-top: 46px;
  }

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

  .product-card:first-child {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .app-shell {
    padding-inline: 10px;
  }

  .tab-button {
    min-height: 48px;
    font-size: 12px;
    letter-spacing: 0.07em;
  }

  .contact-card {
    grid-template-columns: 50px 1fr;
    padding: 14px;
  }

  .contact-card em {
    display: none;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-card strong {
    font-size: 22px;
  }

  .product-head {
    grid-template-columns: 1fr;
  }

  .info-lead {
    font-size: 27px;
  }

  .info-list li {
    font-size: 14px;
  }

  .product-detail {
    padding: 10px;
  }

  .product-detail-sheet {
    max-height: 94vh;
    border-radius: 14px;
  }

  .detail-media,
  .detail-media img,
  .detail-media video {
    min-height: 260px;
  }

  .detail-copy h2 {
    font-size: 29px;
  }
}
