/* ═══════════════════════════════════════════════════════════
   N HIS IMAGE CREATIVE DEZIGNS — REDESIGN
   Modern Atelier · same warm palette · all-new system
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700;1,9..144,800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg:        #f0e7d2;
  --bg-2:      #e6dabe;
  --bg-3:      #faf3e0;
  --card:      #ffffff;
  --line:      #c9bb98;
  --line-2:    #d6cba8;
  --ink:       #1f1812;
  --ink-2:     #4a3e2c;
  --muted:     #8a7a60;
  --gold:      #a87a25;
  --gold-2:    #8f6620;
  --gold-3:    #c1953a;
  --gold-soft: rgba(168,122,37,.10);
  --gold-line: rgba(168,122,37,.28);
  --pink:      #b85068;
  --pink-2:    #a04258;
  --pink-soft: rgba(184,80,104,.08);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 22px;

  --pad-x:      clamp(1.4rem, 5vw, 4rem);
  --pad-section: clamp(4.5rem, 8vw, 8rem);
  --max:        1320px;

  --t-fast: .25s cubic-bezier(.4,0,.2,1);
  --t-med:  .45s cubic-bezier(.22,1,.36,1);
  --t-slow: .9s  cubic-bezier(.22,1,.36,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: transparent; border: none; outline: none; }
::selection { background: var(--ink); color: var(--bg-3); }
ul { list-style: none; }

/* ─── TYPOGRAPHY HELPERS ─── */
.gold { color: var(--gold); }
.pink { color: var(--pink); font-family: var(--serif); font-style: italic; font-weight: 600; }
.hand { color: var(--pink); font-family: var(--serif); font-style: italic; font-weight: 600; letter-spacing: -.01em; }
.stroke { -webkit-text-stroke: 1.2px var(--gold); color: transparent; }
.outline { -webkit-text-stroke: 1.2px var(--ink); color: transparent; }

/* shared eyebrow / overline label */
.section-tag,
.hero-tag,
.footer-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-tag::before,
.footer-cta-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-tag .blink {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink);
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* ─── LAYOUT SHELL ─── */
.section {
  padding: var(--pad-section) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.2rem;
  flex-wrap: wrap;
}
.section-head.center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-top: .9rem;
  color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 500; color: var(--pink); }
.section-title .gold { color: var(--gold); }
.section-title .pink { font-family: inherit; font-style: italic; }
.section-sub { color: var(--muted); margin-top: .8rem; max-width: 520px; }
.section-link {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--ink);
  transition: color var(--t-fast), border-color var(--t-fast), gap var(--t-fast);
}
.section-link i { font-size: .68rem; transition: transform var(--t-fast); }
.section-link:hover { color: var(--gold); border-color: var(--gold); gap: .85rem; }
.section-link:hover i { transform: translateX(3px); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  border: 1px solid transparent;
}
.btn i { font-size: .82rem; }
.btn-primary {
  background: var(--ink);
  color: var(--bg-3);
}
.btn-primary:hover {
  background: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(31,24,18,.55);
}
.btn-gold {
  background: var(--gold);
  color: var(--bg-3);
}
.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(168,122,37,.55);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg-3);
  transform: translateY(-2px);
}

/* Safety: btn-primary inside dark sections auto-flips to gold so it's never invisible */
.newsletter .btn-primary,
footer .btn-primary {
  background: var(--gold);
  color: var(--bg-3);
}
.newsletter .btn-primary:hover,
footer .btn-primary:hover {
  background: var(--gold-3);
  box-shadow: 0 14px 28px -14px rgba(193,149,58,.55);
}
.newsletter .btn-ghost,
footer .btn-ghost {
  border-color: var(--bg-3);
  color: var(--bg-3);
}
.newsletter .btn-ghost:hover,
footer .btn-ghost:hover {
  background: var(--bg-3);
  color: var(--ink);
}

