:root {
  --black: #070707;
  --obsidian: #0e0e0e;
  --charcoal: #171717;
  --cream: #f5f0e8;
  --cream-muted: rgba(245, 240, 232, 0.52);
  --line: rgba(245, 240, 232, 0.18);
  --gold: #c3a77d;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Jost", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.page {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px clamp(24px, 4vw, 64px);
  transition: background 0.5s ease, padding 0.5s ease;
}

.site-header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
}

.brand-logo {
  display: block;
  width: clamp(112px, 10vw, 158px);
  height: auto;
  max-height: 76px;
  object-fit: contain;
}

.brand-mark,
.footer-mark {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  line-height: 0.8;
  letter-spacing: 0.22em;
}

.brand-subtitle {
  margin-top: 5px;
  color: rgba(245, 240, 232, 0.52);
  font-size: 8px;
  letter-spacing: 0.36em;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

.nav-link,
.region-link,
.mobile-nav-link {
  color: rgba(245, 240, 232, 0.72);
  font-size: 11px;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.nav-link:hover,
.region-link:hover,
.mobile-nav-link:hover {
  color: var(--cream);
  text-shadow: 0 0 11px rgba(255, 255, 255, 0.62);
}

.region-link {
  justify-self: end;
  color: rgba(245, 240, 232, 0.54);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 27px;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--cream);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.section-video,
.section-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.section-video {
  z-index: -3;
  object-fit: cover;
  filter: saturate(0.48) contrast(1.06);
}

.section-overlay {
  z-index: -2;
}

.section-overlay-dark {
  background: rgba(0, 0, 0, 0.84);
}

.section-overlay-soft {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.85), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.68)),
    rgba(0, 0, 0, 0.7);
}

.hero {
  display: grid;
  place-items: center;
  min-height: max(720px, 100vh);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  text-align: center;
}

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 8.8vw, 126px);
  font-weight: 300;
  letter-spacing: 0.045em;
  line-height: 0.9;
  text-wrap: balance;
  text-transform: uppercase;
}

.shimmer-text {
  background: linear-gradient(90deg, #7c7c7c 0%, #fff 42%, #a2a2a2 58%, #fff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 10s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.scroll-cue span {
  color: rgba(245, 240, 232, 0.35);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(245, 240, 232, 0.68), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleY(0.72);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

.section-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  padding: 126px clamp(24px, 5vw, 80px) 70px;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(245, 240, 232, 0.8);
  font-size: clamp(10px, 1.4vw, 15px);
  letter-spacing: 0.38em;
  text-transform: uppercase;
}

.section-kicker strong {
  font-weight: 600;
}

.gold-line {
  display: block;
  width: clamp(42px, 8vw, 118px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 240, 232, 0.58));
}

.gold-line-right {
  background: linear-gradient(90deg, rgba(245, 240, 232, 0.58), transparent);
}

.watch-carousel {
  display: flex;
  width: 100%;
  max-width: 1240px;
  margin-top: 32px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.watch-track {
  position: relative;
  display: grid;
  min-height: 590px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}

.watch-card {
  position: relative;
  min-width: 0;
  opacity: 0.54;
  transform: scale(0.84);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.65s ease, filter 0.65s ease;
  filter: grayscale(0.24);
}

.watch-card:nth-child(1),
.watch-card:nth-child(6) {
  transform: scale(0.77);
  opacity: 0.25;
}

.watch-card:nth-child(2),
.watch-card:nth-child(5) {
  transform: scale(0.86);
  opacity: 0.48;
}

.watch-card:nth-child(3),
.watch-card:nth-child(4) {
  z-index: 2;
  transform: scale(1);
  opacity: 0.95;
  filter: grayscale(0);
}

.watch-image-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #0a0a0a;
}

.watch-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 48%);
}

.watch-label {
  position: absolute;
  right: 13px;
  bottom: 15px;
  left: 13px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  text-transform: uppercase;
}

.watch-label span {
  color: rgba(245, 240, 232, 0.87);
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 27px);
  letter-spacing: 0.08em;
}

.watch-label small {
  color: rgba(245, 240, 232, 0.46);
  font-size: 8px;
  letter-spacing: 0.31em;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding-top: 20px;
}

