:root {
  --ink: #0b0b0c;
  --ink-2: #111113;
  --ink-3: #17171a;
  --bone: #ede7dc;
  --bone-dim: #a8a299;
  --gold: #c9a24b;
  --gold-lite: #e7ce8f;
  --gold-deep: #9a7b2e;
  --hair: rgba(201, 162, 75, 0.22);
  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--ink);
  color: var(--bone);
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  overflow: hidden;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.serif {
  font-family: "Bodoni Moda", Georgia, serif;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  display: inline-block;
}

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

/* NAV */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 56;
  transition:
    background 0.5s var(--ease),
    border-color 0.5s var(--ease),
    backdrop-filter 0.5s;
}
header.nav.solid {
  background: rgba(11, 11, 12, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: "Jost";
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 5px;
}
.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bone);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 11px 22px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}
.burger span {
  width: 26px;
  height: 1.5px;
  background: var(--bone);
  transition: 0.35s var(--ease);
}
.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 54;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 96px 32px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s var(--ease),
    visibility 0.5s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
/* keep the nav bar (logo + close X) clearly above the sheet */
header.nav {
  z-index: 60;
}
.mobile-menu a {
  font-family: "Bodoni Moda", serif;
  font-size: 30px;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid var(--hair);
}
.mobile-menu a:last-of-type {
  border: 0;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-copy {
  position: relative;
  z-index: 3;
}
.hero h1 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-size: clamp(46px, 7vw, 104px);
  margin: 22px 0 0;
}
.hero h1 .it {
  font-style: italic;
  color: var(--gold-lite);
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line > span {
  display: block;
  transform: translateY(110%);
}
.hero p.lead {
  max-width: 46ch;
  margin-top: 28px;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--bone-dim);
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
  animation: ctaIn 0.7s var(--ease) 1.1s both;
}
@keyframes ctaIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-admin-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-dim);
  flex: none;
  transition:
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.hero-admin-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.hero-admin-btn svg {
  width: 18px;
  height: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.45s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  background: var(--gold-lite);
}
.btn-ghost {
  border-color: var(--hair);
  color: var(--bone);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn svg {
  width: 16px;
  height: 16px;
}

.hero-media {
  position: relative;
  z-index: 2;
}
.hero-frame {
  position: relative;
  aspect-ratio: 864/1080;
  overflow: hidden;
  clip-path: inset(0 0 100% 0);
}
.hero-frame img,
.hero-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  filter: saturate(0.92) contrast(1.02);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 11, 12, 0.55));
}
.hero-tag {
  position: absolute;
  left: -18px;
  bottom: 36px;
  z-index: 4;
  background: var(--ink);
  border: 1px solid var(--hair);
  padding: 14px 18px;
  max-width: 200px;
}
.hero-tag b {
  font-family: "Bodoni Moda", serif;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.04em;
  display: block;
}
.hero-tag span {
  font-size: 11px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}

/* signature gold strand */
.strand {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}
.strand svg {
  width: 100%;
  height: 100%;
}
.strand path {
  fill: none;
  stroke: url(#gold);
  stroke-width: 1.2;
}

.scroll-hint {
  position: absolute;
  left: 28px;
  bottom: 30px;
  z-index: 4;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-dim);
  display: flex;
  align-items: center;
  gap: 12px;
}
.scroll-hint .ln {
  width: 46px;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  animation: slide 2.6s var(--ease) infinite;
}
@keyframes slide {
  0%,
  100% {
    transform: scaleX(0.3);
  }
  50% {
    transform: scaleX(1);
  }
}

