:root {
  --gold: #a28e66;
  --gold-soft: #cdbe96;
  --cream: #ede3c6;
  --ivory: #e9d9c1;
  --beige: #e7d4bf;
  --champagne: #e5cfbc;
  --rose: #e5cfc5;

  --navy: #111b43;
  --navy-deep: #091a44;
  --royal: #002661;

  --bg: #fbf8f3;
  --bg-warm: #f4ede0;
  --ink: #1a1c2a;
  --ink-soft: #4a4d5e;

  --r-sm: 20px;
  --r-md: 28px;
  --r-pill: 999px;

  --shadow-soft: 0 10px 40px rgba(17, 27, 67, 0.08);
  --shadow-lift: 0 22px 60px rgba(17, 27, 67, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.5s;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.serif {
  font-family:
    "Playfair Display", "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}
.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) {
  .wrap {
    padding: 0 24px;
  }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition:
    background var(--t) var(--ease),
    backdrop-filter var(--t) var(--ease),
    border-color var(--t) var(--ease),
    padding var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251, 248, 243, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(162, 142, 102, 0.25);
  padding: 14px 40px;
}
.wordmark {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-align: center;
  transition:
    font-size var(--t) var(--ease),
    color var(--t) var(--ease);
}
.nav.scrolled .wordmark {
  font-size: 30px;
}
.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-left {
  justify-self: start;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.92);
  transition: color var(--t) var(--ease);
}
.nav.scrolled .nav-links a {
  color: var(--navy);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t) var(--ease);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-self: end;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.92);
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease);
}
.nav.scrolled .icon-btn {
  color: var(--navy);
}
.icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}
.nav.scrolled .icon-btn:hover {
  background: rgba(162, 142, 102, 0.14);
}
.bag-dot {
  position: relative;
}
.bag-dot .num {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}
@media (max-width: 980px) {
  .nav-links {
    display: none;
  }
  .nav {
    grid-template-columns: auto 1fr auto;
    padding: 16px 24px;
  }
  .nav.scrolled {
    padding: 12px 24px;
  }
  .wordmark {
    font-size: 28px;
  }
  .nav.scrolled .wordmark {
    font-size: 24px;
  }
  .nav-actions {
    gap: 6px;
  }
  .icon-btn {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 12px 16px;
    gap: 12px;
  }
  .nav.scrolled {
    padding: 10px 16px;
  }
  .wordmark {
    font-size: 24px;
  }
  .nav.scrolled .wordmark {
    font-size: 20px;
  }
  .icon-btn {
    width: 32px;
    height: 32px;
  }
  .nav-actions {
    gap: 4px;
  }
  .icon-btn svg {
    width: 16px;
    height: 16px;
  }
}
/* Hamburger visible at every size, desktop nav-links hidden */
.nav-links {
  display: none !important;
}
.nav-left-slot {
  justify-self: start;
  display: flex;
  align-items: center;
}

/* Hamburger button — inherits .icon-btn color so it matches other icons */
.nav-hamburger {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-pill);
  transition: background var(--t) var(--ease);
}
.nav-hamburger:hover {
  background: rgba(162, 142, 102, 0.14);
}
.nav-hamburger .bars {
  width: 26px;
  height: 16px;
  position: relative;
}
.nav-hamburger .bars::before,
.nav-hamburger .bars::after,
.nav-hamburger .bars > span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1.5px;
  transition:
    transform 0.35s var(--ease),
    opacity 0.2s var(--ease),
    top 0.35s var(--ease);
}
.nav-hamburger .bars::before {
  top: 0;
}
.nav-hamburger .bars > span {
  top: 7px;
}
.nav-hamburger .bars::after {
  top: 14px;
}
.nav-hamburger.open .bars::before {
  top: 7px;
  transform: rotate(45deg);
}
.nav-hamburger.open .bars::after {
  top: 7px;
  transform: rotate(-45deg);
}
.nav-hamburger.open .bars > span {
  opacity: 0;
}

/* ---------- FULL-SCREEN OVERLAY MENU ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--bg);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.65s cubic-bezier(0.83, 0, 0.17, 1),
    opacity 0.5s cubic-bezier(0.83, 0, 0.17, 1),
    visibility 0s linear 0.65s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  will-change: transform, opacity;
}
.drawer.open {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

/* Stagger children fade-up after the panel opens */
.drawer-head,
.drawer-body > *,
.drawer-foot {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.6s var(--ease);
}
.drawer.open .drawer-head {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}
.drawer.open .drawer-body > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.32s;
}
.drawer.open .drawer-body > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.38s;
}
.drawer.open .drawer-body > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.44s;
}
.drawer.open .drawer-body > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}
.drawer.open .drawer-foot {
  opacity: 1;
  transform: none;
  transition-delay: 0.56s;
}

@media (prefers-reduced-motion: reduce) {
  .drawer,
  .drawer.open,
  .drawer-head,
  .drawer-body > *,
  .drawer-foot {
    transition: opacity 0.2s linear !important;
    transform: none !important;
  }
}

