:root {
  --paper: #efe2c6;
  --paper-light: #f8eed8;
  --paper-deep: #d9c295;
  --ink: #19130b;
  --ink-soft: #463522;
  --gold: #cc9f47;
  --amber: #f2c86f;
  --amber-soft: #f4dfb4;
  --cream: #e8dcc5;
  --cream-edge: #c6b38e;
  --text-dark: #1c1710;
  --card-border: #bb8f3a;
  --shadow-gold: rgba(228, 177, 74, 0.24);
  --display-serif: "Bodoni 72", Didot, "Bodoni MT", "Times New Roman", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(64, 43, 18, 0.18) 0%, transparent 15%, transparent 85%, rgba(64, 43, 18, 0.18) 100%),
    repeating-radial-gradient(circle at 50% 48%, rgba(184, 134, 47, 0.24) 0 1px, transparent 1px 76px),
    radial-gradient(circle at 50% 18%, rgba(255, 249, 232, 0.88), transparent 34%),
    radial-gradient(circle at 50% 74%, rgba(214, 165, 82, 0.16), transparent 46%),
    linear-gradient(180deg, #f4ead4 0%, #ead9b7 52%, #d9c193 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    repeating-linear-gradient(0deg, rgba(66, 44, 17, 0.035) 0, rgba(66, 44, 17, 0.035) 1px, transparent 1px, transparent 4px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0, rgba(255, 255, 255, 0.18) 1px, transparent 1px, transparent 5px);
}

.page-shell {
  --stack-gap: 7px;
  --header-h: clamp(96px, 7.4vw, 118px);
  --product-card-size: min(128px, calc((100svh - var(--header-h) - 118px) / 5));
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: var(--header-h) minmax(0, 1fr);
  gap: 12px 18px;
  width: min(1248px, calc(100vw - 40px));
  height: calc(100svh - 28px);
  min-height: 640px;
  margin: 14px auto;
  padding: 12px 28px 16px;
  border: 1px solid rgba(180, 132, 50, 0.34);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 250, 236, 0.62), transparent 36%),
    radial-gradient(circle at 50% 52%, rgba(255, 245, 222, 0.42), transparent 44%),
    linear-gradient(180deg, rgba(255, 246, 226, 0.52), rgba(228, 205, 162, 0.34));
  box-shadow: inset 0 0 72px rgba(116, 80, 27, 0.2);
}

.hero-banner {
  position: relative;
  grid-column: 1 / -1;
  justify-self: center;
  width: min(calc(var(--header-h) * 8), 100%);
  height: var(--header-h);
  aspect-ratio: 8 / 1;
  max-height: none;
  min-height: 0;
  border-radius: 8px;
  border: 1px solid rgba(221, 178, 88, 0.86);
  background:
    linear-gradient(130deg, rgba(9, 9, 8, 0.96), rgba(22, 19, 14, 0.94)),
    radial-gradient(circle at 7% 50%, rgba(255, 208, 122, 0.18), transparent 46%);
  box-shadow:
    0 0 0 1px rgba(255, 218, 140, 0.12) inset,
    0 12px 26px rgba(78, 52, 16, 0.28),
    0 0 18px rgba(220, 168, 62, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -120%, rgba(255, 206, 119, 0.2), transparent 68%),
    linear-gradient(90deg, transparent 0%, rgba(255, 218, 150, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 0;
  padding: 0;
  text-align: center;
}

.hero-banner-picture,
.hero-banner-image {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-image {
  object-fit: contain;
}

.launch-layout {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: var(--product-card-size) minmax(0, 1fr) var(--product-card-size);
  gap: 18px;
  align-items: stretch;
  min-height: 0;
  height: 100%;
}

.product-column {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, auto));
  gap: var(--stack-gap);
  align-content: center;
  min-height: 0;
}

.product-card {
  position: relative;
  display: block;
  width: var(--product-card-size);
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--card-border);
  border-radius: 7px;
  background: #080808;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 215, 140, 0.14) inset;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-2px) scale(1.01);
  border-color: var(--amber);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 216, 141, 0.24) inset,
    0 0 20px rgba(232, 186, 86, 0.24);
  outline: none;
}

.product-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  vertical-align: middle;
}

.product-status {
  display: none;
}

