:root {
  --bg: #090908;
  --surface: #11110f;
  --surface-2: #181714;
  --surface-3: #22201b;
  --ink: #f7f1e8;
  --muted: #b8aea0;
  --dim: #817669;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(214, 174, 95, .34);
  --gold: #d6ae5f;
  --teal: #5ab7b2;
  --danger: #9f4b45;
  --shadow: 0 18px 48px rgba(0, 0, 0, .34);
  --scroll: 0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .46; }
img { max-width: 100%; display: block; }

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: calc(var(--scroll) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(14px, 4vw, 48px);
  background: rgba(9, 9, 8, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  object-fit: cover;
}

.nav-brand strong,
.nav-brand small {
  display: block;
}

.nav-brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.nav-brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.nav-account,
.mobile-account {
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-account:hover,
.mobile-account:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
}

.nav-account {
  border: 1px solid rgba(214, 174, 95, .32);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.mobile-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  top: 76px;
  z-index: 49;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 11, .98);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open { display: grid; }

.mobile-nav a,
.mobile-account {
  padding: 12px;
  border: 0;
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

main {
  width: min(1480px, calc(100vw - 32px));
  margin: 0 auto;
}

.album-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 82px) 0 34px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.catalog-panel h2,
.contact-stage h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(38px, 7vw, 74px);
  line-height: .96;
}

.hero-copy p,
.section-head p,
.contact-stage p {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.hero-showcase {
  display: grid;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #050505;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .84));
  pointer-events: none;
}

.hero-visual span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 6px;
  text-align: left;
}

.hero-visual small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-visual strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.15;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.search-panel {
  display: grid;
  gap: 12px;
}

.hero-search {
  min-height: 62px;
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
}

.hero-search svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.hero-search input::placeholder { color: var(--dim); }

.hero-search-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(90, 183, 178, .5);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(90, 183, 178, .18);
}

.hero-search-button svg {
  width: 21px;
  height: 21px;
  stroke: var(--teal);
}

.hero-tags,
.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.hero-tags::-webkit-scrollbar,
.filter-row::-webkit-scrollbar {
  display: none;
}

.tag-chip,
.filter-button,
.load-more,
.action-primary,
.action-secondary,
.contact-actions a {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface-2);
}

.tag-chip,
.filter-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.tag-chip:hover,
.filter-button:hover,
.filter-button.is-active,
.filter-button.is-active {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(214, 174, 95, .1);
}

.weekly-deals,
.brand-command,
.catalog-deck,
.contact-stage {
  padding: clamp(34px, 6vw, 68px) 0;
  border-bottom: 1px solid var(--line);
}

.weekly-deals[hidden] { display: none; }

.section-head,
.catalog-panel,
.contact-stage {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.section-head h2,
.catalog-panel h2,
.contact-stage h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.weekly-deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.weekly-deal-public-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.weekly-deal-public-card.is-requested {
  border-color: rgba(214, 174, 95, .72);
  box-shadow: 0 0 0 1px rgba(214, 174, 95, .22);
}

.weekly-deal-public-image {
  position: relative;
  min-height: 180px;
  background: #050505;
}

.weekly-deal-public-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.weekly-deal-public-image span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(214, 174, 95, .48);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--gold);
  background: rgba(8, 8, 7, .78);
  font-size: 12px;
  font-weight: 900;
}

.weekly-deal-public-copy {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.weekly-deal-public-copy small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.weekly-deal-public-copy strong {
  font-size: 20px;
  line-height: 1.12;
}

.weekly-deal-public-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.weekly-deal-description {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.weekly-deal-public-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.weekly-deal-public-actions button,
.weekly-deal-public-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(214, 174, 95, .11);
  font-size: 12px;
  font-weight: 900;
}

.weekly-deal-public-card {
  cursor: pointer;
}

.weekly-deal-public-card:focus-within,
.weekly-deal-public-card:hover {
  border-color: rgba(214, 174, 95, .58);
}

.weekly-deal-modal {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .78);
}

.weekly-deal-modal.is-open {
  display: grid;
}

.weekly-deal-dialog {
  position: relative;
  width: min(1120px, calc(100vw - 36px));
  max-height: min(860px, 92svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  overflow: hidden;
  border: 1px solid rgba(214, 174, 95, .42);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.weekly-deal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(0, 0, 0, .68);
  font-size: 20px;
}

.weekly-deal-modal-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  background: #050505;
}