.drawer-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(162, 142, 102, 0.18);
}
.drawer-head .left {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.drawer-head .wordmark {
  font-size: 32px;
  text-align: center;
}
.drawer-head .right {
  justify-self: end;
}
.drawer-close {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--navy);
  font-size: 24px;
  transition:
    background var(--t) var(--ease),
    transform var(--t) var(--ease);
}
.drawer-close:hover {
  background: rgba(162, 142, 102, 0.14);
  transform: rotate(90deg);
}

/* Body grid: nav columns left, featured cards right */
.drawer-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 56px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px;
}
.drawer-col h6 {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}
.drawer-col .primary {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer-col .primary li a {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition:
    color var(--t) var(--ease),
    gap var(--t) var(--ease),
    padding-left var(--t) var(--ease);
}
.drawer-col .primary li a em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.drawer-col .primary li a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.drawer-col .primary li a small {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 9px;
  border: 1px solid rgba(162, 142, 102, 0.4);
  border-radius: 999px;
}

.drawer-col .sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-col .sub li a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color var(--t) var(--ease);
}
.drawer-col .sub li a:hover {
  color: var(--gold);
}

/* Featured cards stack */
.drawer-featured {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--r-md);
  flex: 1;
}
.drawer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.drawer-card:hover img {
  transform: scale(1.04);
}
.drawer-card .ov {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 27, 67, 0.55));
  color: #fff;
}
.drawer-card .label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 6px;
}
.drawer-card .name {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}
.drawer-card .name em {
  font-style: italic;
  color: var(--gold-soft);
}

.drawer-foot {
  padding: 24px 40px;
  border-top: 1px solid rgba(162, 142, 102, 0.18);
  background: var(--bg-warm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.drawer-foot .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.drawer-foot .pills span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid rgba(162, 142, 102, 0.35);
  border-radius: 999px;
  color: var(--navy);
}
.drawer-foot .contact {
  font-size: 13px;
  color: var(--ink-soft);
}
.drawer-foot .contact b {
  color: var(--navy);
  font-weight: 500;
}
.drawer-foot .social {
  display: flex;
  gap: 18px;
}
.drawer-foot .social a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--gold);
  transition: color var(--t) var(--ease);
}
.drawer-foot .social a:hover {
  color: var(--gold);
}

@media (max-width: 1100px) {
  .drawer-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 56px 32px;
  }
  .drawer-featured {
    grid-column: 1 / -1;
    flex-direction: row;
  }
}
@media (max-width: 720px) {
  .drawer-head {
    padding: 16px 24px;
    grid-template-columns: auto 1fr auto;
  }
  .drawer-head .left {
    display: none;
  }
  .drawer-body {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 32px;
  }
  .drawer-featured {
    flex-direction: column;
  }
  .drawer-col .primary li a {
    font-size: 26px;
  }
  .drawer-foot {
    padding: 18px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- MEGA MENU ---------- */
.nav-link {
  position: relative;
}
.nav-link.has-mega {
  display: inline-flex;
  align-items: center;
}
.nav-link.has-mega > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-link.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
  pointer-events: none;
}
.nav-link.has-mega.open::after {
  pointer-events: auto;
}

.mega {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 49;
  background: rgba(251, 248, 243, 0.98);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-top: 1px solid rgba(162, 142, 102, 0.22);
  border-bottom: 1px solid rgba(162, 142, 102, 0.32);
  box-shadow: 0 30px 60px rgba(17, 27, 67, 0.1);
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.4s var(--ease),
    top var(--t) var(--ease);
}
.nav.scrolled ~ .mega {
  top: 62px;
}
.mega.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mega-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 40px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 56px;
}
.mega-col h6 {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mega-col li a {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  transition:
    color var(--t) var(--ease),
    padding-left var(--t) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mega-col li a small {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 3px 8px;
  border: 1px solid rgba(162, 142, 102, 0.4);
  border-radius: 999px;
}
.mega-col li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.mega-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mega-card {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-sm);
  text-decoration: none;
}
.mega-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.mega-card:hover img {
  transform: scale(1.04);
}
.mega-card .ov {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(17, 27, 67, 0.55));
  color: #fff;
}
.mega-card .label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 4px;
}
.mega-card .name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}
.mega-card .name em {
  font-style: italic;
  color: var(--gold-soft);
}

.mega-foot {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(162, 142, 102, 0.22);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.mega-foot .gold {
  color: var(--gold);
}
.mega-foot a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap var(--t) var(--ease);
}
.mega-foot a:hover {
  gap: 14px;
}
.mega-foot .arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.mega-foot .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* Backdrop dim when mega is open */
.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 26, 68, 0.18);
  backdrop-filter: blur(2px);
  z-index: 48;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.mega-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Caret on nav links that have a mega */
.nav-link.has-mega .caret {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  opacity: 0.55;
  transition:
    transform var(--t) var(--ease),
    opacity var(--t) var(--ease);
  margin-left: 4px;
  flex-shrink: 0;
}
.nav-link.has-mega.open .caret {
  transform: rotate(-135deg) translate(-1px, -1px);
  opacity: 1;
}

@media (max-width: 1100px) {
  .mega-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px 24px 40px;
  }
  .mega-featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 980px) {
  .mega {
    display: none;
  }
}

