:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-2: #0b0a08;
  --ink: #f8f3e6;
  --muted: #b4ab9a;
  --soft: #776f62;
  --gold: #d9b96f;
  --gold-2: #f2d18a;
  --line: rgba(248, 243, 230, 0.14);
  --line-strong: rgba(217, 185, 111, 0.44);
  --panel: rgba(18, 17, 14, 0.88);
  --panel-2: #11100d;
  --success: #6ee7b7;
  --danger: #ff8f7d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
  --max: 1260px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(217, 185, 111, 0.13), transparent 28%),
    linear-gradient(180deg, #070705 0%, #050505 42%, #090806 100%);
  color: var(--ink);
}

body.drawer-open {
  overflow: hidden;
}

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

button,
select {
  cursor: pointer;
}

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

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

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

.brand-mark,
.preview-monogram {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.3vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 0 max(18px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(20px);
}

.brand,
.header-tools,
.site-nav,
.hero-actions,
.product-actions,
.preview-tabs,
.cart-head,
.cart-item,
.summary-total,
.catalog-controls,
.pipeline-card header {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--gold-2);
  font-size: 22px;
}

.brand-text {
  color: var(--gold-2);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--gold-2);
}

.header-tools {
  justify-content: end;
  gap: 10px;
}

.currency-control {
  margin: 0;
}

.currency-control select,
.cart-button,
.menu-toggle,
.close-button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
}

.currency-control select {
  width: 78px;
  padding: 0 10px;
}

.cart-button,
.close-button {
  padding: 0 12px;
  font-weight: 900;
}

.cart-button span {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  place-items: center;
  background: var(--gold);
  color: #080705;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.product-card:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #b88d3f, #f1d58f 55%, #c1974d);
  color: #080705;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
}