/* ─── NAV ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem var(--pad-x);
  background: rgba(240,231,210,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--gold-line);
  transition: padding var(--t-fast);
}
nav > * { flex-shrink: 0; }
nav .nav-logo { min-width: 0; flex-shrink: 1; }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img {
  height: 110px; width: auto; object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform var(--t-med);
}
.nav-logo:hover img { transform: scale(1.04); }

.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
}
.nav-links a {
  position: relative;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .25rem 0;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }

.nav-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.nav-actions > * { flex-shrink: 0; }

/* Compact round cart icon — same on desktop and mobile */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  padding: 0;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.nav-cart i { font-size: 1rem; color: var(--ink); transition: color var(--t-fast); }
.nav-cart-label { display: none; }
.nav-cart:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -10px rgba(31,24,18,.5);
}
.nav-cart:hover i { color: var(--gold-3); }
.nav-cart .cart-count {
  position: absolute;
  top: -4px; right: -4px;
  display: inline-grid; place-items: center;
  min-width: 20px; height: 20px;
  padding: 0 .35rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg-3);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1;
  border: 2px solid var(--bg);
  transition: background var(--t-fast);
}
.nav-cart:hover .cart-count { background: var(--gold-3); }
.nav-cart.pulse { animation: cartPulse .55s cubic-bezier(.34,1.56,.64,1); }
@keyframes cartPulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

a.nav-cta-order {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.4rem;
  background: var(--gold);
  color: var(--bg-3);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--gold);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
a.nav-cta-order:hover {
  background: var(--gold-2);
  color: var(--bg-3);
  border-color: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -12px rgba(168,122,37,.55);
}
.nav-links a.nav-cta-order::after { display: none; }
a.nav-cta-order .cta-arrow { font-size: .65rem; }

/* Show desktop CTA, hide mobile-menu CTA on desktop */
.nav-mobile-cta { display: none; }
.nav-cta-desktop { display: inline-flex; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--gold-line);
  z-index: 105;
  position: relative;
  transition: background var(--t-fast);
}
.hamburger:hover { background: var(--bg-2); }
.hamburger span {
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.nav-close {
  display: none;
  position: absolute;
  top: 1rem; right: 1.2rem;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--gold-line);
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
  z-index: 2;
}
.nav-close:hover { background: var(--ink); color: var(--gold-3); transform: rotate(90deg); }

