:root {
  color: #f8f5ed;
  background: #050505;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #050505;
}

body {
  min-width: 320px;
  margin: 0;
  background: #050505;
}

body.has-lightbox {
  overflow: hidden;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0));
}

.brand-link,
.site-nav a {
  text-decoration: none;
}

.brand-link {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  color: #d7d0c4;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(238, 202, 128, 0.16), transparent 36rem),
    linear-gradient(180deg, #111111 0%, #050505 42rem);
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1280px, calc(100% - 2rem));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(6rem, 12vh, 8rem) 0 clamp(4rem, 9vh, 6rem);
  text-align: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.28), rgba(5, 5, 5, 0.86)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.92));
}

.hero__mark {
  position: absolute;
  top: 47%;
  left: 50%;
  z-index: -2;
  width: min(92vw, 66rem);
  max-width: none;
  height: auto;
  opacity: 0.2;
  filter: invert(1);
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.hero__content {
  width: min(100%, 68rem);
  padding-top: 2rem;
}

.hero__eyebrow,
.section-heading__label,
.shop__label {
  margin: 0 0 0.85rem;
  color: #d4af68;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(4rem, 10vw, 9.5rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero__copy {
  max-width: 44rem;
  margin: 1.35rem auto 0;
  color: #d7d0c4;
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  color: #111111;
  font-weight: 900;
  text-decoration: none;
  background: #f8f5ed;
  border: 1px solid transparent;
  border-radius: 8px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #d4af68;
  transform: translateY(-1px);
}

.button--hero {
  margin-top: 1.7rem;
}

.button:focus-visible,
.social-link:focus-visible,
.site-nav a:focus-visible,
.brand-link:focus-visible,
.gallery-thumb:focus-visible,
.shop-gallery__stage:focus-visible,
.lightbox__close:focus-visible {
  outline: 3px solid #d4af68;
  outline-offset: 4px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100%, 44rem);
  margin: clamp(2rem, 6vh, 4rem) auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.hero__facts div {
  padding: 1rem;
  background: rgba(12, 12, 12, 0.78);
}

.hero__facts dt {
  color: #8f887d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__facts dd {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
}

.shop,
.story {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
}

.shop {
  display: grid;
  grid-template-columns: minmax(18rem, 1.06fr) minmax(22rem, 0.94fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 100svh;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.shop__visual {
  position: relative;
  min-width: 0;
}

.shop__label {
  position: absolute;
  top: 1.1rem;
  left: calc(5.65rem + 1.1rem);
  z-index: 2;
  margin: 0;
}

.shop-gallery {
  display: grid;
  grid-template-columns: 4.75rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
}

.shop-gallery__thumbs {
  display: grid;
  gap: 0.75rem;
}

.gallery-thumb {
  width: 4.75rem;
  aspect-ratio: 1;
  padding: 0.18rem;
  overflow: hidden;
  cursor: pointer;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  opacity: 0.58;
  transition:
    border-color 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: #d4af68;
  opacity: 1;
}

.gallery-thumb.is-active {
  transform: translateX(2px);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.shop-gallery__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    #111111;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
}

.product-showcase {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-panel {
  min-width: 0;
}

.section-heading {
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  max-width: 42rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.shop-panel__copy {
  max-width: 35rem;
  margin: 0 0 2rem;
  color: #bfb7aa;
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.product-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 8.25rem;
  padding: clamp(1.1rem, 3vw, 1.6rem);
  background: rgba(18, 18, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.product-card__size {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.15rem);
  font-weight: 950;
  line-height: 1;
}

.product-card__shipping {
  margin: 0;
  color: #a9a196;
  font-size: 0.95rem;
  font-weight: 650;
}

.product-card__price {
  margin: 0.25rem 0 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 900;
}

.story {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.story .section-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.32fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.story__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
}

.story__grid article {
  min-height: 13rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #101010;
}

.story__grid h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.story__grid p {
  margin: 1rem 0 0;
  color: #bfb7aa;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1rem 4rem;
  color: #b6afa3;
}

.site-footer p {
  margin: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox__image {
  width: min(100%, 88rem);
  max-height: 86svh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  color: #111111;
  font-weight: 900;
  cursor: pointer;
  background: #f8f5ed;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 860px) {
  .hero {
    min-height: 92svh;
    padding-top: 4.75rem;
    padding-bottom: 2.5rem;
  }

  .hero__mark {
    top: 44%;
    width: min(92vw, 28rem);
    opacity: 0.2;
  }

  .hero__content {
    padding-top: 0;
    transform: translateY(1rem);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.1rem);
  }

  .hero__copy {
    font-size: 1rem;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    width: min(100%, 25rem);
  }

  .shop {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }

  .shop-panel {
    order: 2;
  }

  .shop__visual {
    order: 1;
  }

  .shop-gallery {
    grid-template-columns: 1fr;
  }

  .shop-gallery__stage {
    order: 1;
  }

  .shop-gallery__thumbs {
    order: 2;
    grid-auto-flow: column;
    grid-auto-columns: minmax(5rem, 1fr);
    overflow-x: auto;
  }

  .gallery-thumb {
    width: auto;
  }

  .gallery-thumb.is-active {
    transform: translateY(-2px);
  }

  .shop__label {
    left: 1.1rem;
  }

  .product-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .product-card .button {
    width: 100%;
  }

  .story .section-heading,
  .story__grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-top: 0.85rem;
  }

  .site-nav {
    gap: 0.85rem;
  }

  .brand-link {
    font-size: 0.78rem;
  }

  .hero__content {
    transform: translateY(0.35rem);
  }

  .hero__facts div {
    padding: 0.85rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}