/* ---------- HERO (cinematic fade) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-warm);
  overflow: hidden;
  isolation: isolate;
}
/* Full-bleed image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* The fade — this is the heart of the design. Image dissolves into cream. */
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
      /* Soft top shade for nav legibility against any image */
    linear-gradient(
      180deg,
      rgba(9, 26, 68, 0.32) 0%,
      rgba(9, 26, 68, 0.08) 14%,
      transparent 22%
    ),
    /* Subtle warm wash on right for editorial mood */
    radial-gradient(
        900px 700px at 100% 30%,
        rgba(229, 207, 188, 0.18),
        transparent 60%
      ),
    /* The main vertical fade — image at top dissolves to bg-warm at bottom */
    linear-gradient(
        180deg,
        rgba(244, 237, 224, 0) 0%,
        rgba(244, 237, 224, 0) 38%,
        rgba(244, 237, 224, 0.06) 50%,
        rgba(244, 237, 224, 0.3) 62%,
        rgba(244, 237, 224, 0.68) 76%,
        rgba(244, 237, 224, 0.92) 88%,
        var(--bg-warm) 100%
      );
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 160px 40px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

/* Pill badge above headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid rgba(162, 142, 102, 0.32);
  box-shadow: 0 12px 32px rgba(17, 27, 67, 0.1);
  margin-bottom: 36px;
}
.hero-badge svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.hero h1 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  color: var(--navy);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero p.lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 44px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 42px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t) var(--ease),
    background var(--t) var(--ease);
}
.hero-cta:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(17, 27, 67, 0.28);
}
.hero-cta .arrow {
  width: 22px;
  height: 1px;
  background: #fff;
  position: relative;
}
.hero-cta .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
.hero-secondary {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  color: var(--navy);
}

/* Marquee — sits at very bottom of hero, sharing the cream */
.hero-marquee {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(162, 142, 102, 0.28);
  border-bottom: 1px solid rgba(162, 142, 102, 0.28);
  background: transparent;
  overflow: hidden;
  padding: 18px 0;
  margin-top: 8px;
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee-track span {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee-track .star {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--gold);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Scroll cue at far right */
.hero-scrollcue {
  position: absolute;
  right: 32px;
  bottom: 130px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  writing-mode: vertical-rl;
}
.hero-scrollcue .bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold));
}

@media (max-width: 1000px) {
  .hero-inner {
    padding: 130px 24px 32px;
  }
  .hero h1 {
    font-size: clamp(44px, 11vw, 80px);
  }
  .hero-scrollcue {
    display: none;
  }
}

/* ---------- PLACEHOLDER IMAGES ---------- */
.ph {
  width: 100%;
  height: 100%;
  position: relative;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(162, 142, 102, 0.18) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(135deg, var(--champagne), var(--rose) 60%, var(--ivory));
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph.dark {
  background:
    repeating-linear-gradient(
      135deg,
      rgba(205, 190, 150, 0.16) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(135deg, #15214f, var(--navy));
  color: var(--gold-soft);
}
.ph .ph-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 27, 67, 0.55);
  background: rgba(251, 248, 243, 0.7);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(17, 27, 67, 0.08);
}
.ph.dark .ph-label {
  color: rgba(237, 227, 198, 0.7);
  background: rgba(9, 26, 68, 0.5);
  border-color: rgba(205, 190, 150, 0.25);
}
/* Real photography overlay over the striped fallback */
.ph-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 1.2s var(--ease),
    opacity 0.4s var(--ease);
}
.collection-card:hover .ph-img,
.social-tile:hover .ph-img,
.product:hover .imgbox .ph-img {
  transform: scale(1.03);
}
.collection-card:hover .ph-img,
.social-tile:hover .ph-img {
  transform: scale(1.04);
}
.product .imgbox .ph-img.alt {
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.product:hover .imgbox .ph-img:not(.alt) {
  opacity: 0;
}
.product:hover .imgbox .ph-img.alt {
  opacity: 1;
}

/* ---------- FESTIVE PROMO BANNER ---------- */
.promo {
  padding: 40px 0 96px;
}
.promo-inner {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--navy);
  color: #f1ead8;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  isolation: isolate;
}
.promo-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      680px 420px at 82% 12%,
      rgba(205, 190, 150, 0.16),
      transparent 60%
    ),
    radial-gradient(
      520px 360px at 10% 96%,
      rgba(162, 142, 102, 0.14),
      transparent 62%
    );
  pointer-events: none;
}
.promo-copy {
  position: relative;
  z-index: 1;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.promo-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(205, 190, 150, 0.4);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 26px;
}
.promo-flag .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(205, 190, 150, 0.18);
}
.promo-copy h2 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 18px;
}
.promo-copy h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
}
.promo-copy p {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(237, 227, 198, 0.78);
  max-width: 420px;
  margin: 0 0 30px;
}
.promo-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform var(--t) var(--ease),
    box-shadow var(--t) var(--ease),
    background var(--t) var(--ease);
}
.promo-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
  box-shadow: 0 16px 34px -14px rgba(205, 190, 150, 0.6);
}
.promo-btn svg {
  width: 15px;
  height: 15px;
}
.promo-timer {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(205, 190, 150, 0.85);
}
.promo-timer b {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: 0;
  color: #fff;
}