.carousel-arrow {
  color: rgba(245, 240, 232, 0.62);
  font-family: var(--display);
  font-size: 27px;
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.carousel-arrow:hover {
  color: var(--cream);
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 5px;
  height: 5px;
  border: 1px solid rgba(245, 240, 232, 0.48);
  border-radius: 50%;
  transition: width 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.carousel-dot.is-active {
  width: 18px;
  border-radius: 10px;
  border-color: var(--cream);
  background: var(--cream);
}

.section-scroll-cue {
  position: relative;
  bottom: auto;
  left: auto;
  margin-top: 15px;
  transform: none;
}

.categories {
  min-height: auto;
  background: var(--charcoal);
}

.section-kicker-dark {
  color: rgba(245, 240, 232, 0.83);
}

.category-grid {
  display: grid;
  width: 100%;
  max-width: 1240px;
  margin-top: 56px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #101010;
  transition: transform 0.45s ease;
}

.category-card:hover {
  transform: translateY(-7px);
}

.category-card::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  content: "";
  pointer-events: none;
  transition: border-color 0.5s ease;
}

.category-card:hover::after {
  border-color: rgba(214, 214, 214, 0.2);
}

.category-image {
  position: relative;
  height: 288px;
  overflow: hidden;
}

.category-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 58%);
  content: "";
}

.category-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.9s ease;
}

.category-card:hover .category-image img {
  opacity: 0.95;
  transform: scale(1.07);
}

.category-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px 27px;
}

.category-copy span {
  color: rgba(245, 240, 232, 0.68);
  font-family: var(--display);
  font-size: clamp(19px, 2vw, 28px);
  letter-spacing: 0.07em;
  transition: color 0.35s ease;
}

.category-card:hover .category-copy span {
  color: #d6d6d6;
}

.category-copy i {
  display: block;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 240, 232, 0.48), transparent);
  transition: width 0.45s ease;
}

.category-card:hover .category-copy i {
  width: 90px;
}

.more-link {
  display: inline-block;
  margin-top: 46px;
  padding: 25px 42px;
  border: 1px solid rgba(245, 240, 232, 0.06);
  border-radius: 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.08));
  color: rgba(255, 255, 255, 0.5);
  font-size: 21px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.more-link:hover {
  border-color: rgba(214, 214, 214, 0.24);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(-4px);
}

.dark-cue {
  margin-top: 70px;
}

.about {
  background: var(--charcoal);
}