/* ─── HERO (HOME) ─── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem var(--pad-x) 6rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.hero-left {
  position: relative;
  padding-right: 1rem;
}
.hero-tag { margin-bottom: 2rem; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero-title .hand,
.hero-title .gold {
  font-style: italic;
  font-weight: 500;
}
.hero-title .gold { color: var(--gold); font-family: var(--serif); font-style: italic; }
.hero-sub {
  max-width: 460px;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stat-row {
  display: flex; gap: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-line);
}
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ink);
}
.hero-stat span {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

.sparkle { display: none; }

.hero-right {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(31,24,18,.45);
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--t-slow);
}
.hero-right:hover img { transform: scale(1.04); }
.hero-corner { display: none; }
.hero-tag-pin {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.hero-info-card {
  position: absolute;
  left: 1.4rem; bottom: 1.4rem;
  display: flex; align-items: center; gap: .9rem;
  padding: .9rem 1.1rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  box-shadow: 0 18px 40px -18px rgba(31,24,18,.4);
  max-width: 260px;
  z-index: 2;
}
.hero-info-card .stars { color: var(--gold); font-size: .85rem; letter-spacing: .15em; margin-bottom: .25rem; }
.hero-info-card .lbl { font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .15rem; }
.hero-info-card .txt { font-family: var(--serif); font-style: italic; color: var(--ink-2); font-size: .9rem; line-height: 1.3; }

/* ─── PAGE HERO (other pages) ─── */
.page-hero {
  text-align: center;
  padding: 6rem var(--pad-x) 4.5rem;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--gold-line);
}
.page-hero .crumbs {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.page-hero .crumbs a { color: var(--ink-2); transition: color var(--t-fast); }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--pink);
}
.page-hero p {
  margin: 1.4rem auto 0;
  max-width: 580px;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ─── MARQUEE ─── */
.gold-strip {
  background: var(--ink);
  color: var(--bg-3);
  overflow: hidden;
  white-space: nowrap;
  padding: 1.1rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.gold-strip-track {
  display: inline-flex; gap: 2.5rem;
  animation: scroll 38s linear infinite;
  padding-left: 2.5rem;
}
.gold-strip-track span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -.01em;
  color: var(--bg-3);
}
.gold-strip-track .dot {
  font-family: var(--sans);
  color: var(--gold-3);
  font-size: .9rem;
  font-style: normal;
  display: inline-flex;
  align-items: center;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ticker (legacy) */
.ticker { display: none; }

/* ─── FEATURES ─── */
.features {
  padding: 4rem var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.feature {
  padding: 2.4rem 1.6rem;
  text-align: center;
  border-right: 1px solid var(--gold-line);
  transition: background var(--t-fast);
}
.feature:last-child { border-right: none; }
.feature:hover { background: var(--bg-3); }
.feature i {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: transform var(--t-med);
}
.feature:hover i { transform: translateY(-4px); }
.feature h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: .35rem;
}
.feature p {
  font-size: .82rem;
  color: var(--muted);
}

/* ─── SPLIT CARDS (categories) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.split-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.split-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--t-slow), filter var(--t-med);
}
.split-card:hover img { transform: scale(1.06); filter: brightness(.85); }
.split-card .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,15,11,.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.split-card .corner {
  position: absolute; top: 1.4rem; right: 1.4rem;
  padding: .4rem .8rem;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.split-card .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2rem 1.8rem;
  color: var(--bg-3);
  z-index: 2;
}
.split-card .num {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: .8rem;
}
.split-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: .6rem;
}
.split-card h3 em { font-style: italic; color: var(--gold-3); font-weight: 500; }
.split-card p {
  font-size: .92rem;
  color: rgba(250,243,224,.85);
  max-width: 380px;
  margin-bottom: 1.2rem;
}
.split-card .arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bg-3);
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--bg-3);
  transition: gap var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.split-card:hover .arrow { gap: .9rem; color: var(--gold-3); border-color: var(--gold-3); }

/* ─── PRODUCTS ─── */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.product {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.product:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  box-shadow: 0 28px 56px -22px rgba(31,24,18,.4);
}
.product-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
}
.product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,15,11,.18), transparent 55%);
  opacity: 0;
  transition: opacity var(--t-med);
  pointer-events: none;
  z-index: 1;
}
.product:hover .product-img::after { opacity: 1; }
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--t-slow);
}
.product:hover .product-img img { transform: scale(1.07); }
.badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: .35rem .7rem;
  background: var(--ink);
  color: var(--bg-3);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
}
.badge.gold { background: var(--gold); color: var(--bg-3); }
.quick {
  position: absolute;
  left: 50%; bottom: 1rem;
  transform: translateX(-50%) translateY(8px);
  padding: .6rem 1rem;
  background: var(--ink);
  color: var(--bg-3);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: .45rem;
  opacity: 0;
  transition: opacity var(--t-fast), transform var(--t-fast);
  z-index: 2;
}
.quick i { font-size: .7rem; color: var(--gold-3); }
.product:hover .quick { opacity: 1; transform: translateX(-50%) translateY(0); }

.product-body {
  padding: 1.1rem 1.1rem 1.3rem;
}
.product-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: .65rem;
  transition: color var(--t-fast);
}
.product:hover .product-name { color: var(--gold); }
.product-meta {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: .55rem;
  flex-wrap: wrap;
}
.product-stars { color: var(--gold); font-size: .78rem; letter-spacing: .12em; }
.product-stock {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex; align-items: center; gap: .25rem;
}
.product-stock i { font-size: .65rem; }
.product-stock.low { color: var(--pink); }
.product-sizes {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: .8rem;
  letter-spacing: .08em;
}
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--line-2);
}
.product-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}
.add-cart-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem .9rem;
  background: var(--ink);
  color: var(--bg-3);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-fast);
}
.add-cart-btn:hover { background: var(--gold); transform: translateY(-2px); }
.add-cart-btn i { font-size: .72rem; }

.wishlist {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-2);
  font-size: .85rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--t-fast), transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.product:hover .wishlist,