.promo-products {
  position: relative;
  z-index: 1;
  padding: 40px 40px 40px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-content: center;
}
.promo-card {
  background: rgba(251, 248, 243, 0.05);
  border: 1px solid rgba(205, 190, 150, 0.18);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.55s var(--ease),
    border-color 0.55s var(--ease),
    background 0.55s var(--ease);
}
.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(205, 190, 150, 0.55);
  background: rgba(251, 248, 243, 0.09);
}
.promo-card .pm {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-warm);
}
.promo-card .pm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.promo-card:hover .pm img {
  transform: scale(1.07);
}
.promo-card .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.promo-card .pi {
  padding: 14px 14px 16px;
}
.promo-card .pi .nm {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}
.promo-card .pi .pr {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.promo-card .pi .pr .now {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--gold-soft);
}
.promo-card .pi .pr .was {
  font-size: 11px;
  color: rgba(237, 227, 198, 0.5);
  text-decoration: line-through;
}
@media (max-width: 940px) {
  .promo-inner {
    grid-template-columns: 1fr;
  }
  .promo-copy {
    padding: 56px 40px 34px;
  }
  .promo-products {
    padding: 0 40px 44px;
  }
}
@media (max-width: 560px) {
  .promo-products {
    grid-template-columns: 1fr 1fr;
  }
  .promo-products .promo-card:last-child {
    display: none;
  }
  .promo-copy {
    padding: 44px 26px 28px;
  }
  .promo-products {
    padding: 0 26px 36px;
  }
}

/* ---------- CATEGORY CAROUSEL ---------- */
.cat-carousel {
  padding: 80px 0 56px;
  background: var(--bg);
}
.cat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

/* Mobile */
@media (max-width: 768px) {
  .cat-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.cat-head h2 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  color: var(--navy);
  margin: 12px 0 0;
  letter-spacing: -0.01em;
}
.cat-head h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.cat-arrows {
  display: flex;
  gap: 10px;
}
.cat-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(162, 142, 102, 0.45);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
}
.cat-arrow:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 27, 67, 0.18);
}
.cat-arrow:active {
  transform: translateY(0) scale(0.94);
}
.cat-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t) var(--ease);
}
.cat-arrow:hover svg {
  transform: translateX(2px);
}
#catPrev:hover svg {
  transform: translateX(-2px);
}
.cat-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 2px 22px;
  scrollbar-width: none;
}
.cat-track::-webkit-scrollbar {
  display: none;
}
.cat-tile {
  flex: 0 0 auto;
  width: 230px;
  text-align: center;
  scroll-snap-align: start;
}
.cat-track.reveal .cat-tile {
  opacity: 0;
  transform: translateY(26px);
}
.cat-track.reveal.in .cat-tile {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.cat-track.reveal.in .cat-tile:nth-child(1) {
  transition-delay: 0.05s;
}
.cat-track.reveal.in .cat-tile:nth-child(2) {
  transition-delay: 0.12s;
}
.cat-track.reveal.in .cat-tile:nth-child(3) {
  transition-delay: 0.19s;
}
.cat-track.reveal.in .cat-tile:nth-child(4) {
  transition-delay: 0.26s;
}
.cat-track.reveal.in .cat-tile:nth-child(5) {
  transition-delay: 0.33s;
}
.cat-track.reveal.in .cat-tile:nth-child(6) {
  transition-delay: 0.4s;
}
.cat-track.reveal.in .cat-tile:nth-child(7) {
  transition-delay: 0.47s;
}
.cat-track.reveal.in .cat-tile:nth-child(8) {
  transition-delay: 0.54s;
}
.cat-track.reveal.in .cat-tile:nth-child(9) {
  transition-delay: 0.61s;
}
.cat-tile .img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  isolation: isolate;
  clip-path: inset(0 round var(--r-md));
  position: relative;
  box-shadow: 0 0 0 1px rgba(162, 142, 102, 0.3);
  transition:
    transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
}
.cat-tile:hover .img {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(162, 142, 102, 0.55),
    0 24px 46px -18px rgba(17, 27, 67, 0.4);
}
.cat-tile .img::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  border: 1px solid rgba(251, 248, 243, 0.55);
  pointer-events: none;
  z-index: 3;
  transition:
    inset 0.55s var(--ease),
    border-color 0.55s var(--ease);
}
.cat-tile:hover .img::after {
  inset: 9px;
  border-color: rgba(205, 190, 150, 0.85);
}
.cat-tile .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s var(--ease),
    filter 0.55s var(--ease);
}
.cat-tile:hover .img img {
  transform: scale(1.08);
  filter: brightness(0.82);
}
.cat-tile .ov {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(
    180deg,
    rgba(9, 13, 28, 0) 8%,
    rgba(9, 13, 28, 0.28) 45%,
    rgba(9, 13, 28, 0.68) 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  color: #fff;
  text-align: center;
  padding: 0 12px;
}
.cat-tile .ov .ov-lbl {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  transform: translateY(10px);
  transition: transform 0.55s var(--ease);
}
.cat-tile .ov .ov-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
  transform: translateY(14px);
  opacity: 0;
  transition:
    transform 0.55s var(--ease) 0.05s,
    opacity 0.5s var(--ease) 0.05s;
}
.cat-tile .ov .ov-cta::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.cat-tile:hover .ov {
  opacity: 1;
}
.cat-tile:hover .ov .ov-lbl {
  transform: translateY(0);
}
.cat-tile:hover .ov .ov-cta {
  transform: translateY(0);
  opacity: 1;
}
.cat-tile .lbl {
  display: block;
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  transition:
    color var(--t) var(--ease),
    opacity 0.4s var(--ease);
}
.cat-tile:hover .lbl {
  color: var(--navy);
}
@media (max-width: 720px) {
  .cat-tile {
    width: 160px;
  }
  .cat-tile .img {
    border-radius: 22px;
  }
  .cat-carousel {
    padding: 56px 0 40px;
  }
}