.center-poster {
  position: relative;
  display: flex;
  min-height: 0;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid rgba(181, 139, 71, 0.42);
  background:
    repeating-radial-gradient(circle at 50% 46%, rgba(176, 128, 43, 0.15) 0 1px, transparent 1px 72px),
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 58%),
    radial-gradient(circle at 50% 112%, rgba(209, 154, 65, 0.18), transparent 44%),
    linear-gradient(180deg, #f4ecd9 0%, #eadfc8 62%, #e1d1b1 100%);
  color: var(--text-dark);
  text-align: center;
  padding: 24px 36px 26px;
  box-shadow:
    0 18px 42px rgba(90, 60, 18, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.center-poster::before,
.center-poster::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(460px, 70%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(187, 138, 53, 0.44), transparent);
}

.center-poster::before {
  top: 18px;
}

.center-poster::after {
  bottom: 18px;
}

.center-poster h1 {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  font-family: var(--display-serif);
  font-size: clamp(3.55rem, 8.15svh, 5.12rem);
  letter-spacing: 0.075em;
  line-height: 0.88;
  font-weight: 400;
  text-transform: uppercase;
}

.center-poster p {
  max-width: 310px;
  margin: 0 auto;
  font-family: var(--display-serif);
  font-size: clamp(1rem, 2.08svh, 1.26rem);
  line-height: 1.18;
}

.ornament {
  position: relative;
  width: min(205px, 48%);
  height: clamp(14px, 2.1svh, 18px);
  margin: clamp(9px, 1.55svh, 14px) auto;
}

.ornament::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(173, 127, 43, 0.65), transparent);
}

.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(173, 127, 43, 0.76);
  background: rgba(244, 231, 200, 0.88);
}

.ornament span,
.ornament span::before,
.ornament span::after {
  position: absolute;
  top: 50%;
  width: 18px;
  height: 9px;
  border: 1px solid rgba(173, 127, 43, 0.58);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  transform: translateY(-50%);
}

.ornament span {
  left: calc(50% - 31px);
}

.ornament span::before,
.ornament span::after {
  content: "";
}

.ornament span::before {
  left: 42px;
}

.ornament span::after {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 2, 2, 0.72);
  z-index: 40;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal-card {
  width: min(500px, 100%);
  border-radius: 12px;
  border: 1px solid rgba(222, 179, 90, 0.72);
  padding: 20px 20px 18px;
  background: linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
  color: #f1dfbf;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.5), 0 0 20px var(--shadow-gold);
}

.modal-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.modal-status {
  margin: 10px 0 8px;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#modal-message {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.modal-close {
  margin-top: 16px;
  min-width: 110px;
  border: 1px solid rgba(236, 194, 106, 0.74);
  border-radius: 8px;
  padding: 10px 14px;
  background: linear-gradient(120deg, rgba(246, 203, 116, 0.16), rgba(141, 100, 33, 0.24));
  color: #f5e4c4;
  font-weight: 600;
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  border-color: rgba(252, 210, 124, 0.96);
  box-shadow: 0 0 14px rgba(241, 186, 76, 0.32);
  outline: none;
}

@media (max-width: 1260px) {
  .page-shell {
    width: min(1130px, calc(100vw - 34px));
    padding: 14px 24px 18px;
  }

  .center-poster {
    padding: 22px 30px 24px;
  }

  .center-poster h1 {
    font-size: 4.42rem;
  }

  .center-poster p {
    font-size: 1.34rem;
  }
}

@media (max-width: 980px) {
  .page-shell {
    display: block;
    height: auto;
    min-height: 0;
  }

  .hero-banner {
    width: 100%;
    height: auto;
    min-height: 62px;
    margin-bottom: 14px;
  }

  .hero-banner-inner {
    gap: 10px;
  }

  .launch-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #left-column,
  #right-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .product-card {
    aspect-ratio: 1 / 1;
    width: 100%;
  }

  .center-poster {
    order: -1;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .page-shell {
    padding: 14px 12px 18px;
  }

  .hero-banner {
    aspect-ratio: 5 / 1;
    height: auto;
    min-height: 70px;
    margin-bottom: 12px;
  }

  .hero-banner-inner {
    gap: 0;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
  }

  .hero-banner-picture {
    aspect-ratio: 5 / 1;
    height: auto;
  }

  .hero-brand {
    font-size: clamp(1.9rem, 8vw, 2.3rem);
    line-height: 1;
    justify-self: center;
    text-align: center;
  }

  .hero-tagline {
    display: none;
  }

  .hero-divider {
    display: none;
  }

  #left-column,
  #right-column {
    grid-template-columns: 1fr;
  }

  .center-poster h1 {
    margin-bottom: 18px;
  }

  .center-poster p + p {
    margin-top: 16px;
    padding-top: 14px;
  }
}
