:root {
  --bg: #070708;
  --surface: #0f0f10;
  --surface-soft: #141416;
  --border: #3a3327;
  --text: #f4eddf;
  --muted: #c2b39b;
  --gold: #d5b176;
  --gold-soft: #9a7a46;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  --maxw: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Gotu", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 9% 14%, rgba(213, 177, 118, 0.18), transparent 34%),
    radial-gradient(circle at 80% 24%, rgba(213, 177, 118, 0.12), transparent 40%),
    linear-gradient(180deg, #070708 0%, #0a0a0b 42%, #070708 100%),
    var(--bg);
  background-size: 140% 140%, 140% 140%, 100% 100%, auto;
  background-position: 12% 18%, 78% 26%, center, center;
  animation: backgroundShimmer 24s ease-in-out infinite alternate;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Aboreto", serif;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

p {
  margin: 0;
}

.container {
  width: min(var(--maxw), calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(201, 168, 111, 0.4);
  background: linear-gradient(180deg, #0d0d0f 0%, #070708 100%);
  box-shadow: 0 10px 30px rgba(5, 10, 22, 0.42);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  font-family: "Aboreto", serif;
  font-size: 1.12rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f3f4fb;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 111, 0.38);
  background: rgba(0, 0, 0, 0.7);
  padding: 4px;
  object-fit: cover;
}

.main-nav {
  display: flex;
  gap: 1.15rem;
  font-size: 0.77rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9dded;
}

.main-nav a {
  position: relative;
  transition: color 0.22s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.24s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 7.8rem 0 3rem;
}

.hero-backdrop {
  position: absolute;
  inset: -10% 0 -10%;
  background-size: cover;
  background-position: center;
  transform: translate3d(0, var(--parallax-shift, 0px), 0) scale(1.06);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8, 9, 10, 0.92) 12%, rgba(8, 9, 10, 0.4) 56%, rgba(8, 9, 10, 0.24)),
    linear-gradient(120deg, rgba(12, 12, 12, 0.86), rgba(12, 12, 12, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 6.2rem);
  max-width: 12ch;
}

.hero p {
  margin-top: 0.9rem;
  color: #d7d0c2;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions a {
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 111, 0.45);
  padding: 0.62rem 1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  transition: 0.24s ease;
  background: rgba(8, 9, 10, 0.4);
}

.hero-actions a.secondary {
  border-color: #4c4130;
  color: #d8ccb7;
}

.hero-actions a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 111, 0.1);
}

.hero-logos {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-logos img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  background: rgba(0,0,0,0.15);
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.section {
  padding: 6rem 0;
}

.is-secondary {
  background: linear-gradient(180deg, #0b0b0c 0%, #12100c 100%);
}

.section-head {
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.section-head.is-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.3vw, 3.2rem);
}

.section-head a {
  color: var(--gold);
  font-size: 0.83rem;
}

.story-stack {
  display: grid;
  gap: 1.2rem;
}

.story-card {
  position: sticky;
  top: 100px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(130deg, rgba(20, 18, 14, 0.95), rgba(12, 12, 13, 0.97));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 1rem;
}

.story-card:nth-child(2) {
  top: 120px;
}

.story-card:nth-child(3) {
  top: 140px;
}

.story-card img {
  border-radius: 14px;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.signature-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.story-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  margin-bottom: 0.45rem;
}

.story-card p {
  color: var(--muted);
}

.cut-grid {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 0.45rem 0;
  background: linear-gradient(145deg, #13100d, #0f0f10);
}

.cut-grid::before,
.cut-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.cut-grid::before {
  left: 0;
  background: linear-gradient(to right, rgba(7, 7, 8, 0.95), rgba(7, 7, 8, 0));
}

.cut-grid::after {
  right: 0;
  background: linear-gradient(to left, rgba(7, 7, 8, 0.95), rgba(7, 7, 8, 0));
}

.cut-track {
  display: flex;
  width: max-content;
  gap: 0.85rem;
  padding: 0 0.85rem;
  animation: cutScroll 34s linear infinite;
  will-change: transform;
}

.cut-grid:hover .cut-track {
  animation-play-state: paused;
}

.cut-card {
  width: clamp(180px, 20vw, 250px);
  min-height: 190px;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 0.95rem;
  display: flex;
  align-items: end;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
  transform: translateY(0) scale(1);
  animation: cutPopup 4.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.18s);
  background:
    linear-gradient(to top, rgba(9, 8, 6, 0.88), rgba(7, 7, 8, 0.16)),
    var(--cut-image, url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=700&q=80")) center / cover;
}

.cut-card:nth-child(2n) { --i: 2; }
.cut-card:nth-child(3n) { --i: 4; }
.cut-card:nth-child(4n) { --i: 1; }
.cut-card:nth-child(5n) { --i: 3; }

.cut-card h3 {
  font-size: 1.05rem;
}

.product-grid,
.video-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.product-card,
.video-card,
.testimonial-card,
.cta-band {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}

.product-card,
.video-card,
.info-card,
.review-card,
.consult-block,
.aster-panel {
  position: relative;
}

.product-card::before,
.video-card::before,
.info-card::before,
.review-card::before,
.consult-block::before,
.aster-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(213, 177, 118, 0.08) 48%, transparent 100%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.product-card:hover::before,
.video-card:hover::before,
.info-card:hover::before,
.review-card:hover::before,
.consult-block:hover::before,
.aster-panel:hover::before {
  opacity: 1;
}

.product-card::after,
.video-card::after,
.info-card::after,
.review-card::after,
.consult-block::after,
.aster-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(213, 177, 118, 0.16) 0%,
    rgba(255, 229, 175, 0.7) 22%,
    rgba(213, 177, 118, 0.2) 45%,
    rgba(122, 96, 55, 0.1) 62%,
    rgba(213, 177, 118, 0.24) 100%
  );
  background-size: 240% 100%;
  animation: goldEdgeGlint 7s linear infinite;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
}