/* MARQUEE */
.marquee {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink-2);
}
.marquee-track {
  display: inline-flex;
  gap: 54px;
  animation: march 26s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee span {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 26px;
  color: var(--bone);
  opacity: 0.65;
}
.marquee span.g {
  color: var(--gold);
  opacity: 1;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  align-self: center;
}

/* TYPE STRIP */
.type-strip-wrap {
  padding: 48px 0 52px;
  overflow: hidden;
}
.type-strip {
  display: flex;
  gap: 14px;
  padding: 0 max(24px, calc((100vw - var(--maxw)) / 2));
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.type-strip::-webkit-scrollbar {
  display: none;
}
.type-tile {
  flex: 0 0 clamp(220px, 28vw, 340px);
  position: relative;
  aspect-ratio: 2/3;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--ink-3);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.type-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
  background: var(--ink-3);
}
.type-tile:hover img {
  transform: scale(1.05);
}
.type-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 11, 12, 0.86) 0%,
    rgba(11, 11, 12, 0.08) 55%,
    transparent 100%
  );
}
.type-tile-info {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
}
/* "& many more" closing tile — no photo, just an invite to ask */
.type-tile-more {
  background: var(--ink-2);
  border: 1px solid var(--hair);
  transition: border-color 0.4s var(--ease);
}
.type-tile-more::after {
  display: none;
}
.type-tile-more:hover {
  border-color: var(--gold);
}
.type-tile-info-static {
  position: static;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px;
}
.type-tile-more .type-eyebrow {
  color: var(--gold-lite);
}
.type-tile-more .type-cta {
  color: var(--gold);
}
.type-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.type-tile-info h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--bone);
  line-height: 1.08;
}
.type-cta {
  margin-top: 10px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lite);
  font-family: "Jost", sans-serif;
  font-weight: 500;
}
@keyframes march {
  to {
    transform: translateX(-50%);
  }
}

/* SECTION SHELL */
section {
  position: relative;
}
.pad {
  padding: 118px 0;
}
.sec-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.sec-head h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.sec-head h2 .it {
  font-style: italic;
  color: var(--gold-lite);
}

/* PAGE HEAD (interior pages) */
.page-head {
  padding: 168px 0 60px;
  background: var(--ink-2);
  border-bottom: 1px solid var(--hair);
}
.page-head h1 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.03;
  margin-top: 18px;
  letter-spacing: -0.01em;
}
.page-head h1 .it {
  font-style: italic;
  color: var(--gold-lite);
}
.page-head p {
  color: var(--bone-dim);
  margin-top: 16px;
  font-size: 15px;
  max-width: 54ch;
}

/* THE DIFFERENCE */
.diff {
  background: var(--ink-2);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.diff-cell {
  background: var(--ink-2);
  padding: 42px 34px;
}
.diff-cell .lab {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.diff-cell h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 25px;
  margin: 16px 0 12px;
}
.diff-cell p {
  font-size: 14.5px;
  color: var(--bone-dim);
}

/* COLLECTION */
.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  position: relative;
  cursor: pointer;
}
.card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--ink-3);
}
.card-img img,
.card-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.1s var(--ease),
    filter 0.6s;
  filter: saturate(0.92);
}
.card:hover .card-img img {
  transform: scale(1.07);
}
.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 12, 0.65));
  opacity: 0.85;
}
.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 5px 10px;
  font-weight: 500;
}
.card-foot {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.card-foot h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.05;
}
.card-foot .meta {
  font-size: 11.5px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.card-foot .price {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.card-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
}
.card-order span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.card-order .arr {
  color: var(--gold);
  transition: transform 0.4s var(--ease);
}
.card:hover .card-order .arr {
  transform: translateX(6px);
}
.card:hover .card-order span {
  color: var(--bone);
}

/* LOOKBOOK */
.lb-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 10px;
}
.lb-main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.lb-main video,
.lb-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lb-side {
  display: grid;
  gap: 10px;
}
.lb-side .lb-thumb {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.lb-side .lb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.lb-side .lb-thumb:hover img {
  transform: scale(1.05);
}
.lb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.lb-row .lb-cell {
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.lb-row .lb-cell img,
.lb-row .lb-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.lb-row .lb-cell:hover img {
  transform: scale(1.05);
}
.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 12, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}
.lb-cell:hover .lb-overlay {
  opacity: 1;
}
.lb-overlay span {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--bone);
}

/* VIDEO REEL */
.reel {
  background: var(--ink-2);
}
.reel-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.reel-cell {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
}
.reel-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.reel-cell:hover video {
  transform: scale(1.04);
}
.reel-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 11, 12, 0.7));
}
.reel-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(237, 231, 220, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.4s,
    background 0.4s;
}
.reel-cell:hover .play-icon {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.15);
}
.play-icon svg {
  width: 14px;
  height: 14px;
  color: var(--bone);
  margin-left: 2px;
}