.about-content {
  display: grid;
  width: min(1240px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.about-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 0.65s ease, transform 0.8s ease;
}

.about-image-wrap:hover img {
  opacity: 0.92;
  transform: scale(1.025);
}

.about-corner {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 82px;
  height: 82px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.about-eyebrow span {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(245, 240, 232, 0.68);
}

.about-copy h2 {
  margin: 25px 0 32px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(60px, 7vw, 106px);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 0.82;
}

.about-text {
  display: grid;
  gap: 19px;
  max-width: 610px;
  color: rgba(245, 240, 232, 0.52);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.75;
}

.about-text p {
  margin: 0;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--obsidian);
}

.footer-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-logo {
  display: block;
  width: min(180px, 62vw);
  height: auto;
  object-fit: contain;
}

.footer-manifesto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin: 46px auto 72px;
  color: rgba(245, 240, 232, 0.3);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-align: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 240, 232, 0.3);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .desktop-nav,
  .region-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: center;
    gap: 23px;
    overflow: hidden;
    border-top: 1px solid rgba(195, 167, 125, 0.12);
    background: rgba(12, 12, 12, 0.93);
    backdrop-filter: blur(15px);
    opacity: 0;
    padding: 0 24px;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  }

  .mobile-nav.is-open {
    max-height: 310px;
    opacity: 1;
    padding: 30px 24px;
  }

  .mobile-nav-link {
    font-size: 12px;
  }

  .watch-track {
    min-height: 540px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 680px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 20px 22px;
  }

  .brand-mark {
    font-size: 27px;
  }

  .brand-logo {
    width: 104px;
    max-height: 58px;
  }

  .hero-title {
    font-size: clamp(45px, 13vw, 76px);
    line-height: 0.92;
  }

  .section-content {
    padding: 112px 20px 62px;
  }

  .section-kicker {
    gap: 9px;
    font-size: 9px;
    letter-spacing: 0.25em;
  }

  .gold-line {
    width: 29px;
  }

  .watch-carousel {
    margin-top: 18px;
  }

  .watch-track {
    min-height: 495px;
    grid-template-columns: repeat(6, 60vw);
    gap: 4px;
    overflow: hidden;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px;
  }

  .watch-card {
    transform: scale(0.72);
    opacity: 0.25;
  }

  .watch-card:nth-child(1),
  .watch-card:nth-child(6) {
    transform: scale(0.67);
  }

  .watch-card:nth-child(2),
  .watch-card:nth-child(5) {
    transform: scale(0.72);
    opacity: 0.34;
  }

  .watch-card:nth-child(3),
  .watch-card:nth-child(4) {
    transform: scale(0.86);
    opacity: 0.88;
  }

  .watch-card.is-focus {
    z-index: 3;
    transform: scale(1);
    opacity: 1;
  }

  .watch-card.is-focus + .watch-card {
    transform: scale(0.75);
    opacity: 0.42;
  }

  .carousel-controls {
    gap: 17px;
    padding-top: 8px;
  }

  .category-grid {
    margin-top: 34px;
    gap: 13px;
  }

  .category-image {
    height: 205px;
  }

  .category-copy {
    padding: 18px 15px 20px;
  }

  .category-copy span {
    font-size: 20px;
  }

  .category-copy i {
    width: 28px;
  }

  .more-link {
    margin-top: 30px;
    padding: 20px 29px;
    font-size: 15px;
  }

  .about-content {
    gap: 45px;
  }

  .about-corner {
    top: -8px;
    left: -8px;
    width: 55px;
    height: 55px;
  }

  .about-copy h2 {
    margin-top: 19px;
    margin-bottom: 26px;
    font-size: 67px;
  }

  .about-text {
    font-size: 12px;
    line-height: 1.7;
  }

  .footer-inner {
    width: min(100% - 40px, 1240px);
    padding-top: 54px;
  }

  .footer-manifesto {
    margin: 37px auto 54px;
    font-size: 11px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 10px;
    text-align: center;
  }
}

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

/* Storefront pages and account flow */
.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.cart-link,
.account-button {
  color: rgba(245, 240, 232, 0.64);
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cart-link span {
  display: inline-flex;
  min-width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  border: 1px solid rgba(245, 240, 232, 0.24);
  border-radius: 50%;
  font-size: 8px;
  letter-spacing: 0;
}

.cart-link:hover,
.account-button:hover,
.cart-link.is-current {
  color: var(--cream);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.58);
}

.inner-header {
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(14px);
}

.shop-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(59, 52, 42, 0.13), transparent 34rem),
    var(--charcoal);
}

.shop-page {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 156px 0 100px;
}

.shop-heading {
  max-width: 680px;
  margin-bottom: 54px;
}

.shop-kicker {
  color: rgba(245, 240, 232, 0.45);
  font-size: 10px;
  letter-spacing: 0.35em;
  line-height: 1.4;
  text-transform: uppercase;
}

.shop-heading h1 {
  margin: 20px 0 16px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(66px, 9vw, 124px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 0.82;
}

.shop-heading p {
  max-width: 530px;
  margin: 0;
  color: rgba(245, 240, 232, 0.47);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.65;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.filter-button {
  padding: 9px 13px;
  border: 1px solid rgba(245, 240, 232, 0.13);
  border-radius: 20px;
  color: rgba(245, 240, 232, 0.52);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: rgba(245, 240, 232, 0.55);
  background: rgba(245, 240, 232, 0.08);
  color: var(--cream);
}

.orders-link,
.back-link,
.text-link {
  color: rgba(245, 240, 232, 0.58);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.orders-link:hover,
.back-link:hover,
.text-link:hover {
  color: var(--cream);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.34);
}

.product-card-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0a0a0a;
}

.product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transform: scale(1.01);
  transition: opacity 0.65s ease, transform 0.8s ease;
}

.product-card-image:hover img {
  opacity: 0.98;
  transform: scale(1.06);
}

.product-card-view {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  padding-top: 12px;
  border-top: 1px solid rgba(245, 240, 232, 0.38);
  color: rgba(245, 240, 232, 0.74);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.product-card-image:hover .product-card-view {
  opacity: 1;
  transform: translateY(0);
}

.product-card-copy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 8px;
}