.lookbook-item:hover .wishlist { opacity: 1; transform: translateY(0); }
.wishlist:hover { background: var(--ink); color: var(--gold-3); transform: scale(1.08); }
.wishlist.active { background: var(--pink); color: #fff; opacity: 1; transform: translateY(0); }
.wishlist.pop { animation: cartPulse .45s; }

/* ─── STORY ─── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: var(--pad-section) var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}
.story-text h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: .9rem;
  margin-bottom: 1.4rem;
}
.story-text h2 em { font-style: italic; color: var(--pink); font-weight: 500; }
.story-text h2 .hand { color: var(--gold); }
.story-text p {
  color: var(--ink-2);
  margin-bottom: 1.1rem;
  line-height: 1.75;
}
.story-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2rem 0;
  padding: 1.6rem 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.story-feature strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ink);
}
.story-feature span {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}
.story-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -28px rgba(31,24,18,.45);
}
.story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--t-slow);
}
.story-visual:hover img { transform: scale(1.05); }
.stamp,
.stamp-corner { display: none; }

/* ─── QUOTE ─── */
.quote {
  text-align: center;
  padding: var(--pad-section) var(--pad-x);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--ink);
}
.quote blockquote em { color: var(--gold); font-style: italic; }
.quote cite {
  display: block;
  margin-top: 1.6rem;
  font-style: normal;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── VISUAL BAND ─── */
.visual-band {
  position: relative;
  padding: 9rem var(--pad-x);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.visual-band-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
}
.visual-band-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,11,.7), rgba(20,15,11,.85));
  z-index: -1;
}
.visual-band-inner {
  max-width: 720px;
  margin: 0 auto;
  color: var(--bg-3);
}
.visual-band-inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 1rem 0 1.2rem;
}
.visual-band-inner h2 em { font-style: italic; color: var(--gold-3); font-weight: 500; }
.visual-band-inner p {
  color: rgba(250,243,224,.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ─── TESTIMONIALS ─── */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.tst {
  background: var(--card);
  padding: 2rem 1.8rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.tst::before {
  content: '"';
  position: absolute;
  top: -.2rem; right: 1.5rem;
  font-family: var(--serif);
  font-size: 4rem;
  font-style: italic;
  line-height: 1;
  color: var(--gold);
  opacity: .5;
}
.tst:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  box-shadow: 0 24px 50px -24px rgba(31,24,18,.35);
}
.tst-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .15em;
  margin-bottom: 1.1rem;
}
.tst-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.tst-foot {
  display: flex; align-items: center; gap: .9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-2);
}
.tst-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-2);
  flex-shrink: 0;
}
.tst-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tst-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
}
.tst-role {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .15rem;
}

/* ─── NEWSLETTER ─── */
.newsletter {
  padding: var(--pad-section) var(--pad-x);
  text-align: center;
  background: var(--ink);
  color: var(--bg-3);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.newsletter h2 em { font-style: italic; color: var(--gold-3); font-weight: 500; }
.newsletter p {
  color: rgba(250,243,224,.75);
  margin-bottom: 2rem;
}
.newsletter .section-tag { color: var(--gold-3); }
.newsletter .section-tag::before { background: var(--gold-3); }

.newsletter-form {
  display: flex;
  gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(168,122,37,.35);
  border-radius: 999px;
  padding: .35rem;
  transition: border-color var(--t-fast);
}
.newsletter-form:focus-within { border-color: var(--gold-3); }
.newsletter-form input {
  flex: 1;
  padding: .85rem 1.2rem;
  color: var(--bg-3);
  font-size: .9rem;
}
.newsletter-form input::placeholder { color: rgba(250,243,224,.45); }
.newsletter-form button {
  padding: .85rem 1.6rem;
  background: var(--gold);
  color: var(--bg-3);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background var(--t-fast), transform var(--t-fast);
}
.newsletter-form button:hover { background: var(--gold-3); transform: translateY(-1px); }

/* ─── SHOP ─── */
.shop-promo {
  padding: 1rem var(--pad-x);
  background: var(--bg-2);
  border-bottom: 1px solid var(--gold-line);
}
.shop-promo-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.shop-promo-item {
  display: flex; align-items: center; justify-content: center;
  gap: .7rem;
  padding: .6rem;
  font-size: .82rem;
  color: var(--ink-2);
  border-right: 1px solid var(--gold-line);
}
.shop-promo-item:last-child { border-right: none; }
.shop-promo-item i { color: var(--gold); font-size: 1rem; }
.shop-promo-item em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  margin-left: .25rem;
}