.weekly-deal-modal-media img,
.weekly-deal-modal-media video,
.weekly-deal-modal-media iframe {
  width: 100%;
  height: 100%;
  max-height: min(860px, 92svh);
}

.weekly-deal-modal-media img,
.weekly-deal-modal-media video {
  object-fit: contain;
}

.weekly-deal-modal-media iframe {
  min-height: min(520px, 70svh);
  border: 0;
  background: #050505;
}

.weekly-deal-modal-copy {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  overflow-y: auto;
}

.weekly-deal-modal-copy h3 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.08;
}

.weekly-deal-modal-countdown {
  min-height: 34px;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(214, 174, 95, .48);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--gold);
  background: rgba(214, 174, 95, .09);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.weekly-deal-modal-subtitle,
.weekly-deal-modal-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.weekly-deal-modal-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
  padding-right: 4px;
}

.weekly-deal-modal-gallery button {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
}

.weekly-deal-modal-gallery button.is-active {
  border-color: var(--gold);
}

.weekly-deal-modal-gallery img,
.weekly-deal-modal-gallery span {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  object-fit: contain;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.weekly-deal-modal-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.weekly-deal-modal-actions button,
.weekly-deal-modal-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(214, 174, 95, .11);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.weekly-deal-modal-actions a {
  background: rgba(48, 194, 183, .12);
  border-color: rgba(48, 194, 183, .48);
}

.brand-grid {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-color: rgba(214, 174, 95, .62) rgba(255, 255, 255, .08);
  scrollbar-width: thin;
}

.brand-grid::-webkit-scrollbar {
  height: 8px;
}

.brand-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.brand-grid::-webkit-scrollbar-thumb {
  background: rgba(214, 174, 95, .62);
  border-radius: 999px;
}

.brand-tile {
  flex: 0 0 220px;
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  text-align: left;
}

.brand-tile:hover,
.brand-tile.is-active {
  border-color: var(--line-strong);
  background: var(--surface-2);
}

.brand-tile img {
  width: 76px;
  height: 68px;
  border-radius: 6px;
  background: #050505;
  object-fit: contain;
}

.brand-tile span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.brand-tile strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
}

.brand-tile small {
  color: var(--muted);
  font-size: 12px;
}

.catalog-panel {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.4fr);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.catalog-count {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-tools {
  min-width: 0;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.brand-dropdown {
  position: relative;
  min-width: min(100%, 260px);
}

.brand-dropdown-button {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  text-align: left;
}

.brand-dropdown-button::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
}

.brand-dropdown-button[aria-expanded="true"]::after {
  transform: rotate(225deg) translateY(-2px);
}

.brand-dropdown-button span {
  grid-column: 1;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand-dropdown-button strong {
  grid-column: 1;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 45;
  width: min(340px, calc(100vw - 32px));
  max-height: min(520px, 70svh);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(17, 17, 15, .98);
  box-shadow: var(--shadow);
}

.brand-menu[hidden] { display: none; }

.brand-menu-item {
  width: 100%;
  min-height: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  text-align: left;
}

.brand-menu-item:hover,
.brand-menu-item.is-active {
  color: var(--ink);
  background: rgba(214, 174, 95, .1);
}

.brand-menu-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-menu-item small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.catalog-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.catalog-pager[hidden] { display: none; }

.catalog-pager-top {
  justify-content: flex-end;
  margin: 0;
}

.catalog-pager button,
.pager-gap,
.pager-summary {
  min-width: 38px;
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--surface-2);
  font-size: 12px;
  font-weight: 900;
}

.catalog-pager button.is-active {
  border-color: rgba(214, 174, 95, .7);
  color: #080807;
  background: var(--gold);
}

.pager-gap {
  min-width: 26px;
  border-color: transparent;
  background: transparent;
}

.pager-summary {
  min-width: auto;
  color: var(--gold);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(214px, 1fr));
  gap: 14px;
}

.watch-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color .16s ease, transform .16s ease;
}

.watch-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

@supports (content-visibility: auto) {
  .watch-card {
    content-visibility: auto;
    contain-intrinsic-size: 330px;
  }
}

.watch-open {
  width: 100%;
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.watch-open > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #050505;
  object-fit: contain;
}

.watch-copy {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 12px;
}

