@import url("https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;600;700&display=swap");

:root {
  --ink: #2d2119;
  --coffee: #39271d;
  --cream: #fbf7f0;
  --paper: #f2eee7;
  --gold: #af7d28;
  --rust: #8a3f2f;
  --olive: #66705a;
  --blue: #557985;
  --line: rgba(45, 33, 25, 0.18);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--coffee);
}

.skip-link:focus {
  top: 12px;
}

.shell-wide {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.announcement {
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  color: var(--cream);
  background: var(--coffee);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 240, 0.96);
  backdrop-filter: blur(12px);
}

.main-nav {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.nav-group a,
.text-button,
.language {
  border: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.text-button {
  cursor: pointer;
}

.nav-group a:hover,
.nav-group a:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  color: var(--gold);
}

.header-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header-brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.header-brand span {
  display: grid;
  line-height: 1;
}

.header-brand b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.header-brand small {
  margin-top: 7px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(680px, 78vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--coffee);
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center 54%;
}

.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(26, 18, 13, 0.78) 0%,
    rgba(26, 18, 13, 0.35) 45%,
    rgba(26, 18, 13, 0) 78%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 84px;
  padding-bottom: 84px;
}

.kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1,
.hero p {
  max-width: 650px;
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 400;
  line-height: 0.99;
  letter-spacing: -0.04em;
}