.shop-toolbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--pad-x) 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.shop-tabs {
  display: flex; gap: .4rem;
  flex-wrap: wrap;
  background: var(--bg-3);
  padding: .35rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.shop-tab,
.g-tab {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.1rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-radius: 999px;
  transition: background var(--t-fast), color var(--t-fast);
}
.shop-tab i, .g-tab i { font-size: .82rem; }
.shop-tab:hover, .g-tab:hover { color: var(--ink); background: rgba(255,255,255,.5); }
.shop-tab.active, .g-tab.active { background: var(--ink); color: var(--bg-3); }

.tab-count {
  display: inline-grid; place-items: center;
  min-width: 22px;
  padding: 0 .45rem;
  height: 20px;
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}
.tab-count:empty { display: none; }
.shop-tab.active .tab-count, .g-tab.active .tab-count {
  background: var(--gold);
  color: var(--bg-3);
  border-color: var(--gold);
}

.shop-toolbar-right {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
}
.shop-result-count {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}
.shop-sort-wrap {
  display: flex; align-items: center; gap: .5rem;
  padding: 0 .8rem 0 1rem;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: border-color var(--t-fast);
}
.shop-sort-wrap:focus-within { border-color: var(--gold); }
.shop-sort-wrap i { color: var(--gold); font-size: .8rem; }
.shop-sort {
  appearance: none;
  -webkit-appearance: none;
  padding: .65rem 1.4rem .65rem .25rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23a87a25' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right .25rem center;
  background-size: 10px;
}
.shop-sort option { background: var(--bg-3); color: var(--ink); }

.shop-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--pad-x) 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.shop-empty {
  grid-column: 1 / -1;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}
.shop-empty i { font-size: 2.4rem; color: var(--gold); margin-bottom: 1rem; }
.shop-empty h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .5rem;
}
.shop-empty p { margin-bottom: 1.4rem; max-width: 420px; }

/* ─── GALLERY ─── */
.gallery-hero { padding-bottom: 3rem; }
.gallery-stats {
  display: flex; justify-content: center; gap: 2.4rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gold-line);
  max-width: 540px;
  margin-left: auto; margin-right: auto;
}
.g-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ink);
}
.g-stat span {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-section {
  padding: 4rem var(--pad-x);
  max-width: var(--max);
  margin: 0 auto;
}
.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.gallery-tabs {
  display: flex; gap: .4rem;
  flex-wrap: wrap;
  background: var(--bg-3);
  padding: .35rem;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.gallery-result-count {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}

.lookbook {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 1.2rem;
}
.lookbook-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--ink);
  cursor: zoom-in;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.lookbook-item.tall { grid-row: span 2; }
.lookbook-item.wide { grid-column: span 2; }
.lookbook-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--t-slow);
}
.lookbook-item:hover img { transform: scale(1.06); }
.lookbook-item:hover { box-shadow: 0 28px 60px -24px rgba(31,24,18,.45); }
.lookbook-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  background: linear-gradient(180deg, transparent 30%, rgba(20,15,11,.92) 100%);
  color: var(--bg-3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-med), transform var(--t-med);
}
.lookbook-item:hover .lookbook-overlay { opacity: 1; transform: translateY(0); }
.lookbook-overlay .ov-tag {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: .35rem;
}
.lookbook-overlay span {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: .25rem;
}
.lookbook-overlay p {
  font-size: .82rem;
  color: rgba(250,243,224,.85);
  line-height: 1.5;
}
.ov-zoom {
  position: absolute; top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  border-radius: 50%;
  font-size: .85rem;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.ov-zoom:hover { background: var(--gold); color: #fff; transform: scale(1.08); }

.gallery-empty {
  display: none;
  grid-column: 1 / -1;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  color: var(--muted);
}
.gallery-empty i { font-size: 2.4rem; color: var(--gold); margin-bottom: 1rem; }
.gallery-empty h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .5rem;
}

.hidden-fade { opacity: 0 !important; transform: scale(.96); transition: opacity .25s, transform .25s; }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(20,15,11,.92);
  z-index: 200;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.lightbox-content img {
  max-height: 75vh;
  margin: 0 auto;
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
  transition: opacity .2s;
}
.lightbox-caption {
  margin-top: 1.4rem;
  color: var(--bg-3);
}
.lb-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: .35rem;
}
.lb-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: .35rem;
}
.lb-desc { color: rgba(250,243,224,.75); font-size: .92rem; }
.lb-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-3);
  margin-top: .35rem;
}
.lb-order-btn {
  display: inline-flex !important;
  margin-top: .8rem;
  padding: .8rem 1.4rem !important;
  font-size: .72rem !important;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--bg-3);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); transform: scale(1.08); }