.watch-copy i {
  color: var(--gold);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.watch-copy strong {
  display: -webkit-box;
  min-height: 40px;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.watch-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 42px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}

.empty-state strong {
  color: var(--ink);
}

.load-more {
  display: block;
  min-width: 190px;
  min-height: 46px;
  margin: 22px auto 0;
  padding: 0 22px;
  font-weight: 900;
}

.load-more[hidden] { display: none; }

.contact-stage {
  margin-bottom: 40px;
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-actions a,
.action-primary,
.action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 900;
}

.contact-actions a:first-child,
.action-primary {
  border-color: rgba(90, 183, 178, .48);
  background: rgba(90, 183, 178, .12);
}

.action-secondary {
  border-color: rgba(214, 174, 95, .54);
  background: rgba(214, 174, 95, .11);
}

.action-primary[disabled],
.action-secondary[disabled] {
  cursor: wait;
  opacity: .62;
}

.float-dock {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: grid;
  gap: 6px;
}

.float-dock a {
  min-width: 74px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 15, .92);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(12px);
}

body.phone-experience .float-dock {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .78);
}

.modal.is-open { display: grid; }

.modal-inner {
  position: relative;
  width: min(1280px, calc(100vw - 36px));
  max-height: min(900px, 92svh);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(0, 0, 0, .64);
  font-size: 20px;
}

.modal-media {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  background: #050505;
}

.modal-slider {
  width: 100%;
  height: min(900px, 92svh);
  overflow: hidden;
  touch-action: none;
  user-select: none;
  cursor: zoom-in;
}

.modal-slider.is-dragging,
.modal-slider.is-zoomed {
  cursor: grabbing;
}

.modal-track {
  height: 100%;
  display: flex;
  will-change: transform;
}

.modal-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: #050505;
}

.modal-slide-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  transform-origin: center center;
  will-change: transform;
  transition: transform .18s ease;
}

.modal-slider.is-zooming .modal-slide-image,
.modal-slider.is-dragging .modal-slide-image {
  transition: none;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 174, 95, .5);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(0, 0, 0, .68);
  opacity: .96;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
  transform: translateY(-50%);
  touch-action: manipulation;
}

.gallery-nav:hover,
.gallery-nav:focus-visible {
  opacity: 1;
  border-color: rgba(214, 174, 95, .9);
  background: rgba(0, 0, 0, .82);
}

.gallery-nav[hidden] {
  display: none;
}

.gallery-nav span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: inherit;
  font-size: 34px;
  line-height: 1;
}

.gallery-prev {
  left: 12px;
  padding: 0 3px 3px 0;
}

.gallery-next {
  right: 12px;
  padding: 0 0 3px 3px;
}

.gallery-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 0, 0, .58);
  font-size: 12px;
  font-weight: 900;
}

.modal-text {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
  overflow-y: auto;
}

.modal-text h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}

.modal-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-meta span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
}

.modal-meta b {
  color: var(--gold);
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-height: 230px;
  overflow-y: auto;
  padding-right: 4px;
}

.modal-gallery button {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
}

.modal-gallery button.is-active {
  border-color: var(--gold);
}

.modal-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.modal-content {
  display: grid;
  gap: 12px;
}

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

.try-on-modal {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(14px);
}

.try-on-modal.is-open {
  display: grid;
}

.try-on-dialog {
  position: relative;
  width: min(980px, calc(100vw - 28px));
  max-height: 92svh;
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 21, 18, .98), rgba(8, 8, 7, .98));
  box-shadow: var(--shadow);
}

.try-on-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 54px);
  z-index: 3;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(0, 0, 0, .72);
  font-size: 22px;
  font-weight: 900;
}

.try-on-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr);
  gap: 20px;
  padding: 28px;
}

.try-on-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.try-on-copy p,
.try-on-form small,
.try-on-status,
.try-on-request-card p,
.try-on-empty {
  color: var(--muted);
  line-height: 1.55;
}