/* ---------- EDITORIAL STRIP ---------- */
.editorial-strip {
  padding: 96px 0;
  border-bottom: 1px solid rgba(162, 142, 102, 0.2);
  background: var(--bg-warm);
}
.editorial-strip .wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: center;
}
.editorial-strip h2 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  color: var(--navy);
  margin: 0;
}
.editorial-strip h2 b {
  font-style: normal;
  font-weight: 500;
}
.editorial-strip .eyebrow {
  margin-bottom: 18px;
}
.editorial-strip p {
  color: var(--ink-soft);
  max-width: 520px;
}
@media (max-width: 820px) {
  .editorial-strip .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ---------- SECTION HEADING ---------- */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 40px;
}

@media (max-width: 767.98px) {
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.section-head h2 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  margin: 14px 0 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-head h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-head .link {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  white-space: nowrap;
}

/* ---------- COLLECTIONS ---------- */
section.collections {
  padding: 140px 0 40px;
}
.collection-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-bottom: 96px;
}
.collection-row.alt {
  margin-top: 40px;
}
.collection-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  transition: box-shadow var(--t) var(--ease);
}
.collection-card .ph {
  transition: transform 1.2s var(--ease);
}
.collection-card:hover {
  box-shadow: var(--shadow-lift);
}
.collection-card:hover .ph {
  transform: scale(1.04);
}
.collection-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 27, 67, 0.45));
  color: #fff;
}
.collection-card .c-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.collection-card h3 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.05;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.collection-card .meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  display: flex;
  gap: 14px;
  align-items: center;
}
.collection-card .meta .arrow {
  width: 28px;
  height: 1px;
  background: var(--gold-soft);
  position: relative;
  transition: width var(--t) var(--ease);
}
.collection-card .meta .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold-soft);
  border-top: 1px solid var(--gold-soft);
  transform: rotate(45deg);
}
.collection-card:hover .meta .arrow {
  width: 48px;
}

.col-a {
  grid-column: 1 / span 7;
}
.col-b {
  grid-column: 8 / span 5;
  aspect-ratio: 4/5;
  align-self: end;
  transform: translateY(-40px);
}
.col-c {
  grid-column: 1 / span 5;
  aspect-ratio: 4/5;
  transform: translateY(40px);
}
.col-d {
  grid-column: 6 / span 7;
}
@media (max-width: 900px) {
  .col-a,
  .col-b,
  .col-c,
  .col-d {
    grid-column: 1 / -1;
    transform: none;
  }
}

/* ---------- PRODUCT GRID ---------- */
section.products {
  padding: 100px 0 140px;
  background:
    radial-gradient(
      800px 400px at 0% 0%,
      rgba(229, 207, 188, 0.4),
      transparent 60%
    ),
    var(--bg);
}
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-pill {
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(17, 27, 67, 0.12);
  color: var(--ink-soft);
  transition: all var(--t) var(--ease);
}
.filter-pill.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.filter-pill:hover:not(.active) {
  border-color: var(--gold);
  color: var(--navy);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product {
  position: relative;
  transition: transform var(--t) var(--ease);
}
.product .imgbox {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-warm);
  transition: box-shadow var(--t) var(--ease);
}
.product .imgbox .ph {
  transition:
    transform 0.9s var(--ease),
    opacity var(--t) var(--ease);
}
.product .imgbox .ph.alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(162, 142, 102, 0.18) 0 2px,
      transparent 2px 14px
    ),
    linear-gradient(135deg, var(--rose), var(--ivory) 60%, var(--cream));
}
.product:hover .imgbox {
  box-shadow: var(--shadow-soft);
}
.product:hover .imgbox .ph:not(.alt) {
  transform: scale(1.03);
  opacity: 0;
}
.product:hover .imgbox .ph.alt {
  opacity: 1;
}