.lightbox-close { top: 1.5rem; right: 1.5rem; font-size: 1.4rem; }
.lightbox-prev  { top: 50%; left: 1.5rem; transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 1.5rem; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

/* ─── CONTACT ─── */
.quick-contact {
  max-width: 1000px;
  margin: -2rem auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}
.qc-tile {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  box-shadow: 0 12px 28px -16px rgba(31,24,18,.25);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.qc-tile:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 22px 44px -18px rgba(31,24,18,.4);
}
.qc-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--bg-2);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.qc-tile:hover .qc-icon { background: var(--gold); color: #fff; }
.qc-tile small {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}
.qc-tile strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .25rem;
}
.qc-arrow {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.qc-arrow i { font-size: .65rem; transition: transform var(--t-fast); }
.qc-tile:hover .qc-arrow i { transform: translateX(3px); }

.contact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem var(--pad-x);
}
.contact-info,
.contact-form {
  background: var(--card);
  padding: 2.4rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  position: relative;
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: .8rem 0 1rem;
}
.contact-info h2 em { font-style: italic; color: var(--pink); font-weight: 500; }
.contact-info > p {
  color: var(--ink-2);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line-2);
}
.contact-item:last-child { border-bottom: 1px solid var(--line-2); }
.contact-item-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--bg-2);
  border-radius: 50%;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
}
.contact-item:hover .contact-item-icon { background: var(--gold); color: #fff; }
.contact-item-text span {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .2rem;
}
.contact-item-text p {
  color: var(--ink);
  font-size: .95rem;
}

.form-header { margin-bottom: 1.8rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line-2); }
.form-header h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -.02em;
  margin-top: .8rem;
}
.form-header h3 em { font-style: italic; color: var(--pink); font-weight: 500; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: .95rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: #fff;
}
.form-group textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23a87a25' stroke-width='1.5' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.4rem;
}
.form-success { display: none; text-align: center; padding: 2rem 0; }
.form-success .check { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.form-success p { color: var(--ink-2); }

.prefill-banner {
  max-width: var(--max);
  margin: 0 auto 1.4rem;
  padding: .9rem 1.4rem;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; gap: .8rem;
  font-size: .9rem;
  color: var(--ink);
}
.prefill-banner i { color: var(--gold); }
.prefill-banner strong { color: var(--gold); font-weight: 600; }

/* ─── FAQ ─── */
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--pad-section) var(--pad-x);
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item:hover { border-color: var(--gold-line); }
.faq-item.open {
  border-color: var(--gold);
  box-shadow: 0 14px 30px -16px rgba(168,122,37,.3);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--ink);
}
.faq-q i {
  flex-shrink: 0;
  color: var(--gold);
  font-size: .8rem;
  transition: transform var(--t-fast);
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  padding: 0 1.5rem;
  color: var(--ink-2);
  line-height: 1.7;
  overflow: hidden;
  transition: max-height var(--t-med), padding var(--t-med);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.4rem;
}

/* ─── HOW ORDER (legacy hooks, hidden if not used) ─── */
.how-order { display: none; }