.try-on-product {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.try-on-product img {
  width: 110px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  background: #050505;
}

.try-on-product div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.try-on-product span,
.try-on-request-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.try-on-product strong,
.try-on-request-card strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.try-on-product small,
.try-on-request-card small {
  color: var(--muted);
  font-size: 12px;
}

.try-on-panel,
.try-on-form,
.try-on-login {
  display: grid;
  gap: 12px;
}

.try-on-login {
  padding: 14px;
  border: 1px solid rgba(214, 174, 95, .38);
  border-radius: 8px;
  background: rgba(214, 174, 95, .08);
}

.try-on-login[hidden],
.try-on-form[hidden] {
  display: none;
}

.try-on-login span {
  color: var(--muted);
  line-height: 1.45;
}

.try-on-form {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.try-on-form label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.try-on-form input[type="file"] {
  width: 100%;
  min-height: 48px;
  padding: 10px;
  border: 1px dashed rgba(214, 174, 95, .48);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(0, 0, 0, .22);
}

.try-on-status {
  min-height: 42px;
  padding: 12px;
  border: 1px solid rgba(90, 183, 178, .28);
  border-radius: 8px;
  background: rgba(90, 183, 178, .08);
}

.try-on-result-grid,
.auth-try-on-list {
  display: grid;
  gap: 10px;
}

.try-on-request-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.try-on-request-card.is-compact {
  padding: 10px;
}

.try-on-request-card > div:first-child {
  display: grid;
  gap: 4px;
}

.try-on-output-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.try-on-output-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
}

.content-sections,
.content-faq {
  display: grid;
  gap: 10px;
}

.content-sections section,
.content-faq details {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.content-sections h4,
.content-sections p,
.content-faq p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.content-faq summary {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  background: rgba(0, 0, 0, .96);
  touch-action: none;
  user-select: none;
}

.image-viewer.is-open {
  display: block;
}

.image-viewer-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: none;
  cursor: zoom-out;
}

.image-viewer-stage.is-dragging,
.image-viewer-stage.is-zooming {
  cursor: grabbing;
}

.image-viewer-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  will-change: transform;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.image-viewer-stage.is-dragging img,
.image-viewer-stage.is-zooming img {
  transition: none;
}

.image-viewer-close,
.image-viewer-nav {
  position: absolute;
  z-index: 184;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 174, 95, .45);
  color: var(--ink);
  background: rgba(0, 0, 0, .72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .46);
  touch-action: manipulation;
}

.image-viewer-close {
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 22px;
}

.image-viewer-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: var(--gold);
  transform: translateY(-50%);
}

.image-viewer-nav[hidden] {
  display: none;
}

.image-viewer-nav span {
  font-size: 34px;
  line-height: 1;
}

.image-viewer-prev {
  left: 12px;
}

.image-viewer-next {
  right: 12px;
}

.image-viewer-counter {
  position: absolute;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 184;
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 0, 0, .68);
  font-size: 13px;
  font-weight: 900;
  transform: translateX(-50%);
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(14px);
}

.auth-modal.is-open {
  display: grid;
}

.auth-card {
  position: relative;
  width: min(460px, calc(100vw - 28px));
  max-height: 92svh;
  overflow-y: auto;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 21, 18, .98), rgba(10, 10, 9, .98));
  box-shadow: var(--shadow);
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(0, 0, 0, .42);
  font-size: 22px;
  font-weight: 900;
}

.auth-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  letter-spacing: 0;
}

.auth-card p {
  color: var(--muted);
  line-height: 1.55;
}

.auth-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.auth-mode button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  font-weight: 900;
}

.auth-mode button.is-active {
  border-color: rgba(214, 174, 95, .72);
  color: var(--ink);
  background: rgba(214, 174, 95, .16);
}

.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.auth-form label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-profile-form input[type="text"] {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .04);
  outline: none;
}

.auth-form input:focus {
  border-color: var(--gold);
}

.auth-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.auth-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.auth-turnstile {
  min-height: 65px;
}

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

.auth-secondary {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  font-weight: 800;
}

.auth-link-button {
  min-height: 36px;
  border: 0;
  color: var(--gold);
  background: transparent;
  font-weight: 800;
  text-align: center;
}

.auth-link-button:hover {
  color: var(--ink);
}

.auth-reset-password-field {
  display: grid;
  gap: 10px;
}

.auth-reset-password-field[hidden] {
  display: none;
}

.auth-user-panel {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(90, 183, 178, .32);
  border-radius: 8px;
  background: rgba(90, 183, 178, .08);
}

.auth-user-panel > span {
  color: var(--muted);
  font-size: 12px;
}

.auth-user-panel > strong {
  overflow-wrap: anywhere;
}