.product .wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: rgba(251, 248, 243, 0.88);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease);
  color: var(--navy);
}
.product .wishlist:hover {
  background: #fff;
  color: var(--gold);
}
.product .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--cream);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}
.product .quick-add {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 14px;
  background: rgba(17, 27, 67, 0.92);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--t) var(--ease),
    transform var(--t) var(--ease);
  text-align: center;
}
.product:hover .quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product .info {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.product .info .name {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 6px;
}
.product .info .karat {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.product .price {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 500;
}
.product .rating {
  font-size: 12px;
  color: var(--ink-soft);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
}
.product .rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* ---------- CRAFTSMANSHIP (CREAM EDITORIAL) ---------- */
section.craft {
  background: var(--bg-warm);
  color: var(--navy);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
section.craft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    900px 500px at 80% 10%,
    rgba(162, 142, 102, 0.12),
    transparent 60%
  );
  pointer-events: none;
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.craft .eyebrow {
  color: var(--gold);
}
.craft h2 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  margin: 24px 0 32px;
  color: var(--navy);
  letter-spacing: -0.01em;
  max-width: 14ch;
  text-wrap: balance;
}
.craft h2 b {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
}
.craft p {
  color: var(--ink-soft);
  max-width: 480px;
  font-size: 16px;
  line-height: 1.75;
}
.craft-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(162, 142, 102, 0.35);
}
.craft-stats .stat {
  display: block;
}
.craft-stats .stat .num {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.craft-stats .stat .label {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.craft-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.craft-visual .ph-img {
  filter: none;
}
.craft-visual .tag {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 2;
  background: rgba(251, 248, 243, 0.94);
  color: var(--navy);
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(162, 142, 102, 0.32);
}
.craft-visual .tag .name {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .craft-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .craft-stats {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ---------- UGC / SOCIAL ---------- */
section.social {
  padding: 140px 0;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.social-tile {
  aspect-ratio: 1/1;
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  transition: transform var(--t) var(--ease);
}
.social-tile .ph {
  transition: transform 0.9s var(--ease);
}
.social-tile:hover .ph {
  transform: scale(1.05);
}
.social-tile .ig {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(17, 27, 67, 0.4));
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.social-tile:hover .ig {
  opacity: 1;
}
.social-tile.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
@media (max-width: 760px) {
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .social-tile.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
}

/* ---------- TESTIMONIAL ---------- */
section.testimonial {
  background: var(--navy-deep);
  color: #f1ead8;
  padding: 140px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.quote {
  padding: 40px;
  border: 1px solid rgba(205, 190, 150, 0.18);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.02);
}
.quote .stars {
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.quote p {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.45;
  font-style: italic;
  color: #fff;
  margin: 0 0 28px;
}
.quote .author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote .avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--navy);
}
.quote .who {
  font-size: 14px;
  color: #fff;
}
.quote .where {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(205, 190, 150, 0.75);
}
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* reviews swiper */
.reviews-swiper {
  padding: 4px 4px 8px;
}
.reviews-swiper .swiper-slide {
  height: auto;
}
.reviews-swiper .quote {
  height: 100%;
  box-sizing: border-box;
  margin: 0;
}
.swiper-hint {
  pointer-events: none;
}
.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 44px;
}
.rev-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(205, 190, 150, 0.4);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease),
    border-color var(--t) var(--ease);
}
.rev-btn svg {
  width: 18px;
  height: 18px;
}
.rev-btn:hover {
  background: var(--gold-soft);
  color: var(--navy-deep);
  border-color: var(--gold-soft);
}
.reviews-pagination {
  display: flex;
  align-items: center;
  gap: 9px;
}
.reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(237, 227, 198, 0.3);
  opacity: 1;
  border-radius: 999px;
  transition:
    width var(--t) var(--ease),
    background var(--t) var(--ease);
}
.reviews-pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--gold-soft);
}

/* ---------- ASSURANCE ---------- */
section.assurance {
  padding: 120px 0;
  background: var(--bg-warm);
}
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(162, 142, 102, 0.3);
  border-bottom: 1px solid rgba(162, 142, 102, 0.3);
}
.assurance-cell {
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-right: 1px solid rgba(162, 142, 102, 0.18);
  transition: background var(--t) var(--ease);
}
.assurance-cell:last-child {
  border-right: 0;
}
.assurance-cell:hover {
  background: rgba(255, 255, 255, 0.4);
}
.assurance-cell .ico {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(162, 142, 102, 0.35);
  color: var(--gold);
}
.assurance-cell h4 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--navy);
}
.assurance-cell p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}
@media (max-width: 1000px) {
  .assurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .assurance-cell {
    border-bottom: 1px solid rgba(162, 142, 102, 0.18);
  }
  .assurance-cell:nth-child(even) {
    border-right: 0;
  }
}