/* ORDER STEPS */
.order {
  background: var(--ink-2);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  counter-reset: s;
}
.step {
  padding-top: 30px;
  border-top: 1px solid var(--hair);
  counter-increment: s;
  position: relative;
}
.step::before {
  content: "0" counter(s);
  font-family: "Bodoni Moda", serif;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.05em;
  position: absolute;
  top: -1px;
  left: 0;
  padding-top: 12px;
}
.step h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 24px;
  margin: 46px 0 12px;
}
.step p {
  font-size: 14.5px;
  color: var(--bone-dim);
  max-width: 34ch;
}
.pay {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hair);
  padding: 9px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.chip b {
  color: var(--gold);
  font-weight: 500;
}

/* REVIEWS */
.reviews {
  background: var(--ink-2);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  border: 1px solid var(--hair);
  padding: 34px 28px;
  background: var(--ink);
  transition: border-color 0.4s;
}
.review-card:hover {
  border-color: var(--gold);
}
.r-stars {
  color: var(--gold);
  letter-spacing: 0.25em;
  font-size: 13px;
  margin-bottom: 18px;
}
.review-card blockquote {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--bone);
}
.review-card cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(11, 11, 12, 0.55));
}
.about-copy h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  margin: 18px 0 28px;
  letter-spacing: -0.01em;
}
.about-copy h2 .it {
  font-style: italic;
  color: var(--gold-lite);
}
.about-copy p {
  font-size: 15px;
  color: var(--bone-dim);
  margin-bottom: 18px;
  line-height: 1.78;
}
.about-sig {
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-lite);
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--hair);
}
.stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.stat-item .num {
  font-family: "Bodoni Moda", serif;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-top: 6px;
}

/* FAQ */
.faq {
  background: var(--ink-2);
}
.faq-list {
  max-width: 840px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--hair);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--hair);
}
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: var(--bone);
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  font-family: "Jost", sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.faq-q:hover {
  color: var(--gold-lite);
}
.faq-ico {
  color: var(--gold);
  font-size: 24px;
  flex: none;
  transition: transform 0.4s var(--ease);
  line-height: 1;
  font-weight: 300;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s var(--ease),
    opacity 0.4s;
}
.faq-item.open .faq-a {
  max-height: 320px;
}
.faq-a p {
  padding: 0 0 26px;
  font-size: 14.5px;
  color: var(--bone-dim);
  max-width: 62ch;
  line-height: 1.75;
}

/* CARE GUIDE */
.care {
  position: relative;
  overflow: hidden;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.care-cell {
  background: var(--ink);
  padding: 36px 28px;
}
.care-cell .care-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.care-cell h4 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}
.care-cell p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.7;
}

/* SOCIAL CONNECT */
.social-connect {
  text-align: center;
}
.soc-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.soc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--hair);
  padding: 40px 52px;
  background: var(--ink-2);
  transition:
    border-color 0.4s var(--ease),
    background 0.4s var(--ease),
    transform 0.4s var(--ease);
  min-width: 200px;
}
.soc-card:hover {
  border-color: var(--gold);
  background: var(--ink-3);
  transform: translateY(-4px);
}
.soc-card svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}
.soc-card .soc-name {
  font-family: "Bodoni Moda", serif;
  font-size: 19px;
  color: var(--bone);
  margin-top: 6px;
}
.soc-card .soc-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.soc-card .soc-handle {
  font-size: 13px;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 0.04em;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* PROMISE / QUOTE */
.promise {
  text-align: center;
}
.promise blockquote {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.18;
  max-width: 18ch;
  margin: 0 auto;
  letter-spacing: -0.005em;
}
.promise blockquote .g {
  color: var(--gold-lite);
}
.promise cite {
  display: block;
  margin-top: 34px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.stars {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 14px;
  margin-bottom: 26px;
}

/* CTA BAND */
.band {
  position: relative;
  text-align: center;
  padding: 130px 0;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    60% 80% at 50% 30%,
    rgba(201, 162, 75, 0.13),
    transparent 70%
  );
}
.band h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1;
  position: relative;
  letter-spacing: -0.01em;
}
.band h2 .it {
  font-style: italic;
  color: var(--gold-lite);
}
.band p {
  position: relative;
  margin: 24px auto 38px;
  max-width: 48ch;
  color: var(--bone-dim);
}
.band .hero-cta {
  justify-content: center;
  position: relative;
}