.auth-profile-form {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.auth-profile-form > label:not(.auth-check) {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auth-profile-form .auth-secondary {
  width: 100%;
}

.auth-security-panel {
  display: grid;
  gap: 9px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.auth-try-on-panel {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.auth-try-on-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.auth-try-on-head strong {
  color: var(--ink);
  font-size: 14px;
}

.auth-try-on-head .auth-secondary {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.auth-security-panel strong {
  color: var(--ink);
  font-size: 14px;
}

.auth-security-panel small,
.auth-try-on-panel small,
.auth-device-list span,
.auth-device-list small {
  color: var(--muted);
  font-size: 12px;
}

.auth-device-list {
  display: grid;
  gap: 7px;
}

.auth-device-list article {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: rgba(0, 0, 0, .16);
}

.auth-device-list article strong {
  color: var(--gold);
  font-size: 13px;
}

.auth-secondary.danger {
  border-color: rgba(255, 179, 170, .38);
  color: #ffcbc5;
}

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

.auth-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--gold);
  font-size: 13px;
}

.auth-message[data-tone="error"] {
  color: #ffb3aa;
}

.auth-message[data-tone="success"] {
  color: var(--teal);
}

@media (max-width: 980px) {
  main {
    width: min(100vw - 24px, 760px);
  }

  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .album-hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 28px;
  }

  .section-head,
  .catalog-panel,
  .contact-stage {
    display: grid;
    align-items: start;
  }

  .catalog-panel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalog-tools {
    justify-content: stretch;
  }

  .brand-dropdown {
    width: 100%;
  }

  .brand-menu {
    left: 0;
    right: auto;
    width: 100%;
  }

  .catalog-pager-top {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    flex-wrap: nowrap;
  }

  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .modal-inner {
    grid-template-columns: 1fr;
    max-height: 92svh;
    overflow-y: auto;
  }

  .weekly-deal-dialog {
    grid-template-columns: 1fr;
    max-height: 92svh;
    overflow-y: auto;
  }

  .weekly-deal-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    z-index: 122;
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .82);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .5);
  }

  .weekly-deal-modal-media {
    min-height: min(52svh, 430px);
  }

  .modal-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    z-index: 120;
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, .18);
    background: rgba(0, 0, 0, .82);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .5);
  }

  .modal-slider {
    height: min(52svh, 430px);
  }

  .gallery-nav {
    width: 44px;
    height: 44px;
  }

  .modal-text {
    overflow: visible;
  }
}

@media (max-width: 680px) {
  main {
    width: calc(100vw - 16px);
  }

  .nav-shell {
    min-height: 64px;
    padding: 10px 10px;
  }

  .nav-brand small { display: none; }

  .hero-copy h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero-copy p,
  .section-head p,
  .contact-stage p {
    font-size: 14px;
  }

  .brand-command,
  .weekly-deals,
  .catalog-deck,
  .contact-stage {
    padding: 24px 0;
  }

  .section-head p {
    margin-top: 9px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-visual img {
    min-height: 260px;
  }

  .brand-tile {
    flex-basis: 176px;
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 72px;
    gap: 9px;
  }

  .brand-tile img {
    width: 54px;
    height: 54px;
  }

  .brand-tile strong {
    font-size: 13px;
  }

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

  .watch-copy {
    padding: 9px;
    gap: 5px;
  }

  .watch-copy strong {
    min-height: 36px;
    font-size: 12px;
  }

  .watch-copy small {
    font-size: 11px;
  }

  .float-dock {
    right: 8px;
    bottom: 8px;
  }

  .float-dock a {
    min-width: 58px;
    padding: 8px 9px;
  }

  .modal {
    padding: 8px;
  }

  .weekly-deal-modal {
    padding: 8px;
  }

  .try-on-modal {
    padding: 8px;
  }

  .modal-inner {
    width: calc(100vw - 16px);
  }

  .weekly-deal-dialog {
    width: calc(100vw - 16px);
  }

  .try-on-dialog {
    width: calc(100vw - 16px);
  }

  .try-on-shell {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .try-on-product {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .try-on-product img {
    width: 92px;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .modal-text {
    padding: 18px;
  }

  .weekly-deal-modal-copy {
    padding: 18px;
  }

  .weekly-deal-modal-actions {
    grid-template-columns: 1fr;
  }

  .gallery-nav span {
    font-size: 31px;
  }

  .gallery-counter {
    right: 8px;
    bottom: 8px;
  }

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

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

@media (max-width: 390px) {
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watch-copy strong {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