.product-card img,
.video-card img {
  height: 220px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.06);
}

.product-card h3 {
  font-size: 1.18rem;
  padding: 0.9rem 0.85rem 0.32rem;
}

.product-card p {
  padding: 0 0.85rem 0.95rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-card-clickable {
  display: block;
  cursor: pointer;
}

.product-card-clickable:hover {
  border-color: rgba(201, 168, 111, 0.6);
}

.product-card-clickable:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.aster-panel {
  margin-top: 1.15rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(150deg, #15191c, #111315);
  padding: 1rem;
}

.aster-panel-head h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.aster-panel-head p:last-child {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.aster-controls {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.aster-control label {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 0.32rem;
}

.aster-control select {
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #111418;
  color: var(--text);
  padding: 0.55rem 0.68rem;
  font-family: inherit;
}

.aster-control select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.aster-results-count {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.aster-variant-list {
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.aster-variant-item {
  border: 1px solid var(--border);
  background: #12161a;
  border-radius: 12px;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  text-align: left;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.aster-variant-item:hover {
  border-color: rgba(201, 168, 111, 0.6);
}

.aster-variant-item.is-selected {
  border-color: var(--gold);
  background: rgba(201, 168, 111, 0.12);
}

.aster-variant-name,
.aster-variant-meta,
.aster-variant-price {
  display: block;
}

.aster-variant-name {
  font-size: 0.84rem;
}

.aster-variant-meta {
  margin-top: 0.24rem;
  font-size: 0.74rem;
  color: var(--muted);
}

.aster-variant-price {
  margin-top: 0.34rem;
  font-size: 0.8rem;
  color: var(--gold);
}

.aster-empty-state {
  margin-top: 0.75rem;
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.aster-selected-preview {
  margin-top: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #121518;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.62fr 1fr;
}

.aster-selected-preview img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.aster-selected-content {
  padding: 0.9rem;
}

.aster-selected-content h4 {
  margin: 0;
  font-family: "Aboreto", serif;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
}

.aster-selected-price {
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.aster-selected-meta {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.aster-close {
  margin-top: 0.95rem;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 111, 0.4);
  background: rgba(201, 168, 111, 0.08);
  color: var(--text);
  padding: 0.52rem 0.9rem;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.video-card {
  border-radius: 16px;
  padding: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}

.video-card span {
  display: block;
  padding: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.testimonial-card {
  padding: clamp(1.2rem, 2.5vw, 2.4rem);
  background: linear-gradient(160deg, rgba(22, 18, 12, 0.96), rgba(10, 10, 11, 0.96));
}

#quote-text {
  font-size: clamp(1.08rem, 2.3vw, 1.52rem);
  color: #e6dfd2;
  max-width: 75ch;
}

.testimonial-meta {
  margin-top: 1rem;
}

.testimonial-meta h3 {
  font-size: 1.4rem;
}

.testimonial-meta p {
  color: var(--muted);
  font-size: 0.84rem;
}

.testimonial-controls {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.6rem;
}

.testimonial-controls button,
.cta-band a {
  border: 1px solid rgba(201, 168, 111, 0.4);
  color: var(--text);
  background: rgba(201, 168, 111, 0.08);
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  min-height: 44px;
  font-family: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}

.cta-band {
  padding: clamp(1.2rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 85% 20%, rgba(213, 177, 118, 0.16), transparent 36%),
    linear-gradient(145deg, #1a140b, #101011);
}

.cta-band h2 {
  margin: 0.25rem 0 0.45rem;
  font-size: clamp(1.8rem, 4.1vw, 3rem);
}

.cta-band p {
  color: var(--muted);
  max-width: 70ch;
}

.cta-band a {
  display: inline-block;
  margin-top: 1rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid #3a3327;
  background: #070708;
  padding-top: 2.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.site-footer a,
.site-footer p {
  display: block;
  font-size: 0.83rem;
  color: #b2ab9d;
  margin-bottom: 0.44rem;
}

.footer-bottom {
  border-top: 1px solid #332d24;
  margin-top: 1rem;
  padding: 0.8rem 0 1.1rem;
  color: #b29e7d;
  font-size: 0.74rem;
}


#image-modal {
  border: 0;
  border-radius: 14px;
  width: min(95vw, 1120px);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  background: #0f0f10;
  color: var(--text);
}

#image-modal::backdrop {
  background: rgba(5, 6, 7, 0.84);
}

.image-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--border);
  background: #17120b;
}


.image-modal-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

#image-open-original {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 111, 0.45);
  background: rgba(201, 168, 111, 0.1);
  color: var(--text);
  padding: 0.44rem 0.85rem;
  font-family: inherit;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
}

#image-modal-title {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

#image-modal-close,
.image-modal-controls button {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 111, 0.45);
  background: rgba(201, 168, 111, 0.1);
  color: var(--text);
  padding: 0.44rem 0.85rem;
  font-family: inherit;
  cursor: pointer;
}

.image-modal-stage {
  display: grid;
  place-items: center;
  background: #09090a;
  min-height: min(70vh, 760px);
  overflow: auto;
  padding: 1rem;
}

#image-modal-img {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.16s ease;
  cursor: pointer;
}

.image-modal-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.7rem 0.9rem 0.85rem;
  border-top: 1px solid var(--border);
  background: #12100c;
}

.image-zoom-rail {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
}

#image-zoom-slider {
  -webkit-appearance: slider-vertical;
  width: 24px;
  height: 130px;
  accent-color: #d5b176;
}

#video-modal {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  width: min(92vw, 850px);
  background: #0f1114;
}

#video-modal::backdrop {
  background: rgba(5, 6, 7, 0.76);
}

#close-video {
  width: 100%;
  border: 0;
  text-align: right;
  padding: 0.68rem 0.92rem;
  background: #17120b;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
}

