:root {
  --bg-black: #040404;
  --text-light: #f2ede6;
  --text-soft: #ccb9ae;
  --gold: #e7d066;
  --olive: #85961a;
  --lime: #c5df39;
  --brick: #7e1322;
  --brick-dark: #4d0614;
  --brick-deep: #30020d;
  --hero-orange: #f0be76;
  --forest: #345c33;
  --teal: #0b6f8f;
  --teal-dark: #0a5f7a;
  --footer: #1f2c42;
  --footer-pill: #314660;
  --panel-border: rgba(255, 255, 255, 0.08);
  --content-width: 1120px;
  --content-width-narrow: 980px;
  --shadow-strong: 0 18px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg-black);
  color: var(--text-light);
  line-height: 1.45;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--content-width), calc(100% - 32px));
  margin-inline: auto;
}

.content-narrow {
  width: min(100%, var(--content-width-narrow));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-strip {
  background: #b22e2c;
  color: #ffe7d7;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip__inner {
  padding: 0.45rem 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, #77202a 0%, #6d171f 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.24);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  color: #f9f6ee;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}

.brand img{width: 250px;}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.main-nav a,
.cart-btn {
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.main-nav a:hover,
.cart-btn:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  border-radius: 8px;
  padding: 0.55rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.breadcrumbs-wrap {
  background: #8b1e23;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.65rem 0;
  font-size: 0.82rem;
  color: #f1dbd0;
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 28%, rgba(110, 10, 20, 0.85) 0 14%, transparent 15%),
    radial-gradient(circle at 21% 12%, rgba(67, 0, 9, 0.6) 0 10%, transparent 11%),
    radial-gradient(circle at 68% 22%, rgba(255, 240, 188, 0.65) 0 16%, transparent 17%),
    linear-gradient(90deg, #5f0e1b 0%, #952423 26%, #d76f32 47%, #f0be76 66%, #d98b55 78%, #962f2b 100%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 0% 25%, rgba(0, 0, 0, 0.22) 0 24%, transparent 25%),
    radial-gradient(circle at 99% 8%, rgba(0, 0, 0, 0.18) 0 14%, transparent 15%);
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 24px;
  align-items: start;
  padding: 26px 0 36px;
}

.hero__media,
.product-card-panel {
  min-width: 0;
}

.hero__media {
  /*padding: 18px;*/
}

.hero__image-frame {
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
}

.hero__image-frame img {
  width: 100%;
  /*aspect-ratio: 16 / 9.1;
  object-fit: cover;*/ 
}

.product-card-panel {
  background: linear-gradient(180deg, rgba(85, 7, 23, 0.98) 0%, rgba(66, 4, 17, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-strong);
  padding: 24px;
}

.product-card-panel h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.seal-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 12px;
}

.seal {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(230, 208, 102, 0.75);
  position: relative;
}

.seal::before,
.seal::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(230, 208, 102, 0.55);
}

.seal::after {
  inset: 15px;
  background: rgba(230, 208, 102, 0.7);
  border: 0;
}

.muted-copy {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.price {
  margin-top: 18px;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--gold);
}

.meta-blocks {
  display: grid;
  gap: 0.95rem;
  margin-top: 18px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.meta-label {
  color: #c8a99f;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.meta-value {
  font-size: 1rem;
  font-weight: 700;
}

.edition-pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: #c78c34;
  color: #fff7ea;
  font-size: 0.82rem;
  font-weight: 700;
}

.platform-select {
  width: 100%;
  margin-top: 20px;
  padding: 0.85rem 1rem;
  background: #E24030;
  color: #ffffff;
  border: 0;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.notice-box {
  margin-top: 14px;
  padding: 0.8rem 0.95rem;
  background: #2c6faa;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f5fcff;
  font-size: 0.88rem;
}

.rating-box {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 74px 1fr;
  background: #f5f5f5;
  color: #111;
  border: 3px solid #0f0f10;
}

.rating-box__badge {
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 900;
  border-right: 3px solid #0f0f10;
  min-height: 76px;
}

.rating-box__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
}

.description-block {
  margin-top: 16px;
}

.description-block h2 {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.description-block p,
.description-block li,
.accordion__content {
  color: #f0d7cb;
  font-size: 0.92rem;
}

.description-block p {
  margin: 0 0 0.8rem;
}

.list-title {
  color: #fff;
  font-weight: 700;
}

.description-block ul {
  margin: 0;
  padding-left: 1.1rem;
}

.description-block li + li {
  margin-top: 0.45rem;
}

.accordion {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border: 0;
  background: transparent;
  color: #f6efe7;
  font-weight: 700;
  text-align: left;
}

.accordion__trigger::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.accordion__trigger[aria-expanded="true"]::after {
  content: "–";
}

.accordion__content {
  padding-bottom: 0.9rem;
}

.section-black {
  background: var(--bg-black);
}

.features {
  padding: 52px 0 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 220px;
}

.feature-row + .feature-row {
  margin-top: 20px;
}

.feature-row--reverse .feature-row__copy {
  order: -1;
}

.feature-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--forest);
  padding: 32px;
}

.feature-row__copy h2 {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.feature-row__copy p {
  margin: 0;
  max-width: 32ch;
  color: #f3eed8;
}

.showcase {
  padding: 24px 0 56px;
}

.showcase__hero img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-block {
  margin: 26px 0 0;
  font-size: 1.22rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--gold);
}

.quote-block cite {
  display: block;
  margin-top: 0.25rem;
  color: #fff8df;
  font-style: normal;
  font-size: 0.98rem;
}

.story-copy {
  margin: 18px 0 0;
  color: #ece3dc;
  max-width: 92ch;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-callout {
  margin-top: 30px;
  text-align: center;
}

.studio-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.studio-callout p {
  margin: 0;
  color: #d8d3cb;
  font-size: 0.92rem;
}

.related-section {
  background: #efefef;
  color: #161616;
  padding: 30px 0 36px;
}

.related-section__inner {
  width: min(100%, 1040px);
}

.section-heading h2 {
  margin: 0;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-heading h2::before {
  content: "◆";
  margin-right: 0.4rem;
  color: #c88c2b;
  font-size: 0.8em;
}

.section-heading--spaced {
  margin-top: 34px;
}

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

.product-tile {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-tile__media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 4px;
}

.product-tile__media img {
  width: 78%;
  max-height: 78%;
  object-fit: contain;
}

.product-tile__meta h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

.product-tile__meta span {
  display: block;
  margin-top: 0.2rem;
  color: #68707d;
  font-size: 0.84rem;
}

.product-tile__price {
  font-weight: 700;
  color: #4d4a45;
}

.collection-tile {
  width: 120px;
  margin-top: 18px;
  background: #fff;
  padding: 14px;
  border-radius: 4px;
}

.updates-section {
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 28px 0 0;
}

.updates-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(300px, 1fr);
  gap: 24px;
  align-items: start;
}

.updates-listing__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.updates-listing__head h2,
.newsletter-card h2,
.site-footer h2,
.catalog-strip h2 {
  margin: 0;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.updates-listing__head h2::before {
  content: "★";
  margin-right: 0.45rem;
  color: var(--lime);
  font-size: 0.8em;
}

.updates-listing__head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.updates-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.update-card {
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.update-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.update-card__body {
  padding: 14px 14px 18px;
}

.update-card__body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.update-card__body time,
.newsletter-card p,
.newsletter-feedback {
  color: #d1edf7;
}

.update-card__body time {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lime);
}

.update-card__body p {
  margin: 0.5rem 0 0;
}

.olive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  margin-top: 16px;
  padding: 0.75rem 1rem;
  background: var(--olive);
  color: #fffef5;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.newsletter-card {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  min-height: 100%;
}

.newsletter-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.newsletter-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 48px;
  background: var(--lime);
  color: #0f4762;
  font-weight: 900;
  font-size: 1.8rem;
  border-radius: 4px;
}

.newsletter-icon--mail {
  width: 78px;
  font-size: 1.5rem;
}

.newsletter-card p {
  margin-top: 18px;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.newsletter-form input {
  width: 100%;
  border: 0;
  min-height: 42px;
  padding: 0.75rem 0.9rem;
  background: #ebf0f1;
  color: #16222c;
}

.newsletter-form button {
  border: 0;
  min-height: 42px;
  background: var(--olive);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.newsletter-feedback {
  min-height: 1.3em;
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f8fbff;
}

.site-footer {
  background: var(--footer);
  color: #eef2f8;
  padding-top: 34px;
}

.footer-top {
  padding-bottom: 26px;
}

.footer-brand {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: lowercase;
}

.footer-brand img{
  width: 350px;
  margin: 0 auto;
  display: block;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.footer-column {
  text-align: center;
  padding: 0 14px;
}

.footer-column p {
  margin: 12px auto 0;
  color: #d6ddea;
  max-width: 34ch;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #1c2536;
  border-radius: 6px;
  min-width: 132px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}

.flags-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.flags-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  min-height: 48px;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.catalog-strip {
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.catalog-strip h2 {
  text-align: center;
}

.catalog-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.catalog-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  background: var(--footer-pill);
  border-radius: 999px;
  color: #ecf1ff;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #6b171f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.95rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:first-child {
    border-top: 0;
  }

  .hero__grid,
  .updates-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero__media {
    padding: 0;
  }

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

  .updates-cards {
    grid-template-columns: 1fr;
  }

  .newsletter-card {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--content-width), calc(100% - 18px));
  }

  .top-strip__inner {
    padding-inline: 0.25rem;
  }

  .nav-row {
    min-height: 58px;
  }

  .brand {
    font-size: 1.4rem;
  }

  .cart-btn {
    min-width: auto;
    padding-inline: 0.8rem;
  }

  .hero__grid {
    gap: 14px;
    padding: 16px 0 18px;
  }

  .product-card-panel {
    padding: 16px;
  }

  .price {
    font-size: 1.95rem;
  }

  .features {
    padding-top: 14px;
  }

  .feature-row,
  .gallery-grid {
    gap: 8px;
  }

  .feature-row {
    min-height: 0;
  }

  .feature-row__copy {
    padding: 14px 12px;
  }

  .feature-row__copy h2 {
    margin-bottom: 0.45rem;
    font-size: 1rem;
  }

  .feature-row__copy p,
  .story-copy,
  .description-block p,
  .description-block li,
  .accordion__content,
  .quote-block,
  .update-card__body h3,
  .update-card__body p,
  .footer-column p {
    font-size: 0.82rem;
  }

  .showcase {
    padding-top: 14px;
  }

  .quote-block {
    margin-top: 16px;
  }

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

  .products-grid {
    gap: 16px 12px;
  }

  .product-tile__meta h3,
  .product-tile__price {
    font-size: 0.84rem;
  }

  .product-tile__meta span {
    font-size: 0.76rem;
  }

  .collection-tile {
    width: 98px;
  }

  .updates-section {
    padding-top: 18px;
  }

  .newsletter-card,
  .update-card__body {
    padding: 14px;
  }

  .footer-top {
    padding-bottom: 18px;
  }

  .catalog-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-links a {
    width: 100%;
    border-radius: 10px;
  }
}

@media (max-width: 420px) {
  .breadcrumbs {
    font-size: 0.74rem;
  }

  .rating-box {
    grid-template-columns: 60px 1fr;
  }

  .rating-box__badge {
    font-size: 2rem;
    min-height: 64px;
  }

  .section-heading h2,
  .updates-listing__head h2,
  .newsletter-card h2,
  .site-footer h2,
  .catalog-strip h2 {
    font-size: 0.98rem;
  }

  .newsletter-icons {
    margin-top: 14px;
  }

  .newsletter-icon {
    width: 48px;
    height: 42px;
    font-size: 1.5rem;
  }

  .newsletter-icon--mail {
    width: 68px;
  }
}