.product-card-copy h2 {
  margin: 0;
  color: rgba(245, 240, 232, 0.84);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.product-card-copy p {
  margin: 2px 0 0;
  color: rgba(245, 240, 232, 0.39);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.product-card-copy strong {
  padding-top: 8px;
  color: rgba(245, 240, 232, 0.66);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.product-add {
  width: calc(100% - 40px);
  margin: 10px 20px 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  color: rgba(245, 240, 232, 0.53);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-align: left;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.product-add:hover {
  border-color: rgba(245, 240, 232, 0.54);
  color: var(--cream);
}

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

.back-link {
  display: inline-block;
  margin-bottom: 42px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.product-detail-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #090909;
}

.product-detail-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.product-detail-copy h1 {
  margin: 22px 0 0;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(65px, 8vw, 118px);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 0.78;
}

.product-subtitle {
  margin: 11px 0 0;
  color: rgba(245, 240, 232, 0.44);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.product-price {
  margin: 30px 0 23px;
  color: rgba(245, 240, 232, 0.83);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.product-description {
  max-width: 500px;
  margin: 0;
  color: rgba(245, 240, 232, 0.5);
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.product-specs {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-specs div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.product-specs span {
  color: rgba(245, 240, 232, 0.38);
  text-transform: uppercase;
}

.product-specs strong {
  color: rgba(245, 240, 232, 0.72);
  font-weight: 400;
  text-align: right;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
}

.quantity-control {
  display: inline-flex;
  height: 46px;
  align-items: center;
  border: 1px solid rgba(245, 240, 232, 0.2);
}

.quantity-control button,
.quantity-control output {
  display: inline-flex;
  width: 42px;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.67);
  font-size: 14px;
}

.quantity-control button:hover {
  color: var(--cream);
  background: rgba(245, 240, 232, 0.08);
}

.gold-submit {
  min-height: 46px;
  padding: 0 24px;
  background: var(--cream);
  color: #161616;
  font-size: 10px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
}

.gold-submit:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-2px);
}

.gold-submit:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.text-link {
  display: inline-block;
  margin-top: 25px;
}

.cart-page,
.orders-page {
  padding-bottom: 150px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 44px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 15px;
}

.cart-line {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-line-image {
  display: block;
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  background: #090909;
}

.cart-line-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.cart-line-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 20px;
  align-items: start;
}

.cart-line-copy h2 {
  margin: 9px 0 3px;
  color: rgba(245, 240, 232, 0.86);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.cart-line-copy p {
  margin: 0;
  color: rgba(245, 240, 232, 0.4);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.cart-line-copy > strong {
  padding-top: 15px;
  color: rgba(245, 240, 232, 0.72);
  font-size: 13px;
  font-weight: 400;
}

.cart-line-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 19px;
}

.cart-line-bottom .quantity-control {
  height: 36px;
}

.cart-line-bottom .quantity-control button,
.cart-line-bottom .quantity-control output {
  width: 32px;
  font-size: 12px;
}

.remove-button {
  color: rgba(245, 240, 232, 0.36);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.remove-button:hover {
  color: var(--cream);
}

.checkout-panel {
  position: sticky;
  top: 110px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.17);
}

.checkout-summary {
  display: grid;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.checkout-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(245, 240, 232, 0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.checkout-summary strong {
  color: rgba(245, 240, 232, 0.72);
  font-weight: 400;
}

.checkout-summary .summary-total {
  margin-top: 10px;
  color: var(--cream);
  font-size: 12px;
}

.checkout-summary .summary-total strong {
  color: var(--cream);
}

.checkout-form {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

.checkout-form h2 {
  margin: 0 0 5px;
  color: rgba(245, 240, 232, 0.8);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.checkout-form label,
.auth-form label {
  display: grid;
  gap: 7px;
  color: rgba(245, 240, 232, 0.42);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form select,
.auth-form input {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(245, 240, 232, 0.17);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--cream);
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 0 12px;
}

.checkout-form input:focus,
.checkout-form select:focus,
.auth-form input:focus {
  border-color: rgba(245, 240, 232, 0.62);
}

.form-message,
.auth-error {
  min-height: 16px;
  margin: 0;
  color: #d3a8a0;
  font-size: 10px;
  line-height: 1.4;
}

.empty-state {
  display: grid;
  min-height: 290px;
  place-items: center;
  align-content: center;
  gap: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  text-align: center;
}

.empty-state h2 {
  margin: 0;
  color: rgba(245, 240, 232, 0.8);
  font-family: var(--display);
  font-size: 38px;
  font-weight: 300;
}

.inline-submit {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
}

.orders-list {
  display: grid;
  gap: 18px;
}

.order-card {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(0, 0, 0, 0.14);
}

.order-card-top,
.order-card-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.order-card-top h2 {
  margin: 9px 0 0;
  color: rgba(245, 240, 232, 0.75);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
}

.order-card-top > strong {
  color: #c7b790;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.order-products {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 23px 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-products a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  color: rgba(245, 240, 232, 0.58);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.order-products img {
  width: 54px;
  height: 62px;
  object-fit: cover;
  opacity: 0.75;
}

.order-products span {
  display: grid;
  gap: 5px;
}

.order-products small {
  color: rgba(245, 240, 232, 0.33);
  font-size: 9px;
}

.order-card-bottom {
  color: rgba(245, 240, 232, 0.38);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.order-card-bottom strong {
  color: rgba(245, 240, 232, 0.75);
  font-weight: 400;
}

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

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(7px);
}

.auth-dialog {
  position: relative;
  width: min(100%, 445px);
  padding: 38px;
  border: 1px solid rgba(245, 240, 232, 0.18);
  background: #131313;
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.48);
}

.auth-close {
  position: absolute;
  top: 15px;
  right: 19px;
  color: rgba(245, 240, 232, 0.55);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.auth-close:hover {
  color: var(--cream);
}

.auth-kicker {
  color: rgba(245, 240, 232, 0.43);
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.auth-dialog h2 {
  margin: 18px 0 9px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 50px;
  font-weight: 300;
  line-height: 0.9;
}

.auth-intro {
  margin: 0;
  color: rgba(245, 240, 232, 0.46);
  font-size: 12px;
  line-height: 1.5;
}

.auth-tabs {
  display: flex;
  gap: 22px;
  margin: 27px 0 21px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-tab {
  padding: 0 0 11px;
  color: rgba(245, 240, 232, 0.37);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auth-tab.is-active {
  color: var(--cream);
  border-bottom: 1px solid var(--cream);
}

.auth-form {
  display: grid;
  gap: 15px;
}

.auth-form .gold-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-account {
  display: grid;
  gap: 15px;
  margin-top: 25px;
}

.auth-account p {
  margin: 0;
  color: rgba(245, 240, 232, 0.47);
  font-size: 12px;
  line-height: 1.5;
}

.auth-account p strong {
  display: block;
  margin-top: 6px;
  color: rgba(245, 240, 232, 0.78);
  font-weight: 400;
}

.auth-account-link {
  color: rgba(245, 240, 232, 0.75);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-align: left;
  text-transform: uppercase;
}

.auth-account-link:hover {
  color: var(--cream);
}

.auth-logout {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 240, 232, 0.38);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .header-actions {
    position: absolute;
    top: 25px;
    right: 66px;
  }

  .menu-toggle {
    position: absolute;
    top: 19px;
    right: 22px;
  }

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

  .product-detail,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .shop-page {
    width: min(100% - 40px, 1240px);
    padding-top: 125px;
  }

  .shop-heading {
    margin-bottom: 35px;
  }

  .shop-heading h1 {
    font-size: 70px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-detail-copy h1 {
    font-size: 72px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity-control {
    width: fit-content;
  }

  .cart-line {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px;
  }

  .cart-line-copy {
    display: block;
  }

  .cart-line-copy > strong {
    display: block;
    padding-top: 13px;
  }

  .cart-line-bottom {
    margin-top: 17px;
  }

  .checkout-panel,
  .order-card {
    padding: 19px;
  }

  .order-card-top,
  .order-card-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .auth-dialog {
    padding: 31px 24px 26px;
  }

  .auth-dialog h2 {
    font-size: 44px;
  }

  .header-actions {
    right: 58px;
    gap: 10px;
  }

  .cart-link,
  .account-button {
    font-size: 8px;
    letter-spacing: 0.14em;
  }
}