#video-frame {
  border: 0;
  width: 100%;
  min-height: 52vh;
}

.reveal {
  opacity: 0;
  transform: translateY(44px) scale(0.97);
  filter: blur(4px);
  transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

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

.subpage-hero {
  padding-top: 8.5rem;
  padding-bottom: 2.4rem;
}

.subpage-hero .eyebrow {
  margin-bottom: 0.5rem;
}

.subpage-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.subpage-hero p {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 70ch;
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.subpage-grid-stack {
  grid-template-columns: 1fr;
}


.info-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(150deg, #12100c, #0f0f10);
  padding: 1rem;
}

.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.info-card-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
}

.info-card-media-contain {
  height: auto;
  max-height: 560px;
  object-fit: contain;
  background: #d7d0c1;
}

.info-card-media.no-green-tone {
  object-fit: cover;
  filter: saturate(0.52) hue-rotate(-30deg) contrast(1.1) brightness(0.93);
}

.info-card-media.no-green-4cs {
  object-position: 50% 7%;
  height: 250px;
}

.info-card-media.no-green-color {
  object-position: 50% 24%;
  height: 250px;
}

.info-card-media.no-green-clarity {
  object-position: 50% 18%;
  height: 250px;
}


.clarity-guide-full {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: #f4f1ea;
  filter: none;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 0.88rem;
}

.info-card ul {
  margin: 0.4rem 0 0;
  padding-left: 1rem;
}

.cut-matrix {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.7rem;
  font-size: 0.84rem;
}

.cut-matrix th,
.cut-matrix td {
  border: 1px solid var(--border);
  padding: 0.55rem 0.6rem;
  text-align: left;
}

.cut-matrix th {
  color: var(--gold);
  font-weight: 500;
  background: #12100c;
}




.collection-tabs-panel {
  margin-top: 0.35rem;
  padding: 1rem;
}

.collection-tab-list {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
  gap: 0.3rem;
  padding-bottom: 0;
}

.collection-tab {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(201, 168, 111, 0.42);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(180deg, rgba(24, 24, 26, 0.98), rgba(12, 12, 13, 0.98));
  color: var(--text);
  padding: 0.62rem 1.1rem;
  font-family: inherit;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.collection-tab:hover {
  border-color: rgba(201, 168, 111, 0.72);
}

.collection-tab.is-active {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(214, 177, 118, 0.2), rgba(70, 54, 31, 0.18));
}

.collection-tab-panel {
  margin-top: 0.8rem;
}

.collection-tab-panel[hidden] {
  display: none;
}

.category-gallery {
  margin-top: 1rem;
}

.category-gallery h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin-bottom: 0.55rem;
}