/* ---------- NEWSLETTER ---------- */
section.newsletter {
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(
      700px 400px at 50% 0%,
      rgba(229, 207, 188, 0.6),
      transparent 65%
    ),
    var(--bg);
}
.newsletter h2 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  color: var(--navy);
  margin: 14px auto 16px;
  max-width: 720px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.newsletter h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.newsletter p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 40px;
}
.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(17, 27, 67, 0.18);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 28px;
  background: #fff;
  transition: border-color var(--t) var(--ease);
}
.newsletter-form:focus-within {
  border-color: var(--gold);
}
.newsletter-form input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
  background: transparent;
  color: var(--navy);
}
.newsletter-form button {
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--t) var(--ease);
}
.newsletter-form button:hover {
  background: var(--navy-deep);
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: #d8d2c0;
  padding: 100px 0 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(205, 190, 150, 0.18);
}
.foot-logo {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: 32px;
  letter-spacing: 0.16em;
  color: #fff;
  margin-bottom: 24px;
}
.foot-logo .dot {
  color: var(--gold-soft);
}
.foot-grid p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(216, 210, 192, 0.7);
  max-width: 320px;
}
.foot-grid h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin: 0 0 22px;
}
.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.foot-grid li a {
  font-size: 14px;
  color: rgba(216, 210, 192, 0.85);
  transition: color var(--t) var(--ease);
}
.foot-grid li a:hover {
  color: var(--gold-soft);
}
.foot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.foot-badges .b {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid rgba(205, 190, 150, 0.3);
  border-radius: var(--r-pill);
  color: var(--gold-soft);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 210, 192, 0.5);
}
.foot-bottom .links {
  display: flex;
  gap: 28px;
}
@media (max-width: 1000px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .foot-grid > div:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 14px;
  }
   .foot-bottom .links { display: flex; gap: 28px; }
  @media (max-width: 768px) {
    .foot-bottom .links {
        flex-direction: column;
        align-items: left; /* optional */
        gap: 12px;
    }}
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 {
  transition-delay: 0.08s;
}
.reveal.delay-2 {
  transition-delay: 0.16s;
}
.reveal.delay-3 {
  transition-delay: 0.24s;
}
.reveal.delay-4 {
  transition-delay: 0.32s;
}

/* ============ TWEAKS — MOOD PALETTES ============ */
/* Default (navy & gold) is already defined in :root */

body[data-mood="midnight-bloom"] {
  --gold: #c9a48b;
  --gold-soft: #e1c8b6;
  --cream: #f0e2c6;
  --ivory: #ebd7c4;
  --beige: #ead2bd;
  --champagne: #e6cdb9;
  --rose: #e6cdc6;
  --navy: #0b1638;
  --navy-deep: #060e26;
  --royal: #001a4a;
  --bg: #fbf4e8;
  --bg-warm: #f3e3cf;
  --ink: #1e1822;
  --ink-soft: #5a4d56;
}

body[data-mood="forest-atelier"] {
  --gold: #b89860;
  --gold-soft: #d4be90;
  --cream: #ebe3c9;
  --ivory: #e6dac0;
  --beige: #e3d4bc;
  --champagne: #decfb8;
  --rose: #e2d5c2;
  --navy: #1b3a2e;
  --navy-deep: #0f291f;
  --royal: #0d4a32;
  --bg: #fbf7ee;
  --bg-warm: #ece4d0;
  --ink: #1a221d;
  --ink-soft: #4a5048;
}

body[data-mood="mocha-velvet"] {
  --gold: #b48a6a;
  --gold-soft: #d4b294;
  --cream: #f0e0cc;
  --ivory: #ecd7c0;
  --beige: #ebd2b8;
  --champagne: #e8caaf;
  --rose: #e5c6b8;
  --navy: #3a2820;
  --navy-deep: #271812;
  --royal: #5a3a2a;
  --bg: #fbf3e9;
  --bg-warm: #f1ddc8;
  --ink: #261c18;
  --ink-soft: #5e4a40;
}

/* Re-derive the hero fade gradient per mood so it tracks bg-warm */
.hero-fade {
  background:
    linear-gradient(
      180deg,
      rgba(9, 26, 68, 0.32) 0%,
      rgba(9, 26, 68, 0.08) 14%,
      transparent 22%
    ),
    radial-gradient(
      900px 700px at 100% 30%,
      rgba(229, 207, 188, 0.18),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 52%,
      color-mix(in oklab, var(--bg-warm) 10%, transparent) 62%,
      color-mix(in oklab, var(--bg-warm) 32%, transparent) 72%,
      color-mix(in oklab, var(--bg-warm) 65%, transparent) 82%,
      color-mix(in oklab, var(--bg-warm) 92%, transparent) 92%,
      var(--bg-warm) 100%
    );
}

/* ============ TWEAKS — HERO COMPOSITION ============ */
body[data-composition="cinematic"] .hero {
  min-height: 110vh;
}
body[data-composition="cinematic"] .hero-inner {
  justify-content: flex-end;
  padding-bottom: 140px;
  padding-top: 50vh;
}
body[data-composition="cinematic"] .hero-fade {
  background:
    linear-gradient(
      180deg,
      rgba(9, 26, 68, 0.38) 0%,
      rgba(9, 26, 68, 0.06) 16%,
      transparent 26%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 42%,
      color-mix(in oklab, var(--bg-warm) 22%, transparent) 60%,
      color-mix(in oklab, var(--bg-warm) 72%, transparent) 80%,
      var(--bg-warm) 100%
    );
}
body[data-composition="cinematic"] .hero h1 {
  color: #091a44;
}
body[data-composition="cinematic"] .hero h1 em {
  color: #6b5223;
}
body[data-composition="cinematic"] .hero p.lede {
  color: rgba(255, 255, 255, 0.85);
}
body[data-composition="cinematic"] .hero-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
}
body[data-composition="cinematic"] .hero-badge svg {
  color: var(--gold-soft);
}