/* PAYFAST BADGE */
.pf-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  position: relative;
}
.pf-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--hair);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.pf-badge b {
  color: var(--gold);
  font-weight: 500;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--hair);
  background: var(--ink);
}
.foot-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 80px 0 56px;
}
.foot-top .brand {
  font-size: 30px;
}
.foot-top p.tag {
  color: var(--bone-dim);
  font-size: 14px;
  max-width: 34ch;
  margin-top: 18px;
}
.foot-col h4 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.foot-col a,
.foot-col p {
  display: block;
  font-size: 14px;
  color: var(--bone-dim);
  margin-bottom: 11px;
  transition: color 0.3s;
}
.foot-col a:hover {
  color: var(--bone);
}
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--hair);
  font-size: 12px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bot a {
  color: var(--gold);
}

/* ORDER PANEL */
.order-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.8);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0.5s;
  backdrop-filter: blur(5px);
}
.order-overlay.open {
  opacity: 1;
  visibility: visible;
}
.order-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100vw);
  background: var(--ink-2);
  border-left: 1px solid var(--hair);
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.order-panel.open {
  transform: none;
}
.op-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--hair);
  flex: none;
  background: var(--ink-2);
  position: sticky;
  top: 0;
  z-index: 2;
}
.op-title {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 20px;
}
.op-title small {
  display: block;
  font-family: "Jost";
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 400;
}
.op-close {
  background: none;
  border: 1px solid var(--hair);
  color: var(--bone-dim);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition:
    border-color 0.3s,
    color 0.3s;
  flex: none;
}
.op-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.op-body {
  padding: 24px 26px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.op-field > label {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.op-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.op-chip {
  border: 1px solid var(--hair);
  padding: 9px 14px;
  font-size: 12.5px;
  color: var(--bone-dim);
  cursor: pointer;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s;
  background: none;
  font-family: "Jost", sans-serif;
  letter-spacing: 0.02em;
}
.op-chip:hover {
  border-color: rgba(237, 231, 220, 0.45);
  color: var(--bone);
}
.op-chip.sel {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 75, 0.09);
}
.op-radio-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.op-radio-lbl {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  border: 1px solid var(--hair);
  cursor: pointer;
  transition: border-color 0.3s;
}
.op-radio-lbl:has(input:checked) {
  border-color: var(--gold);
}
.op-radio-lbl input {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
  flex: none;
}
.rl-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rl-name {
  font-size: 13.5px;
  color: var(--bone);
}
.rl-sub {
  font-size: 10.5px;
  color: var(--bone-dim);
  letter-spacing: 0.03em;
}
.op-input {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--hair);
  color: var(--bone);
  padding: 12px 14px;
  font-family: "Jost", sans-serif;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}
.op-input::placeholder {
  color: var(--bone-dim);
}
.op-input:focus {
  border-color: var(--gold);
}
.op-divider {
  border: none;
  border-top: 1px solid var(--hair);
  margin: 0;
}
.op-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.op-price-lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.op-price-note {
  font-size: 11px;
  color: var(--bone-dim);
  margin-top: 4px;
}
.op-price-val {
  font-family: "Bodoni Moda", serif;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.op-footer {
  padding: 18px 26px 26px;
  border-top: 1px solid var(--hair);
  flex: none;
  background: var(--ink-2);
}
.op-wa-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 17px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    background 0.4s,
    opacity 0.3s;
  font-family: "Jost", sans-serif;
}
.op-wa-btn:hover:not(:disabled) {
  background: #e7ce8f;
}
.op-wa-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.op-hint {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--bone-dim);
}