.product-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
  overflow: visible;
  padding: 0.2rem 0 0.65rem 0;
}

.product-scroll::-webkit-scrollbar {
  height: 8px;
}

.product-scroll::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 111, 0.45);
  border-radius: 999px;
}


.product-item {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, #12100c, #0f0f10);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.25);
  scroll-snap-align: start;
}

.product-item img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #0b0b0c;
  cursor: pointer;
}

.product-item figcaption {
  padding: 0.65rem 0.7rem 0.78rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.review-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem;
  background: linear-gradient(145deg, #13100c, #101011);
}

.review-card blockquote {
  margin: 0;
  color: #ddd5c7;
  font-size: 0.9rem;
}

.review-card p {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.8rem;
}

/* About pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}
.consult-offset {
  padding-top: 160px;
}
.pillar {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(145deg, #13100c, #101011);
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}
.pillar h3 {
  margin: 0 0 0.4rem;
}
.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.consult-block {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(145deg, #13100d, #101011);
}

.consult-block h3 {
  font-size: 1.15rem;
}

.consult-block p,
.consult-block li {
  color: var(--muted);
  font-size: 0.88rem;
}

.consult-block ul {
  margin: 0.55rem 0 0;
  padding-left: 1rem;
}

.appointment-form {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.7rem;
}

.appointment-form label {
  font-size: 0.78rem;
  color: var(--muted);
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  min-height: 44px;
  padding: 0.58rem 0.65rem;
  background: #0f0f10;
  color: var(--text);
  font-family: inherit;
}

.appointment-form textarea {
  min-height: 120px;
  resize: vertical;
}

.appointment-form button {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(201, 168, 111, 0.4);
  background: rgba(201, 168, 111, 0.1);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
}


.ar-tryon-card {
  overflow: hidden;
}

.ar-controls {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: auto auto auto minmax(180px, 1fr);
  gap: 0.65rem;
  align-items: center;
}

.ar-controls .aster-close {
  margin-top: 0;
}

.ar-controls label {
  font-size: 0.78rem;
  color: var(--muted);
}

.ar-controls select {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #0f0f10;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  font-family: inherit;
}

.ar-controls select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.ar-status {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.ar-sample-upload {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto minmax(220px, 1fr);
  gap: 0.6rem;
  align-items: center;
}

.ar-sample-upload label,
.ar-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.ar-sample-upload input[type="file"] {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #0f0f10;
  color: var(--text);
  padding: 0.42rem 0.7rem;
  font-family: inherit;
}

.ar-sample-upload input[type="file"]::file-selector-button {
  border: 1px solid rgba(201, 168, 111, 0.4);
  background: rgba(201, 168, 111, 0.12);
  color: var(--text);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  margin-right: 0.55rem;
  cursor: pointer;
  font-family: inherit;
}

.ar-note {
  margin-top: 0.5rem;
}

.ar-calibrate {
  margin-top: 0.7rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(201, 168, 111, 0.05);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.8rem;
}

.ar-calibrate h4 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-family: "Aboreto", serif;
  grid-column: 1 / -1;
}

.ar-calibrate label {
  font-size: 0.75rem;
  color: var(--muted);
  display: grid;
  gap: 0.22rem;
}

.ar-calibrate input[type="range"] {
  width: 100%;
}

.ar-toggle {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
}

.ar-stage-wrap {
  margin-top: 0.85rem;
}

.ar-stage {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #12100c, #0b0b0c);
  overflow: hidden;
}

.ar-stage::before {
  content: "Camera preview will appear here";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #b29e7d;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.ar-stage.is-live::before {
  content: "";
}

#ar-video,
#ar-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#ar-video {
  opacity: 0;
  pointer-events: none;
}

#ar-canvas {
  z-index: 1;
}

.ar-stage.is-mirrored #ar-video,
.ar-stage.is-mirrored #ar-canvas {
  transform: scaleX(-1);
}

.blank-journal {
  min-height: 45vh;
  border: 1px dashed var(--border);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #d7c9ad;
  background: linear-gradient(145deg, #12100d, #0b0b0c);
}

/* Hidden route page (/admin) form layout */
.admin-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.2rem;
}