/* ─── CART DRAWER ─── */
.cart-drawer {
  position: fixed; inset: 0;
  z-index: 150;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  transition: visibility 0s linear var(--t-med);
}
.cart-drawer.open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s linear 0s;
}
.cart-overlay {
  position: absolute; inset: 0;
  background: rgba(20,15,11,.55);
  opacity: 0;
  transition: opacity var(--t-med);
}
.cart-drawer.open .cart-overlay { opacity: 1; }
.cart-panel {
  position: absolute; top: 0; right: 0;
  height: 100%; width: min(420px, 100%);
  background: var(--bg-3);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--t-med);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.4);
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--line-2);
}
.cart-head h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -.02em;
  display: inline-flex; align-items: center; gap: .6rem;
}
.cart-head-count {
  display: inline-grid; place-items: center;
  min-width: 24px; height: 24px;
  padding: 0 .5rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: 999px;
}
.cart-close {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-2);
  font-size: 1.4rem;
  color: var(--ink);
  transition: background var(--t-fast), color var(--t-fast);
}
.cart-close:hover { background: var(--ink); color: var(--bg-3); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.4rem 1.6rem;
}
.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-2);
}
.cart-item img,
.cart-item-noimg {
  width: 64px; height: 64px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: var(--bg-2);
}
.cart-item-noimg {
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.cart-item-tag {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}
.cart-item-name {
  font-family: var(--serif);
  font-size: .98rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .2rem;
}
.cart-item-price {
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink);
}
.cart-item-line { color: var(--muted); font-weight: 400; margin-left: .25rem; }
.cart-qty {
  margin-top: .5rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0 .25rem;
}
.cart-qty button {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  font-size: .9rem;
  color: var(--ink);
}
.cart-qty button:hover { color: var(--gold); }
.qty-val { padding: 0 .5rem; font-size: .82rem; font-weight: 600; }
.cart-remove {
  align-self: flex-start;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--muted);
  transition: color var(--t-fast), background var(--t-fast);
}
.cart-remove:hover { color: #fff; background: var(--pink); }

.cart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.cart-empty i { font-size: 2.2rem; color: var(--gold); margin-bottom: .9rem; }
.cart-empty h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .35rem;
}
.cart-empty p { margin-bottom: 1.4rem; }

.cart-foot {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--line-2);
  background: rgba(255,255,255,.5);
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.cart-subtotal span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-subtotal strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.cart-checkout { width: 100%; }
.cart-note {
  margin-top: .8rem;
  text-align: center;
  font-size: .72rem;
  color: var(--muted);
}

.cart-toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 160;
  padding: .9rem 1.2rem;
  background: var(--ink);
  color: var(--bg-3);
  border-radius: var(--r-sm);
  font-size: .85rem;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.4);
}

/* ─── FOOTER CTA ─── */
.footer-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.footer-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-cta-text { flex: 1; min-width: 260px; }
.footer-cta-tag { color: var(--gold); margin-bottom: .8rem; }
.footer-cta-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.footer-cta-text h3 em { font-style: italic; color: var(--pink); font-weight: 500; }
.footer-cta-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  color: rgba(250,243,224,.75);
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem var(--pad-x) 2.4rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.4rem;
}
.footer-brand img {
  height: 100px; width: auto;
  margin-bottom: 1.2rem;
  filter: brightness(1.4) contrast(1.1);
}
.footer-brand p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(250,243,224,.7);
  max-width: 320px;
  margin-bottom: 1.4rem;
}
.footer-contact {
  display: flex; flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.4rem;
}
.footer-contact a,
.footer-contact span {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .85rem;
  color: rgba(250,243,224,.75);
  transition: color var(--t-fast);
}
.footer-contact a:hover { color: var(--gold-3); }
.footer-contact i { color: var(--gold); font-size: .85rem; width: 14px; }