.hero-content > p:not(.kicker) {
  margin-bottom: 30px;
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.button-light {
  color: var(--coffee);
  background: var(--cream);
}

.button-light:hover {
  color: var(--cream);
  background: var(--gold);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: white;
}

.button-outline-light:hover {
  color: var(--coffee);
  background: white;
}

.button-dark {
  color: var(--cream);
  background: var(--coffee);
}

.button-dark:hover {
  background: var(--rust);
}

.section-space {
  padding: 88px 0;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-title-row.centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.section-title-row h2,
.feature-copy h2,
.passport-copy h2,
.story-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.section-title-row p {
  margin: -14px 0 0;
  color: rgba(45, 33, 25, 0.68);
}

.underlined-link,
.card-action {
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.shop-card-image {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-decoration: none;
}

.shop-card-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.shop-card-image img {
  width: min(68%, 230px);
  max-height: 270px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: transform 260ms ease;
}

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

.tone-gold {
  background: #ac7a26;
}

.tone-rust {
  background: var(--rust);
}

.tone-olive {
  background: var(--olive);
}

.tone-blue {
  background: var(--blue);
}

.release-tag,
.pack-name {
  position: absolute;
  z-index: 1;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.release-tag {
  left: 22px;
  top: 22px;
}

.pack-name {
  left: 22px;
  right: 22px;
  bottom: 22px;
  text-align: center;
}

.shop-card-copy {
  padding: 22px 2px 0;
}

.shop-card-copy h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.shop-card-copy h3 a {
  text-decoration: none;
}

.shop-card-copy p {
  min-height: 48px;
  margin: 0 0 18px;
  color: rgba(45, 33, 25, 0.66);
  font-size: 14px;
}

.discover {
  background: var(--paper);
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.discover-card {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--cream);
  text-decoration: none;
  transition: filter 180ms ease;
}

.discover-card:hover {
  filter: brightness(1.08);
}

.discover-card span {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 46px);
}

.discover-espresso {
  background: var(--coffee);
}

.discover-filter {
  background: var(--gold);
}

.discover-turkish {
  background: var(--olive);
}

.discover-decaf {
  background: var(--blue);
}

.feature-split,
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.feature-art {
  min-height: 590px;
  display: grid;
  place-items: center;
  background: var(--coffee);
}

.feature-art img {
  width: min(58%, 430px);
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.feature-copy,
.story-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(48px, 8vw, 120px);
  background: #e6d6bd;
}

.feature-copy > p:not(.kicker),
.passport-copy > p:not(.kicker),
.story-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 26px 0 30px;
  font-size: 18px;
}

.passport-section {
  color: var(--cream);
  background: var(--coffee);
}

.passport-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.record-list {
  width: 100%;
  max-width: 580px;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
}

.record-list li {
  display: flex;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.record-list span {
  color: var(--gold);
}

.passport-card {
  min-height: 430px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border: 1px solid var(--gold);
  color: var(--coffee);
  background: var(--paper);
  text-decoration: none;
}

.passport-card small,
.passport-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.passport-card strong {
  display: block;
  margin: auto 0 10px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 400;
  line-height: 1;
}

.passport-card > div:first-child {
  min-height: 335px;
  display: flex;
  flex-direction: column;
}

.qr-frame {
  width: 130px;
  min-width: 130px;
  padding: 8px;
  background: white;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--gold);
}

.service-strip > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px clamp(28px, 5vw, 72px);
  border-right: 1px solid rgba(45, 33, 25, 0.22);
}

.service-strip > div:last-child {
  border-right: 0;
}

.service-strip strong {
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.service-strip span {
  font-family: var(--serif);
  font-size: 19px;
}

.story-image {
  min-height: 620px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.story-copy {
  background: var(--cream);
}

.site-footer {
  color: var(--cream);
  background: #241a14;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 50px;
  padding-top: 70px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 92px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.2em;
}

.footer-brand span {
  margin-top: 7px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-top h3 {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-top > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
}

.footer-top a:hover {
  color: var(--gold);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.search-dialog {
  width: min(680px, calc(100% - 32px));
  padding: 34px;
  border: 0;
  color: var(--ink);
  background: var(--cream);
}

.search-dialog::backdrop {
  background: rgba(25, 17, 12, 0.75);
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.search-head strong {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.search-head button {
  border: 0;
  font-size: 28px;
  background: transparent;
  cursor: pointer;
}

.search-dialog label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-dialog input {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 18px;
}

.search-results {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
}

.search-results a,
.search-empty {
  padding: 15px 16px;
  background: var(--cream);
  text-decoration: none;
}

.search-results a:hover {
  background: var(--paper);
}

/* Product record pages */
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.product-page {
  padding: 58px 0 92px;
}

.back-link {
  display: inline-block;
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.product-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.product-art {
  position: sticky;
  top: 122px;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--gold);
  outline: 1px solid rgba(255, 255, 255, 0.28);
  outline-offset: -12px;
  color: var(--cream);
  background: var(--coffee);
}

.product-art::before {
  content: "";
  position: absolute;
  inset: 90px 48px;
  background: url("/assets/real-mark-transparent.png") center / contain
    no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.12;
}

.product-art::after {
  content: "✦";
  position: absolute;
  right: 34px;
  top: 28px;
  color: var(--gold);
  font-size: 18px;
}

.product-art small,
.product-art div {
  position: relative;
  z-index: 1;
}

.product-art small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-art h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 400;
  line-height: 0.98;
}

.product-art p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.product-header {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-status {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid var(--gold);
  color: var(--coffee);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-header h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.product-header h2 em {
  font-size: 0.65em;
  font-weight: 400;
}

.product-lede {
  max-width: 650px;
  font-family: var(--serif);
  font-size: 19px;
}

.facts {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.fact {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) 1fr;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.fact dt,
.brew-grid span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact dd {
  margin: 0;
}

.brew-card {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--coffee);
}

.brew-card h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

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

.brew-grid span {
  display: block;
  color: rgba(45, 33, 25, 0.6);
}

.batch-box {
  margin-top: 24px;
  padding: 24px;
  background: var(--paper);
}

.batch-box p {
  margin-bottom: 0;
}

.product-qr {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  align-items: center;
}

.product-qr img {
  width: 110px;
  height: 110px;
  padding: 6px;
  background: white;
}

.product-qr strong,
.product-qr span {
  display: block;
}

.product-qr strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.product-qr span {
  color: rgba(45, 33, 25, 0.64);
}

@media (max-width: 1160px) {
  .header-brand span {
    display: none;
  }

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

@media (max-width: 860px) {
  .shell-wide {
    width: min(100% - 36px, 1440px);
  }

  .main-nav {
    min-height: 76px;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    display: grid;
    align-content: center;
    gap: 7px;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .menu-toggle span {
    width: 26px;
    height: 1px;
    background: var(--ink);
  }

  .nav-left {
    position: fixed;
    inset: 114px 0 auto;
    display: none;
    align-items: stretch;
    padding: 28px 24px 40px;
    border-top: 1px solid var(--line);
    background: var(--cream);
  }

  .nav-left.is-open {
    display: grid;
  }

  .nav-left a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-right .language,
  .nav-right a {
    display: none;
  }

  .header-brand img {
    width: 54px;
    height: 54px;
  }

  .feature-split,
  .story-section,
  .passport-grid,
  .product-hero {
    grid-template-columns: 1fr;
  }

  .feature-art,
  .story-image {
    min-height: 480px;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 33, 25, 0.22);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-art {
    position: relative;
    top: auto;
    min-height: 480px;
  }
}

@media (max-width: 620px) {
  .announcement {
    min-height: 34px;
    font-size: 11px;
  }

  .hero {
    min-height: 610px;
    align-items: end;
  }

  .hero > img {
    object-position: 61% center;
  }

  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(26, 18, 13, 0.9) 0%,
      rgba(26, 18, 13, 0.18) 76%
    );
  }

  .hero-content {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .section-space {
    padding: 62px 0;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
  }

  .section-title-row.centered p {
    margin-top: -8px;
  }

  .product-grid,
  .discover-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .shop-card-image {
    min-height: 390px;
  }

  .discover-card {
    min-height: 170px;
  }

  .feature-art,
  .story-image {
    min-height: 390px;
  }

  .feature-copy,
  .story-copy {
    padding: 52px 24px;
  }

  .passport-card {
    min-height: 390px;
    align-items: start;
    flex-direction: column;
    padding: 28px;
  }

  .passport-card > div:first-child {
    min-height: auto;
  }

  .passport-card strong {
    margin-top: 110px;
  }

  .footer-top {
    gap: 32px;
    padding-top: 52px;
    padding-bottom: 44px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .product-page {
    padding-top: 34px;
  }

  .product-hero {
    gap: 38px;
  }

  .product-art {
    min-height: 420px;
    padding: 28px;
  }

  .fact {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

.language-switch {
  text-transform: none !important;
}

html[dir="rtl"] body {
  direction: rtl;
  font-family: "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  text-align: right;
}

html[dir="rtl"] button,
html[dir="rtl"] input,
html[dir="rtl"] .product-info h2,
html[dir="rtl"] .product-info h3 {
  font-family: "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .announcement,
html[dir="rtl"] .nav-group a,
html[dir="rtl"] .text-button,
html[dir="rtl"] .language,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .product-status,
html[dir="rtl"] .back-link,
html[dir="rtl"] .fact dt,
html[dir="rtl"] .brew-grid span,
html[dir="rtl"] .reference-button,
html[dir="rtl"] .center-button {
  letter-spacing: 0;
}

html[dir="rtl"] .header-brand,
html[dir="rtl"] .brand-type,
html[dir="rtl"] .product-art h1,
html[dir="rtl"] .pouch-title {
  direction: ltr;
}

html[dir="rtl"] .product-info h2,
html[dir="rtl"] .product-info h3,
html[dir="rtl"] .product-lede,
html[dir="rtl"] .fact,
html[dir="rtl"] .batch-box,
html[dir="rtl"] .product-qr,
html[dir="rtl"] .search-dialog {
  text-align: right;
}

html[dir="rtl"] .product-qr {
  grid-template-columns: 1fr 118px;
}

html[dir="rtl"] .product-qr img {
  grid-column: 2;
  grid-row: 1;
}

html[dir="rtl"] .product-qr > div {
  grid-column: 1;
  grid-row: 1;
}

body[data-product] .product-art {
  border-color: var(--product-accent, var(--gold));
}

body[data-product] .product-art::before {
  inset: 0;
  background:
    linear-gradient(0deg, rgba(30, 15, 9, 0.9) 0, rgba(30, 15, 9, 0.08) 48%, rgba(30, 15, 9, 0.12) 100%),
    var(--product-image, url("/assets/real-mark-transparent.png")) center / cover no-repeat;
  filter: none;
  opacity: 1;
}

body[data-product] .product-art::after,
body[data-product] .product-art small {
  color: var(--product-accent, var(--gold));
}

body[data-product] .product-art h1 {
  font-size: clamp(40px, 5vw, 68px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}

body[data-product] .product-art p {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

body[data-product] .product-status {
  border-color: var(--product-accent, var(--gold));
}