/* WHATSAPP WIDGET */
.wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 0;
  background: #1fa855;
  color: #fff;
  border-radius: 999px;
  padding: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  transition:
    gap 0.4s var(--ease),
    padding 0.4s var(--ease);
}
.wa svg {
  width: 26px;
  height: 26px;
  flex: none;
}
.wa .lbl {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition:
    max-width 0.45s var(--ease),
    margin 0.45s var(--ease);
}
.wa:hover {
  gap: 10px;
  padding-right: 22px;
}
.wa:hover .lbl {
  max-width: 170px;
  margin-left: 4px;
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(31, 168, 85, 0.55);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 16px rgba(31, 168, 85, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 168, 85, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(70px);
}
@media (max-width: 760px) {
  .reveal-right {
    transform: translateX(36px);
  }
}
/* hold space for media so nothing jumps as it loads */
img,
video {
  background: var(--ink-3);
}

/* PRICING */
.pricing {
  background: var(--ink-2);
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.price-table-wrap {
  border: 1px solid var(--hair);
  background: var(--ink);
  overflow: hidden;
}
.price-table-head {
  padding: 16px 22px;
  text-align: center;
  background: linear-gradient(135deg, #4a1a6b 0%, #6b2fa0 50%, #4a1a6b 100%);
  border-bottom: 2px solid var(--gold);
}
.price-table-head h3 {
  font-family: "Bodoni Moda", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-lite);
}
.price-table-head .pt-grade {
  display: block;
  margin-top: 6px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.78;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 13px 18px;
  border-bottom: 1px solid var(--hair);
  text-align: left;
  font-weight: 500;
}
.price-table th:not(:first-child) {
  text-align: right;
}
.price-table td {
  padding: 12px 18px;
  font-size: 14px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.08);
  color: var(--bone);
  transition: background 0.2s;
}
.price-table td:not(:first-child) {
  text-align: right;
  color: var(--gold-lite);
  font-family: "Bodoni Moda", serif;
  font-size: 15px;
  cursor: pointer;
}
.price-table tr:last-child td {
  border-bottom: 0;
}
.price-table tr:hover td {
  background: rgba(201, 162, 75, 0.06);
}
.price-table td:not(.price-length):hover {
  background: rgba(201, 162, 75, 0.18);
  color: var(--gold);
}
.price-length {
  font-family: "Bodoni Moda", serif;
  font-size: 17px;
  color: var(--bone-dim) !important;
  text-align: left !important;
}
.price-info {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  justify-content: center;
}
.price-badge {
  border: 1px solid var(--hair);
  padding: 11px 20px;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-align: center;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.price-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.price-discount {
  background: var(--gold);
  border-color: var(--gold) !important;
  color: var(--ink) !important;
  font-weight: 600;
}
.price-swipe-hint {
  display: none;
}
.fresh-swipe-hint {
  display: none;
}
.price-note {
  text-align: center;
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--bone-dim);
  letter-spacing: 0.04em;
}

/* FRESH ARRIVALS REEL */
.fresh-reel {
  background: var(--ink-3);
  overflow: hidden;
}
.fresh-scroll-wrap {
  position: relative;
}
.fresh-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.fresh-track::-webkit-scrollbar {
  display: none;
}
.fresh-track.dragging {
  cursor: grabbing;
  user-select: none;
}
.fresh-cell {
  flex: none;
  width: clamp(200px, 21vw, 270px);
  aspect-ratio: 9/16;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--ink-2);
}
.fresh-cell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.fresh-cell:hover video {
  transform: scale(1.05);
}
.fresh-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(11, 11, 12, 0.78));
}
.fresh-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.fresh-new-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 9px;
  font-weight: 600;
}
.fresh-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px max(28px, calc((100vw - var(--maxw)) / 2 + 28px)) 0;
}
.fresh-arrow {
  background: none;
  border: 1px solid var(--hair);
  color: var(--bone);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    background 0.35s var(--ease);
  font-size: 17px;
  flex: none;
}
.fresh-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.fresh-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.fresh-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}
.fresh-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hair);
  transition:
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
  border: none;
}
.fresh-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* TRUST STRIP (home teaser) */
.trust-strip {
  text-align: center;
}
.trust-strip .price-info {
  margin-top: 22px;
}
.trust-strip .learn-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-lite);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 34px;
  }
  .diff-grid,
  .col-grid,
  .steps,
  .foot-top,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .foot-top {
    grid-template-columns: 1fr 1fr;
  }
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-img-wrap {
    aspect-ratio: 16/9;
  }
  .reel-track {
    grid-template-columns: repeat(3, 1fr);
  }
  .fresh-cell {
    width: clamp(180px, 38vw, 240px);
  }
  .lb-grid {
    grid-template-columns: 1fr;
  }
  .lb-side {
    grid-template-columns: repeat(2, 1fr);
  }
  .lb-side .lb-thumb {
    aspect-ratio: 3/2;
  }
  .soc-grid {
    gap: 14px;
  }
  .soc-card {
    padding: 32px 36px;
  }
  .stats-row {
    gap: 28px;
  }
}
@media (max-width: 760px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero {
    padding-top: 96px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-media {
    display: none;
  }
  .pad {
    padding: 72px 0;
  }
  .page-head {
    padding: 128px 0 44px;
  }
  .diff-grid,
  .col-grid,
  .steps,
  .foot-top,
  .review-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }
  .lb-row {
    grid-template-columns: 1fr 1fr;
  }
  .reel-track {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── PRICE GRID: stacked full-width tables (no slippery carousel) ── */
  .price-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }
  .price-table-wrap {
    width: 100%;
  }
  .price-table th {
    padding: 12px 16px;
    font-size: 10px;
  }
  .price-table td {
    padding: 12px 16px;
    font-size: 14px;
  }
  .price-table td:not(:first-child) {
    font-size: 14.5px;
  }
  .price-swipe-hint {
    display: none;
  }

  /* ── FRESH REEL: bigger cells, no arrows ── */
  .fresh-cell {
    width: clamp(240px, 82vw, 320px);
  }
  .fresh-arrows {
    display: none;
  }
  .fresh-swipe-hint {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bone-dim);
    opacity: 0.65;
  }

  /* ── ORDER PANEL: full-screen optimised ── */
  .order-panel {
    width: 100vw;
  }
  .op-body {
    gap: 18px;
    padding: 20px 20px;
  }
  .op-head {
    padding: 20px 20px;
  }
  .op-footer {
    padding: 16px 20px 24px;
  }
  .op-chip {
    padding: 11px 16px;
    font-size: 13px;
    min-height: 44px;
  }
  .op-radio-lbl {
    padding: 15px 14px;
  }
  .op-input {
    font-size: 16px;
  } /* prevents iOS zoom */
  .op-price-val {
    font-size: 28px;
  }

  .soc-grid {
    flex-direction: column;
    align-items: center;
  }
  .soc-card {
    width: 100%;
    max-width: 340px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 24px;
  }
  .band h2 {
    font-size: clamp(32px, 8vw, 54px);
  }
  .pf-trust {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 400px) {
  .price-table-wrap {
    flex: 0 0 calc(100vw - 40px);
  }
  .fresh-cell {
    width: 88vw;
  }
  .op-chip {
    font-size: 12px;
    padding: 10px 12px;
  }
}