.admin-card {
  width: min(460px, 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(145deg, #13100d, #0f0f10);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.admin-card h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.6rem;
}

.admin-note {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
}

@keyframes cutScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.425rem));
  }
}

@keyframes cutPopup {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-10px) scale(1.025);
  }
  70% {
    transform: translateY(-4px) scale(1.01);
  }
}

@keyframes goldEdgeGlint {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 220% 50%;
  }
}

@keyframes backgroundShimmer {
  0% {
    background-position: 8% 16%, 82% 28%, center, center;
  }
  50% {
    background-position: 18% 25%, 72% 18%, center, center;
  }
  100% {
    background-position: 14% 34%, 76% 36%, center, center;
  }
}

@media (max-width: 1060px) {
  .story-card {
    grid-template-columns: 1fr;
  }

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

  .aster-selected-preview {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .video-row,
  .footer-grid,
  .subpage-grid,
  .consult-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 92px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.9rem 1.2rem 1.1rem;
    border-top: 1px solid rgba(201, 168, 111, 0.28);
    border-bottom: 1px solid rgba(201, 168, 111, 0.28);
    background: #0d0f11;
  }

  .main-nav a {
    width: 100%;
    padding: 0.2rem 0;
  }

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

  .brand {
    font-size: 0.96rem;
    letter-spacing: 0.1em;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 90vh;
  }

  .section {
    padding: 4.1rem 0;
  }

  .product-grid,
  .video-row,
  .footer-grid,
  .subpage-grid,
  .consult-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .aster-controls,
  .aster-variant-list {
    grid-template-columns: 1fr;
  }

  .cut-grid {
    padding: 0.35rem 0;
  }

  .cut-grid::before,
  .cut-grid::after {
    width: 40px;
  }

  .cut-card {
    width: 72vw;
    min-height: 200px;
  }


  .product-scroll {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .collection-tab-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
  }

  .collection-tab {
    width: calc(50% - 0.125rem);
    justify-content: center;
    min-height: 50px;
    font-size: 0.84rem;
    border-radius: 12px 12px 0 0;
  }

  .ar-controls {
    grid-template-columns: 1fr;
  }

  .ar-controls label {
    margin-top: 0.1rem;
  }

  .ar-sample-upload {
    grid-template-columns: 1fr;
  }

  .ar-calibrate {
    grid-template-columns: 1fr;
  }

  .story-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 780px), (prefers-reduced-data: reduce) {
  .hero-backdrop {
    background-image: none !important;
    transform: none;
  }

  .cut-card {
    background: linear-gradient(145deg, #17120b, #101011);
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  .cut-track,
  .cut-card,

  .product-card::after,
  .video-card::after,
  .info-card::after,
  .review-card::after,
  .consult-block::after,
  .aster-panel::after {
    animation: none;
  }
}

/* When Worn masonry + lightbox */
.when-worn-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.when-worn-filterbar .when-worn-sort {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.chip {
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover {
  border-color: #cbd5e1;
  background: #e2e8f0;
}
.chip.is-active {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #f8fafc;
  border-color: #1d4ed8;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.25);
}
.when-worn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  width: 100%;
}
@media (max-width: 640px) {
  .when-worn-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}
.when-worn-card {
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid #1f2937;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  cursor: zoom-in;
}
.when-worn-card img {
  width: 100%;
  display: block;
}
.when-worn-card figcaption {
  padding: 10px 12px;
  font-size: 13px;
  color: #cbd5e1;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.when-worn-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.when-worn-lightbox[hidden] { display: none; }
.when-worn-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
}
.when-worn-lightbox__body {
  position: relative;
  max-width: min(900px, 90vw);
  max-height: 90vh;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #0b1220;
  border: 1px solid #1f2937;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  z-index: 1;
}
.when-worn-lightbox figure {
  margin: 0;
  text-align: center;
}
.when-worn-lightbox img {
  max-width: min(700px, 80vw);
  max-height: 70vh;
  border-radius: 12px;
}
.when-worn-lightbox figcaption {
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 14px;
}
.when-worn-lightbox__nav,
.when-worn-lightbox__close {
  background: rgba(255,255,255,0.08);
  color: #f8fafc;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.when-worn-lightbox__nav:hover,
.when-worn-lightbox__close:hover {
  background: rgba(255,255,255,0.12);
}
.when-worn-lightbox__nav {
  font-size: 22px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.when-worn-lightbox__close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
}
.modal-open {
  overflow: hidden;
}

/* When Worn Carousel (Option 2) */
.when-worn-carousel-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.when-worn-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}
.carousel-viewport {
  overflow: hidden;
  border: 1px solid #1f2937;
  border-radius: 12px;
  background: #0f172a;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  transition: transform 0.25s ease;
}
.carousel-slide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  padding: 12px;
  width: min(840px, 90vw);
}
.carousel-slide:not(.is-active) {
  display: none;
}
.carousel-card {
  border: 1px solid #1f2937;
  border-radius: 12px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.carousel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.carousel-card figcaption {
  padding: 8px 10px;
  font-size: 13px;
  color: #cbd5e1;
}
.carousel-nav {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #334155;
  background: rgba(255,255,255,0.08);
  color: #f8fafc;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.carousel-nav:hover {
  background: rgba(255,255,255,0.12);
}
.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #94a3b8;
  background: #0f172a;
  cursor: pointer;
  transition: all 0.15s ease;
}
.carousel-dot.is-active {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  border-color: #0ea5e9;
  box-shadow: 0 6px 16px rgba(14,165,233,0.35);
}

/* When Worn Sticky (Option 3) */
.when-worn-sticky {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 14px;
  align-items: start;
}
@media (max-width: 900px) {
  .when-worn-sticky { grid-template-columns: 1fr; }
  .when-worn-sticky-preview { position: relative; top: 0; }
}
.when-worn-sticky-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.when-worn-sticky-thumb {
  position: relative;
  border: 1px solid #1f2937;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: #0b1220;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  transition: transform 0.12s ease, border-color 0.12s ease;
}
.when-worn-sticky-thumb img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}
.when-worn-sticky-thumb.is-selected {
  transform: translateY(-2px);
  border-color: #0ea5e9;
  box-shadow: 0 12px 26px rgba(14,165,233,0.25);
}
.when-worn-sticky-preview {
  position: sticky;
  top: 90px;
  border: 1px solid #1f2937;
  border-radius: 14px;
  padding: 12px;
  background: #0f172a;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}
.when-worn-sticky-card img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.32);
}