body[data-composition="hushed"] .hero-bg img {
  filter: brightness(1.06) saturate(0.85);
}
body[data-composition="hushed"] .hero-fade {
  background:
    linear-gradient(180deg, rgba(9, 26, 68, 0.18) 0%, transparent 14%),
    linear-gradient(
      180deg,
      color-mix(in oklab, var(--bg-warm) 14%, transparent) 0%,
      color-mix(in oklab, var(--bg-warm) 30%, transparent) 25%,
      color-mix(in oklab, var(--bg-warm) 55%, transparent) 45%,
      color-mix(in oklab, var(--bg-warm) 82%, transparent) 65%,
      color-mix(in oklab, var(--bg-warm) 95%, transparent) 80%,
      var(--bg-warm) 100%
    );
}
body[data-composition="hushed"] .hero-inner {
  padding-top: 24vh;
  padding-bottom: 80px;
}

/* ============ TWEAKS — TYPE VOICE ============ */
/* Default voice is Playfair Display (set on body & headings).
     The tweaks switch the headline serif to alternates. */
body[data-voice="cormorant"] h1,
body[data-voice="cormorant"] h2,
body[data-voice="cormorant"] h3,
body[data-voice="cormorant"] h4,
body[data-voice="cormorant"] .wordmark,
body[data-voice="cormorant"] .serif,
body[data-voice="cormorant"] .logo,
body[data-voice="cormorant"] .price,
body[data-voice="cormorant"] .stamp-num,
body[data-voice="cormorant"] .stat .num,
body[data-voice="cormorant"] .foot-logo {
  font-family: "Cormorant Garamond", serif;
}
body[data-voice="cormorant"] h1 {
  letter-spacing: -0.025em;
  font-weight: 500;
}
body[data-voice="playfair"] h1,
body[data-voice="playfair"] h2,
body[data-voice="playfair"] h3,
body[data-voice="playfair"] h4,
body[data-voice="playfair"] .wordmark,
body[data-voice="playfair"] .serif,
body[data-voice="playfair"] .logo,
body[data-voice="playfair"] .price,
body[data-voice="playfair"] .stamp-num,
body[data-voice="playfair"] .stat .num,
body[data-voice="playfair"] .foot-logo {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
}
body[data-voice="playfair"] h1 {
  letter-spacing: -0.015em;
  font-weight: 500;
}

body[data-voice="dm-serif"] h1,
body[data-voice="dm-serif"] h2,
body[data-voice="dm-serif"] h3,
body[data-voice="dm-serif"] h4,
body[data-voice="dm-serif"] .wordmark,
body[data-voice="dm-serif"] .serif,
body[data-voice="dm-serif"] .logo,
body[data-voice="dm-serif"] .price,
body[data-voice="dm-serif"] .stamp-num,
body[data-voice="dm-serif"] .stat .num,
body[data-voice="dm-serif"] .foot-logo {
  font-family:
    "DM Serif Display", "Playfair Display", "Cormorant Garamond", serif;
}
body[data-voice="dm-serif"] h1 {
  letter-spacing: -0.02em;
  font-weight: 400;
}

/* ============ TWEAKS PANEL ============ */
.tweaks-toggle {
  display: none;
} /* host shows it; we don't need our own toggle */

.tweaks-panel {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 320px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  z-index: 100;
  background: rgba(251, 248, 243, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(162, 142, 102, 0.32);
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(17, 27, 67, 0.18);
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--t) var(--ease),
    opacity var(--t) var(--ease);
}
.tweaks-panel.open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.tweaks-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 12px;
  border-bottom: 1px solid rgba(162, 142, 102, 0.18);
}
.tweaks-head h3 {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  color: var(--navy);
}
.tweaks-head h3 .tag {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-left: 10px;
  vertical-align: 4px;
}
.tweaks-close {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
  transition: background var(--t) var(--ease);
}
.tweaks-close:hover {
  background: rgba(162, 142, 102, 0.14);
}

.tweaks-section {
  padding: 18px 22px 22px;
  border-bottom: 1px solid rgba(162, 142, 102, 0.1);
}
.tweaks-section:last-child {
  border-bottom: 0;
}
.tweaks-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.tweaks-sublabel {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 14px;
}

/* Mood swatches */
.mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mood-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(162, 142, 102, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.4);
  text-align: left;
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.mood-opt:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}
.mood-opt.active {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 6px 16px rgba(17, 27, 67, 0.1);
}
.mood-opt .swatch {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex: 0 0 36px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.mood-opt .mood-name {
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* Segmented controls (composition, voice) */
.seg {
  display: flex;
  background: rgba(162, 142, 102, 0.08);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.seg button {
  flex: 1;
  padding: 9px 8px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.seg button:hover {
  color: var(--navy);
}
.seg button.active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 12px rgba(17, 27, 67, 0.18);
}

/* Voice preview swatches show font sample */
.voice-opt .sample {
  font-size: 17px;
  line-height: 1;
  margin-right: 2px;
}
.voice-opt[data-value="cormorant"] .sample {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
}
.voice-opt[data-value="playfair"] .sample {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
}
.voice-opt[data-value="dm-serif"] .sample {
  font-family: "DM Serif Display", serif;
}

/* Mobile: shrink the panel */
@media (max-width: 540px) {
  .tweaks-panel {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }
}