.button.wide {
  width: 100%;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(32px, 5vw, 86px);
  width: min(100% - 40px, var(--max));
  min-height: min(820px, calc(100svh - 72px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 96px) 0 34px;
  align-items: center;
}

.hero-lede {
  max-width: 600px;
  color: #d2c9b9;
  font-size: 17px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin: 34px 0 0;
}

.hero-proof div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.hero-proof dt {
  color: var(--gold-2);
  font-size: 25px;
  font-weight: 950;
}

.hero-proof dd {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090806;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hero-ticket {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(240px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(14px);
}

.hero-ticket span,
.price-panel span,
.order-summary span,
.cart-head span,
.newsletter span,
.site-footer nav span {
  display: block;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-ticket strong,
.price-panel strong,
.cart-head strong {
  display: block;
  margin: 6px 0;
  color: var(--success);
  font-size: 38px;
  line-height: 1;
}

.hero-ticket small,
.price-panel small {
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.trust-strip div {
  min-height: 78px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.trust-strip div:first-child {
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
}

.trust-strip div:last-child {
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
  border-right: 0;
}

.trust-strip span {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-strip small {
  color: var(--muted);
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: clamp(74px, 9vw, 130px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p,
.customizer-copy p,
.request-copy p,
.pipeline-panel > p {
  max-width: 690px;
}

.section-heading.centered {
  display: block;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.catalog-controls {
  gap: 10px;
  align-items: end;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

.lineup-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.lineup-frame img {
  width: 100%;
  aspect-ratio: 16 / 6.5;
  object-fit: cover;
}

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

.product-card {
  display: grid;
  min-height: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  border-color: var(--line-strong);
}

.product-visual {
  display: grid;
  min-height: 212px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 20%, rgba(217, 185, 111, 0.18), transparent 32%),
    #0b0a08;
}

.mini-metal-card {
  position: relative;
  width: min(78%, 230px);
  aspect-ratio: 1.58 / 1;
  border: 1px solid rgba(242, 209, 138, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(128deg, transparent 20%, rgba(217, 185, 111, 0.3) 20.4%, transparent 21%),
    linear-gradient(38deg, transparent 45%, rgba(217, 185, 111, 0.24) 45.4%, transparent 46%),
    linear-gradient(160deg, #201f1b, #050505);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
  transform: rotate(-7deg);
}

.mini-metal-card::before {
  position: absolute;
  top: 22%;
  left: 12%;
  width: 30px;
  height: 22px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(0, 0, 0, 0.28) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(0, 0, 0, 0.28) 49% 51%, transparent 52%),
    linear-gradient(135deg, #ffe5a3, #ad7e32);
  content: "";
}

.mini-metal-card::after {
  position: absolute;
  right: 12%;
  bottom: 16%;
  color: var(--gold-2);
  content: "AV";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.mini-metal-card.champagne {
  border-color: rgba(255, 231, 172, 0.85);
  background: linear-gradient(135deg, #b88934, #ffebb2 48%, #7e5b23);
}

.mini-metal-card.carbon {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 6px, transparent 6px 12px),
    linear-gradient(135deg, #202020, #050505);
}

.mini-metal-card.slate {
  border-color: rgba(248, 243, 230, 0.42);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(145deg, #35342f, #12110f);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-title-row,
.product-price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.product-title-row strong {
  font-size: 18px;
}

.product-tag {
  border: 1px solid var(--line);
  padding: 5px 7px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.product-body p {
  margin-bottom: 0;
  font-size: 14px;
}

.product-price-row strong {
  color: var(--gold-2);
  font-size: 19px;
}

.product-price-row del {
  color: var(--soft);
  font-size: 13px;
}

.customizer-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.material-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.material-list span {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
}

.customizer-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(310px, 1.18fr) minmax(220px, 0.72fr);
  gap: 12px;
  min-height: 520px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(217, 185, 111, 0.12), transparent 22%),
    rgba(255, 255, 255, 0.035);
}

.config-panel,
.order-summary,
.request-form,
.faq-panel,
.pipeline-panel {
  border: 1px solid var(--line);
  background: var(--panel);
}

.config-panel,
.order-summary,
.request-form,
.faq-panel,
.pipeline-panel {
  padding: 18px;
}

.price-panel,
.summary-total {
  margin: 14px 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.card-preview-wrap {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 20px;
  min-height: 100%;
  padding: 28px;
}

.card-preview {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  border: 1px solid rgba(242, 209, 138, 0.88);
  border-radius: 12px;
  background:
    linear-gradient(128deg, transparent 22%, rgba(217, 185, 111, 0.36) 22.2%, transparent 22.8%),
    linear-gradient(32deg, transparent 42%, rgba(217, 185, 111, 0.26) 42.3%, transparent 43%),
    linear-gradient(154deg, #25231f, #060606 64%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.52);
}

.card-preview.champagne {
  background: linear-gradient(135deg, #9f702a, #fff0bd 46%, #624311);
}

.card-preview.carbon {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.07) 0 7px, transparent 7px 14px),
    linear-gradient(135deg, #202020, #050505);
}

.card-preview.slate {
  border-color: rgba(248, 243, 230, 0.48);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(145deg, #3a3832, #11100d);
}

.chip {
  position: absolute;
  top: 28%;
  left: 12%;
  width: 54px;
  height: 40px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(0, 0, 0, 0.28) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(0, 0, 0, 0.28) 49% 51%, transparent 52%),
    linear-gradient(135deg, #ffe9a8, #a97a2f);
}

.preview-monogram {
  position: absolute;
  right: 14%;
  top: 31%;
  color: var(--gold-2);
  font-size: clamp(46px, 6vw, 72px);
  text-shadow: 0 2px 0 #5e421a;
}

.preview-name,
.preview-motto {
  position: absolute;
  left: 12%;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-name {
  bottom: 19%;
}

.preview-motto {
  bottom: 10%;
  color: #c7aa63;
  font-size: 10px;
}

.preview-tabs {
  border: 1px solid var(--line);
}

.preview-tabs button {
  min-width: 92px;
  min-height: 42px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.preview-tabs button:last-child {
  border-right: 0;
}

.preview-tabs .active {
  background: var(--gold);
  color: #080705;
}

.order-summary {
  align-self: stretch;
}

.order-summary p {
  min-height: 94px;
  margin-top: 10px;
}

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

.process-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-2);
  font-weight: 950;
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(40px, 7vw, 80px) max(20px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background: #080705;
}

.detail-band img {
  width: 100%;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.request-section,
.faq-pipeline-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

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

.form-message {
  min-height: 26px;
  color: var(--success);
  font-weight: 900;
}

.form-message.error {
  color: var(--danger);
}

.faq-pipeline-section {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 14px;
  text-align: left;
  font-weight: 900;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 14px 14px;
}

.faq-item.open p {
  display: block;
}

.pipeline-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.pipeline-column {
  min-height: 260px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.pipeline-column h3 {
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
}

.pipeline-stack {
  display: grid;
  gap: 10px;
}

.pipeline-card {
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.pipeline-card header {
  justify-content: space-between;
  gap: 8px;
}

.pipeline-card strong {
  font-size: 13px;
}

.pipeline-card small,
.cart-item span {
  color: var(--muted);
  font-size: 12px;
}

.pipeline-card p {
  margin: 8px 0;
  font-size: 13px;
}

.status-button,
.cart-item button {
  width: 100%;
  min-height: 36px;
  margin-top: 10px;
  border: 1px solid rgba(110, 231, 183, 0.36);
  background: rgba(110, 231, 183, 0.1);
  color: var(--success);
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(440px, 100%);
  height: 100%;
  padding: 20px;
  border-left: 1px solid var(--line);
  background: var(--panel-2);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-list {
  display: grid;
  gap: 12px;
  max-height: calc(100vh - 210px);
  overflow: auto;
  padding: 18px 0;
}

.cart-item {
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.cart-item > div {
  min-width: 0;
}

.cart-item strong {
  display: block;
}

.cart-item button {
  min-width: 86px;
  margin: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.75fr));
  gap: 28px;
  padding: clamp(44px, 7vw, 80px) max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #040403;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 360px;
  margin-bottom: 0;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 14px;
}

.newsletter label {
  margin-top: 10px;
}

.newsletter .button {
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    right: 20px;
    left: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.96);
  }

  .site-nav.open {
    display: flex;
  }

  .header-tools {
    justify-self: end;
  }

  .hero-section,
  .customizer-section,
  .request-section,
  .faq-pipeline-section,
  .detail-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .process-grid,
  .pipeline-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customizer-shell {
    grid-template-columns: 1fr;
  }

  .order-summary p {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding-inline: 12px;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .brand-text {
    max-width: 96px;
    font-size: 12px;
    line-height: 1.2;
  }

  .currency-control {
    display: none;
  }

  .cart-button {
    padding: 0 9px;
    font-size: 12px;
  }

  .hero-section,
  .section {
    width: calc(100% - 24px);
  }

  .hero-section {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 54px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof,
  .trust-strip,
  .section-heading,
  .catalog-controls,
  .product-grid,
  .process-grid,
  .form-grid,
  .pipeline-board {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 330px;
  }

  .trust-strip div {
    padding-inline: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .lineup-frame img,
  .detail-band img {
    aspect-ratio: 1.15 / 1;
  }

  .card-preview-wrap {
    padding: 12px 0;
  }

  .preview-name {
    bottom: 18%;
  }

  .preview-motto {
    display: none;
  }

  .cart-item {
    display: grid;
  }
}

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