/* ================= Coming Soon cover ================= */
#mdlComingSoon {
  display: none;
}
html.mdl-locked #mdlComingSoon {
  display: flex;
}
html.mdl-locked body {
  overflow: hidden;
}
.mdl-cs {
  position: fixed;
  inset: 0;
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background: var(--ink);
  overflow: hidden;
}
.mdl-cs-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
  filter: saturate(0.9) contrast(1.02);
  z-index: 0;
  pointer-events: none;
}
.mdl-cs::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    120% 80% at 50% 38%,
    transparent 28%,
    rgba(11, 11, 12, 0.86) 100%
  );
}
.mdl-cs-admin {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 3;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--hair);
  padding: 8px 16px;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.mdl-cs-admin:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.mdl-cs-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}
.mdl-cs-logo {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--bone);
  font-family: "Bodoni Moda", serif;
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.mdl-cs-logo small {
  display: block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 10px;
}
.mdl-cs-title {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: clamp(30px, 8vw, 58px);
  margin: 30px 0 0;
  line-height: 1;
}
.mdl-cs-title .it {
  font-style: italic;
  color: var(--gold-lite);
}
.mdl-cs-lead {
  color: var(--bone-dim);
  font-weight: 300;
  margin: 18px auto 30px;
  max-width: 42ch;
  font-size: 15px;
}
.mdl-cs-wa {
  border-radius: 2px;
}
.mdl-cs-social {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin-top: 30px;
}
.mdl-cs-social a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
  transition: color 0.3s var(--ease);
}
.mdl-cs-social a:hover {
  color: var(--gold);
}