.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(250,243,224,.06);
  border: 1px solid rgba(250,243,224,.12);
  border-radius: 50%;
  color: rgba(250,243,224,.75);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a {
  font-size: .9rem;
  color: rgba(250,243,224,.75);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer-col a:hover { color: var(--gold-3); padding-left: .35rem; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem var(--pad-x);
  border-top: 1px solid rgba(250,243,224,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(250,243,224,.55);
}
.footer-bottom span { color: var(--gold-3); }
.footer-credit a {
  color: rgba(250,243,224,.75);
  border-bottom: 1px solid rgba(250,243,224,.2);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.footer-credit a:hover { color: var(--gold-3); border-color: var(--gold-3); }

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--bg-3);
  border-radius: 50%;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.4);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--t-fast), transform var(--t-fast), background var(--t-fast);
  z-index: 90;
}
.scroll-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .products,
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top .footer-col:last-child { grid-column: span 1; }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 2.4rem; padding-top: 2rem; padding-bottom: 4rem; }
  .hero-right { aspect-ratio: 4 / 3; }
  .shop-tabs, .gallery-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
  }
  .shop-tabs::-webkit-scrollbar,
  .gallery-tabs::-webkit-scrollbar { display: none; }
  .shop-tab, .g-tab { flex-shrink: 0; scroll-snap-align: start; }
  .shop-toolbar, .gallery-toolbar { gap: 1rem; }
  .lookbook { grid-auto-rows: 260px; }
  .story { grid-template-columns: 1fr; gap: 2.4rem; }
  .story-visual { order: -1; }
  .split { grid-template-columns: 1fr; }
  .split-card { aspect-ratio: 16 / 11; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: none; }
  .feature:nth-child(1), .feature:nth-child(2) { border-bottom: 1px solid var(--gold-line); }
  .products,
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .lookbook-item.wide { grid-column: span 2; }
  .lookbook-item.tall { grid-row: span 1; }
  .tst-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .quick-contact { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .shop-promo-inner { grid-template-columns: 1fr 1fr; }
  .shop-promo-item:nth-child(2) { border-right: none; }
}
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-logo img { height: 80px; }
  nav { padding: .4rem var(--pad-x); gap: .5rem; }
  body.menu-open { overflow: hidden; }

  .nav-cart { width: 42px; height: 42px; }
  .nav-cart .cart-count { min-width: 18px; height: 18px; font-size: .6rem; }

  /* Mobile: hide desktop CTA in nav-actions, show CTA inside mobile menu panel */
  .nav-cta-desktop { display: none !important; }
  .nav-mobile-cta { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 85%; max-width: 340px;
    height: 100vh;
    background: var(--bg-3);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5.5rem 2rem 2rem;
    box-shadow: -20px 0 60px -10px rgba(0,0,0,.25);
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
    transition: clip-path var(--t-med), -webkit-clip-path var(--t-med), visibility 0s linear var(--t-med);
    visibility: hidden;
    pointer-events: none;
    z-index: 110;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.open {
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
    visibility: visible;
    pointer-events: auto;
    transition: clip-path var(--t-med), -webkit-clip-path var(--t-med), visibility 0s linear 0s;
  }
  .nav-close { display: inline-flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: .95rem;
    border-bottom: 1px solid var(--line-2);
  }
  .nav-links a::after { display: none; }
  .nav-links a.nav-cta-order {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: .8rem;
    border-bottom: none;
  }

  .hero-title { font-size: clamp(2.6rem, 12vw, 4rem); }
  .hero-stat-row { gap: 1.4rem; }
  .hero-stat strong { font-size: 1.5rem; }

  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--gold-line); }
  .feature:last-child { border-bottom: none; }

  .products,
  .shop-grid,
  .lookbook { grid-template-columns: 1fr; }
  .lookbook-item.wide { grid-column: span 1; }
  .lookbook-item { grid-row: span 1 !important; }
  .lookbook { grid-auto-rows: 320px; }

  .story-features { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .footer-cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-cta-actions { justify-content: center; }

  .shop-promo-inner { grid-template-columns: 1fr; }
  .shop-promo-item { border-right: none; border-bottom: 1px solid var(--gold-line); padding-bottom: .6rem; }
  .shop-promo-item:last-child { border-bottom: none; }

  .contact-info, .contact-form { padding: 1.6rem 1.3rem; }
  .form-row { grid-template-columns: 1fr; }

  .lightbox-prev, .lightbox-next { display: none; }
  .lightbox { padding: 1rem; }

  /* tighter tabs on mobile so they fit visually + swipe to scroll */
  .shop-tabs, .gallery-tabs { padding: .3rem; }
  .shop-tab, .g-tab {
    padding: .55rem .85rem;
    font-size: .68rem;
    letter-spacing: .12em;
    gap: .35rem;
  }
  .shop-tab i, .g-tab i { font-size: .75rem; }
  .tab-count { min-width: 20px; height: 18px; font-size: .6rem; padding: 0 .35rem; }
}

/* ─── NEWSLETTER FORM — RESPONSIVE STACK ─── */
@media (max-width: 540px) {
  .newsletter-form {
    flex-direction: column;
    gap: .6rem;
    padding: .6rem;
    border-radius: var(--r-md);
    background: rgba(255,255,255,.04);
  }
  .newsletter-form input {
    width: 100%;
    padding: .9rem 1.1rem;
    background: rgba(255,255,255,.06);
    border-radius: 999px;
    text-align: center;
  }
  .newsletter-form button {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 999px;
  }
}