/* Floating appointment CTA */
.floating-appointment {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 2100;
  background: linear-gradient(135deg, #d6b372, #8b6b2e);
  color: #0b0b0c;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(139, 107, 46, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.floating-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(139, 107, 46, 0.45);
}
.floating-appointment:active {
  transform: translateY(0);
}
.floating-appointment__label {
  white-space: normal;
}
@media (max-width: 640px) {
  .floating-appointment {
    bottom: 14px;
    right: 14px;
    padding: 11px 14px;
    font-size: 13px;
  }
}
@media print {
  .floating-appointment { display: none !important; }
}

/* When Worn Hover cards */
.when-worn-hover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.when-worn-hover-card {
  position: relative;
  border: 1px solid #1f2937;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, #12100c, #0f0f10);
  color: #e2e8f0;
  min-height: 220px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,0.24);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.when-worn-hover-card:hover,
.when-worn-hover-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.32);
}
.when-worn-hover-cover {
  padding: 18px;
}
.when-worn-hover-cover h4 {
  margin: 6px 0;
}
.when-worn-hover-cover .hint {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #cbd5e1;
}
.when-worn-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.when-worn-hover-overlay figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.when-worn-hover-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.when-worn-hover-card:hover .when-worn-hover-overlay,
.when-worn-hover-card:focus-visible .when-worn-hover-overlay {
  opacity: 1;
}