/* ================= Promise scroll-reveal words ================= */
.promise blockquote .w {
  color: rgba(237, 231, 220, 0.16);
  transition: color 0.08s linear;
}

/* ================= Gallery sneak peek ================= */
.peek-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 12px;
  margin-top: 42px;
}
.peek-tile {
  position: relative;
  overflow: hidden;
  display: block;
  background: #000;
}
.peek-tile img,
.peek-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.peek-tile:hover img,
.peek-tile:hover video {
  transform: scale(1.06);
}
.peek-tall {
  grid-row: span 2;
}
.peek-wide {
  grid-column: span 2;
}
.peek-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 11, 12, 0.5));
  opacity: 0;
  transition: opacity 0.4s;
}
.peek-tile:hover::before {
  opacity: 1;
}
.peek-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: 2;
  background: rgba(11, 11, 12, 0.55);
  border: 1px solid var(--gold);
}
.peek-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--gold);
}
@media (max-width: 760px) {
  .peek-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 132px;
  }
}

/* ================= Mobile menu close button ================= */
.m-close {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--bone);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  z-index: 2;
}
.m-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(90deg);
}

/* ================= Site-wide gold strand ================= */
.site-strand {
  position: fixed;
  top: 0;
  bottom: 0;
  right: max(14px, 2.2vw);
  width: 66px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.4;
}
.site-strand svg {
  width: 100%;
  height: 100%;
}
.site-strand path {
  fill: none;
  stroke: url(#siteGold);
  stroke-width: 1.1;
}
@media (max-width: 900px) {
  .site-strand {
    display: none;
  }
}

/* ================= Count-up stats ================= */
.stat-item .num {
  transition: color 0.4s var(--ease);
}
.stat-item:hover .num {
  color: var(--gold-lite);
}

/* ================= Generic scroll word-reveal ================= */
.js-word-reveal .w {
  color: rgba(237, 231, 220, 0.16);
  transition: color 0.08s linear;
}

/* ================= Order-steps progress ================= */
.steps {
  position: relative;
}
.steps-progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  height: 2px;
  background: var(--hair);
  z-index: 0;
  overflow: hidden;
}
.steps-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-lite));
  transform: scaleX(0);
  transform-origin: left;
}
@media (max-width: 760px) {
  /* stacked steps get a vertical fill-line on the left instead */
  .steps {
    padding-left: 30px;
  }
  .steps-progress {
    left: 6px;
    right: auto;
    top: 8px;
    bottom: 8px;
    width: 2px;
    height: auto;
  }
  .steps-progress i {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-deep), var(--gold-lite));
    transform: scaleY(0);
    transform-origin: top;
  }
  .step {
    border-top: none;
  }
  .step::before {
    padding-top: 0;
    top: 2px;
  }
}

/* ================= Reviews carousel ================= */
.reviews-carousel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
}
.rev-track {
  display: flex;
  transition: transform 0.7s var(--ease);
}
.rev-slide {
  flex: 0 0 100%;
  padding: 8px 10px 0;
  text-align: center;
}
.rev-slide .r-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 20px;
}
.rev-slide blockquote {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--bone);
}
.rev-slide cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.rev-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
}
.rev-dots {
  display: flex;
  gap: 9px;
}
.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--hair);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease);
}
.rev-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}
.rev-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s var(--ease);
}
.rev-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ================= Footer admin link ================= */
.admin-link {
  color: var(--bone-dim);
  opacity: 0.6;
  transition:
    color 0.3s var(--ease),
    opacity 0.3s var(--ease);
}
.admin-link:hover {
  color: var(--gold);
  opacity: 1;
}

/* ================= Extra hover craft ================= */
.card,
.type-tile,
.review-card,
.peek-tile,
.diff-card,
.care-card {
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.card:hover,
.review-card:hover,
.diff-card:hover,
.care-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.7);
}
.step {
  transition:
    transform 0.4s var(--ease),
    color 0.4s var(--ease);
}
.step:hover h3 {
  color: var(--gold-lite);
}
.foot-col a {
  transition: color 0.3s var(--ease);
}
.foot-col a:hover {
  color: var(--gold);
}
.pf-badge,
.price-badge,
.chip {
  transition:
    border-color 0.3s var(--ease),
    color 0.3s var(--ease);
}
.pf-badge:hover,
.price-badge:hover,
.chip:hover {
  border-color: var(--gold);
  color: var(--gold-lite);
}

/* ================= Cookie consent banner ================= */
.mdl-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10000;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink-2, #111113);
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.75);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
  pointer-events: none;
}
.mdl-consent.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mdl-consent p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--bone-dim);
  margin: 0 0 14px;
}
.mdl-consent p a {
  color: var(--gold);
  text-decoration: underline;
}
.mdl-consent-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.mdl-consent-actions button {
  font-family: "Jost", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.mdl-consent-decline {
  background: none;
  border: 1px solid var(--hair);
  color: var(--bone-dim);
}
.mdl-consent-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.mdl-consent-accept {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
  font-weight: 500;
}
.mdl-consent-accept:hover {
  background: var(--gold-lite);
  border-color: var(--gold-lite);
}
@media (max-width: 480px) {
  .mdl-consent-actions {
    justify-content: stretch;
  }
  .mdl-consent-actions button {
    flex: 1;
  }
}

/* ================= Legal / policy content ================= */
.legal {
  max-width: 760px;
}
.legal .updated {
  color: var(--bone-dim);
  font-size: 12.5px;
  margin-bottom: 44px;
}
.legal h2 {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin: 52px 0 18px;
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal h3 {
  font-family: "Bodoni Moda", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--gold-lite);
  margin: 28px 0 10px;
}
.legal p {
  color: var(--bone-dim);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal ul {
  margin: 0 0 16px 20px;
  color: var(--bone-dim);
  font-size: 14.5px;
  line-height: 1.75;
}
.legal li {
  margin-bottom: 6px;
}
.legal a {
  color: var(--gold);
  text-decoration: underline;
}
.legal strong {
  color: var(--bone);
  font-weight: 500;
}
.legal ol {
  margin: 0 0 16px 20px;
  color: var(--bone-dim);
  font-size: 14.5px;
  line-height: 1.75;
}
.legal ol li {
  margin-bottom: 12px;
}

/* ================= Blog index ================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  display: block;
  border: 1px solid var(--hair);
  background: var(--ink-2);
  overflow: hidden;
  transition:
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--ink-3);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 26px 24px 28px;
}
.blog-card-meta {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.blog-card-body h2 {
  font-family: "Bodoni Moda", serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  color: var(--bone);
  margin-bottom: 12px;
}
.blog-card-body p {
  font-size: 14px;
  color: var(--bone-dim);
  line-height: 1.7;
}
.blog-card-cta {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lite);
}

/* ================= Blog post ================= */
.post-byline {
  margin-top: 18px !important;
  font-size: 12px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
}
.post-lead {
  font-size: 17px !important;
  line-height: 1.8 !important;
  color: var(--bone) !important;
  margin-bottom: 22px !important;
}
.post-note {
  font-size: 12.5px !important;
  font-style: italic;
  opacity: 0.8;
}
.blog-table-wrap {
  overflow-x: auto;
  margin: 24px 0 8px;
  border: 1px solid var(--hair);
}
.blog-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
}
.blog-table th {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--hair);
  font-weight: 500;
  background: var(--ink-2);
}
.blog-table td {
  padding: 13px 16px;
  font-size: 14px;
  color: var(--bone-dim);
  border-bottom: 1px solid rgba(201, 162, 75, 0.08);
}
.blog-table td:first-child {
  color: var(--bone);
}
.blog-table tr:last-child td {
  border-bottom: 0;
}
.post-cta {
  margin: 52px 0 10px;
  padding: 32px 30px;
  border: 1px solid var(--hair);
  background: var(--ink-2);
  text-align: center;
}
.post-cta-lead {
  font-family: "Bodoni Moda", serif;
  font-size: 22px !important;
  color: var(--bone) !important;
  margin: 0 !important;
}
.post-cta .hero-cta {
  justify-content: center;
  animation: none;
}
.post-back {
  margin-top: 44px !important;
  padding-top: 26px;
  border-top: 1px solid var(--hair);
  font-size: 12px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-cta {
    padding: 26px 20px;
  }
}
