:root {
  --ink: #0A0A0A;
  --ink-soft: #1a1a1a;
  --paper: #F8F6F1;
  --paper-warm: #EFEAE0;
  --paper-deep: #E6DFD1;
  --champagne: #C9A876;
  --champagne-deep: #A88758;
  --mute: #6B6158;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  overflow-x: clip; /* clip preserves position:sticky for descendants; hidden breaks it */
  width: 100%;
  max-width: 100vw;
}
/* Strip default list styling from menu items emitted by wp_nav_menu */
.nav-links li { list-style: none; padding: 0; margin: 0; }
.nav-links li::marker { content: ""; }
/* Hero image fills its container cleanly */
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Type ---- */
.serif { font-family: 'Fraunces', serif; font-optical-sizing: auto; font-variation-settings: "SOFT" 30, "WONK" 0; }
.italic { font-style: italic; }
.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
}
.price-serif {
  font-family: 'Fraunces', serif;
  font-feature-settings: "lnum", "ss02";
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---- Container ---- */
.container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .container { padding: 0 22px; } }

/* ---- Top strip ---- */
.topstrip {
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 10px 20px;
  font-weight: 300;
}
.topstrip span { opacity: 0.85; }
.topstrip .dot { margin: 0 14px; opacity: 0.4; }

/* ---- Nav ---- */
.nav {
  position: sticky; top: 0; z-index: 50;
  padding: 22px 0;
  transition: padding 0.4s ease;
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  border-radius: 0;
}
.nav.scrolled { padding: 14px 0; }
.nav.scrolled .nav-inner {
  background: rgba(248, 246, 241, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 10px 40px -20px rgba(10,10,10,0.25);
  padding: 14px 28px;
}
.nav-left { display: flex; align-items: center; gap: 16px; }
.nav-links { display: flex; gap: 36px; font-size: 13.5px; font-weight: 500; letter-spacing: 0.01em; white-space: nowrap; }
.nav-links ul { display: flex; gap: 36px; list-style: none; padding: 0; margin: 0; align-items: center; }
.nav-links li { list-style: none; padding: 0; margin: 0; }

/* Hamburger toggle — hidden on desktop */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 4px;
  transition: background 0.2s;
}
.menu-toggle:hover { background: rgba(10,10,10,0.05); }
.menu-toggle .bar {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
body.nav-open .menu-toggle .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .menu-toggle .bar:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer backdrop */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 99;
}
body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}
.nav-links a { position: relative; padding: 6px 0; color: var(--ink); opacity: 0.82; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--champagne); transition: width 0.4s ease;
}
.nav-links a:hover::after { width: 100%; }
.brand {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  letter-spacing: 0.005em;
  text-align: center;
  font-weight: 400;
  line-height: 1;
  position: relative;
  padding-bottom: 6px;
}


.brand-img { display: block; max-height: 68px; width: auto; height: auto; transition: max-height 0.4s cubic-bezier(.2,.8,.2,1); }
.nav.scrolled .brand-img { max-height: 44px; }

@media (max-width: 720px) { .brand-img { max-height: 60px; } .nav.scrolled .brand-img { max-height: 40px; } }
.brand-apos { display: inline-block; margin: 0 0.12em; }
.brand em { font-style: italic; font-weight: 400; color: var(--mute); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; display: block; margin-top: 4px; font-family: 'Manrope', sans-serif; }
.nav-right { display: flex; justify-content: flex-end; gap: 22px; align-items: center; font-size: 13px; }
.nav-right .phone { color: var(--mute); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.nav-right .phone::before { content: ""; width: 6px; height: 6px; background: #2ea24a; border-radius: 50%; box-shadow: 0 0 0 3px rgba(46,162,74,0.18); }
.nav-right .icon-btn { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.2s; }
.nav-right .icon-btn:hover { background: rgba(10,10,10,0.05); }
.nav-right .cart { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 100px; font-size: 12.5px; letter-spacing: 0.04em; }
.nav-right .cart .count { background: var(--ink); color: var(--paper); font-size: 10px; width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 28px;
  font-size: 13.5px; letter-spacing: 0.06em; font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--champagne-deep); color: var(--paper); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--ink); border-radius: 0; }
.btn-ghost:hover { color: var(--champagne-deep); border-color: var(--champagne-deep); }
.btn .arrow { width: 14px; height: 10px; position: relative; transition: transform 0.3s; }
.btn .arrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 100%; height: 1px; background: currentColor; }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: 50%; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---- Placeholder image (subtle stripes + monospace label) ---- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(10,10,10,0.025) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, var(--paper-deep) 0%, var(--paper-warm) 50%, #D9D0BD 100%);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 14px; bottom: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.08em;
  color: rgba(10,10,10,0.4);
  background: rgba(248,246,241,0.6);
  backdrop-filter: blur(6px);
  padding: 3px 8px; border-radius: 2px;
  text-transform: uppercase;
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #1a1814 0%, #24201a 60%, #2e281f 100%);
}
.ph.dark::after { color: rgba(248,246,241,0.45); background: rgba(10,10,10,0.35); }
.ph.warm {
  background:
    repeating-linear-gradient(135deg, rgba(10,10,10,0.03) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, #d9c9a8 0%, #c8b48a 60%, #b89e6d 100%);
}

/* Subtle radial highlight like transparent acrylic catching light */
.ph.lit::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 30% at 30% 25%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(ellipse 35% 25% at 70% 75%, rgba(201,168,118,0.35), transparent 60%);
  pointer-events: none;
}

/* ===================== HERO ===================== */
.hero {
  padding: 60px 0 120px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  min-height: 78vh;
}
.hero-left { padding-bottom: 20px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
}
.hero-eyebrow .line { width: 40px; height: 1px; background: var(--champagne); }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--champagne-deep); }
.hero-sub {
  margin-top: 36px;
  max-width: 460px;
  font-size: 16px;
  color: var(--mute);
  line-height: 1.65;
}
.hero-cta { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 520px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-meta .num { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 300; letter-spacing: -0.01em; }
.hero-meta .lbl { font-size: 11px; color: var(--mute); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }

.hero-right {
  position: relative;
  height: 78vh;
  min-height: 620px;
}
.hero-image {
  position: absolute; inset: 0;
  border-radius: 3px;
  overflow: hidden;
  will-change: transform;
}
.hero-image .ph { height: 100%; }
.hero-tag {
  position: absolute;
  top: 28px; left: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--paper);
  text-transform: uppercase;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 2px;
  z-index: 2;
}

/* Glass showcase card on hero */
.hero-card {
  position: absolute;
  left: -60px; bottom: 40px;
  width: 320px;
  padding: 22px;
  z-index: 3;
  background: rgba(248, 246, 241, 0.55);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 0 0 1px rgba(10,10,10,0.04),
    0 30px 60px -30px rgba(10,10,10,0.35);
}
.hero-card .label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute); }
.hero-card .card-title { font-family: 'Fraunces', serif; font-size: 22px; margin-top: 8px; font-weight: 400; line-height: 1.15; }
.hero-card .card-title em { font-style: italic; }
.hero-card .card-row { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(10,10,10,0.1); }
.hero-card .card-price { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 400; }
.hero-card .card-cta { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); padding-bottom: 3px; border-bottom: 1px solid var(--ink); }
.hero-card .card-cta:hover { color: var(--champagne-deep); border-color: var(--champagne-deep); }

/* ===================== MARQUEE DIVIDER ===================== */
.marquee {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper-warm);
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: slide 14s linear infinite;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 300;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee-track em { font-style: italic; color: var(--champagne-deep); }
.marquee-track .sep { color: var(--champagne); font-family: 'Fraunces', serif; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== SECTION HEADER ===================== */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.015em;
}
.section-header h2 em { font-style: italic; color: var(--champagne-deep); font-weight: 300; }
.section-header .side { color: var(--mute); max-width: 380px; font-size: 14.5px; line-height: 1.65; justify-self: end; }
.section-header .side a { display: inline-block; margin-top: 14px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===================== CATEGORIES ===================== */
.cat-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 380px 320px;
  gap: 20px;
}
.cat {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}
.cat .ph { width: 100%; height: 100%; transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.cat:hover .ph { transform: scale(1.04); }
.cat-label {
  position: absolute;
  left: 24px; bottom: 22px; right: 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: var(--paper);
  z-index: 2;
}
.cat-label h3 { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 300; line-height: 1; }
.cat-label h3 em { font-style: italic; }
.cat-label .count { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.8; }
.cat::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.7) 100%);
  z-index: 1;
}
.cat:nth-child(1) { grid-row: span 2; }
.cat-reveal {
  position: absolute;
  inset: 20px;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.cat-reveal-inner {
  padding: 12px 20px;
  background: rgba(248,246,241,0.6);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  color: var(--ink);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
  transform: translateY(8px);
  transition: transform 0.5s ease;
}
.cat:hover .cat-reveal { opacity: 1; }
.cat:hover .cat-reveal-inner { transform: translateY(0); }

/* ===================== FILTER PILLS ===================== */
.filters {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.pill {
  padding: 10px 18px;
  font-size: 12.5px; letter-spacing: 0.04em;
  border-radius: 100px;
  background: rgba(248, 246, 241, 0.5);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(10,10,10,0.08);
  color: var(--ink);
  transition: all 0.25s ease;
  font-weight: 500;
}
.pill:hover { border-color: rgba(10,10,10,0.2); }
.pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pill .count { opacity: 0.5; margin-left: 6px; font-size: 11px; }

/* ===================== PRODUCTS ===================== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
}
.product { position: relative; cursor: pointer; }
.product-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper-warm);
  border-radius: 3px;
}
.product-img .ph { width: 100%; height: 100%; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.product:hover .product-img .ph,
.product:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 9px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 2px;
  z-index: 2;
}
.product-badge.new { background: var(--ink); color: var(--paper); }
.product-badge.gold { background: var(--champagne); color: var(--ink); }

/* Quick view glass overlay */
.quickview {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  padding: 12px 16px;
  background: rgba(248, 246, 241, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 3;
}
.product:hover .quickview { opacity: 1; transform: translateY(0); }
.quickview .eye { width: 14px; height: 14px; opacity: 0.7; }

.product-info {
  margin-top: 18px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px;
}
.product-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 400; line-height: 1.25; }
.product-name em { font-style: italic; }
.product-cat { font-size: 11px; color: var(--mute); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; }
.product-price { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 400; white-space: nowrap; }
.product-add {
  margin-top: 10px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.product-add:hover { color: var(--ink); border-bottom-color: var(--ink); }
.product-add .plus { font-size: 14px; line-height: 1; }

/* ===================== ATELIER STORY ===================== */
.story {
  background: var(--paper-warm);
  padding: 140px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-img { position: relative; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; }
.story-img .ph { width: 100%; height: 100%; }
.story-img .mini {
  position: absolute;
  right: -60px; bottom: -40px;
  width: 200px; height: 240px;
  border-radius: 3px; overflow: hidden;
  border: 8px solid var(--paper-warm);
}
.story-content .eyebrow { margin-bottom: 24px; }
.story-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.story-content h2 em { font-style: italic; color: var(--champagne-deep); }
.story-content p { color: var(--mute); font-size: 15px; line-height: 1.7; margin-top: 24px; max-width: 520px; text-align: justify; hyphens: auto; }
.story-content .story-body p:first-child { margin-top: 24px; }
.story-content .story-body p + p { margin-top: 18px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 640px;
}
.pillar .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--champagne-deep);
  font-style: italic;
}
.pillar .title { font-family: 'Fraunces', serif; font-size: 17px; margin-top: 6px; margin-bottom: 6px; font-weight: 400; }
.pillar .desc { font-size: 12.5px; color: var(--mute); line-height: 1.55; text-align: justify; hyphens: auto; }

/* ===================== TESTIMONIALS ===================== */
.testimonials { padding: 140px 0; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px 30px;
}
.testi {
  position: relative;
  padding-top: 40px;
}
.testi::before {
  content: "“";
  position: absolute;
  top: -30px; left: -10px;
  font-family: 'Fraunces', serif;
  font-size: 140px;
  color: var(--champagne);
  line-height: 1;
  font-style: italic;
  font-weight: 300;
}
.testi blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: pretty;
}
.testi blockquote em { font-style: italic; color: var(--champagne-deep); }
.testi .author {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
}
.testi .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--paper-deep), var(--champagne));
  border: 1px solid var(--line);
}
.testi .name { font-size: 13px; font-weight: 500; }
.testi .meta { font-size: 11px; color: var(--mute); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.testi.a { grid-column: 1 / span 7; }
.testi.b { grid-column: 8 / span 5; padding-top: 80px; }
.testi.c { grid-column: 3 / span 7; margin-top: 40px; }

/* ===================== CUSTOM CTA DARK ===================== */
.custom {
  background: var(--ink);
  color: var(--paper);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 30%, rgba(201,168,118,0.15), transparent 60%);
  pointer-events: none;
}
.custom-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.custom .eyebrow { color: var(--champagne); }
.custom h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  margin-top: 28px;
  letter-spacing: -0.02em;
}
.custom h2 em { font-style: italic; color: var(--champagne); }
.custom p { color: rgba(248,246,241,0.65); margin-top: 28px; max-width: 440px; font-size: 15.5px; line-height: 1.7; }
.custom-cta { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }
.custom .btn-primary { background: var(--champagne); color: var(--ink); }
.custom .btn-primary:hover { background: var(--paper); }
.custom .btn-outline { border-color: rgba(248,246,241,0.3); color: var(--paper); }
.custom .btn-outline:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.custom-steps {
  border-left: 1px solid rgba(248,246,241,0.15);
  padding-left: 40px;
}
.custom-step { padding: 24px 0; border-bottom: 1px solid rgba(248,246,241,0.1); display: flex; gap: 20px; }
.custom-step:last-child { border-bottom: none; }
.custom-step .n { font-family: 'Fraunces', serif; font-style: italic; color: var(--champagne); font-size: 20px; font-weight: 300; min-width: 30px; }
.custom-step h4 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 19px; margin-bottom: 4px; }
.custom-step p { color: rgba(248,246,241,0.55); font-size: 13px; margin-top: 0; }

/* ===================== FOOTER ===================== */
footer {
  background: var(--paper);
  padding: 100px 0 30px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.foot-brand { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 300; line-height: 1; letter-spacing: -0.01em; }
.foot-brand em { font-style: italic; color: var(--champagne-deep); }
.foot-tag { color: var(--mute); font-size: 13.5px; margin-top: 18px; max-width: 300px; line-height: 1.6; }
.foot-col h5 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); margin-bottom: 20px; font-weight: 500; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a { font-size: 14px; color: var(--ink); opacity: 0.85; transition: color 0.2s; }
.foot-col a:hover { color: var(--champagne-deep); opacity: 1; }
.foot-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--mute);
  flex-wrap: wrap; gap: 12px;
}
.foot-bottom .dot { margin: 0 10px; opacity: 0.4; }

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { height: 60vh; min-height: 480px; }
  .hero-card { left: 20px; bottom: 20px; }
  .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .cat:nth-child(1) { grid-row: span 1; }
  .cat { height: 320px; }
  .story-grid, .custom-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-img .mini { right: 20px; bottom: 20px; width: 140px; height: 180px; }
  .testi.a, .testi.b, .testi.c { grid-column: 1 / -1; padding-top: 40px; margin-top: 0; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-header { grid-template-columns: 1fr; }
  .section-header .side { justify-self: start; }
}
@media (max-width: 1199px) {
  /* ─────── MOBILE HEADER (rebuild) ─────── */
  /* Topstrip hidden on mobile — its info lives in the drawer / footer */
  .topstrip { display: none; }

  /* Nav: position fixed (sticky breaks unpredictably on mobile WebKit when
     ancestors clip overflow). Solid opaque background — no translucency. */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 0;
    z-index: 200;
  }
  /* Shift below WP admin bar when logged in */
  body.admin-bar .nav { top: 46px; }
  @media (min-width: 783px) {
    body.admin-bar .nav { top: 32px; }
  }
  /* Lock the bar's solid background across scroll states.
     The .nav-inner gets transparent (overriding desktop's translucent rgba),
     the .nav itself keeps the opaque background from the rule above. */
  .nav.scrolled { padding: 12px 0; }
  .nav.scrolled .nav-inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  /* Reserve space at top of page so the fixed nav doesn't cover content */
  body { padding-top: 64px; }

  /* Nav inner layout: hamburger | brand | cart */
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 0;
  }
  .menu-toggle { display: inline-flex; }
  .brand {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
  }
  .brand em {
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-top: 2px;
  }
  .nav-right { gap: 10px; }
  .nav-right .phone { display: none; }
  .nav-right .icon-btn { width: 32px; height: 32px; }
  .nav-right .cart {
    padding: 6px 10px;
    font-size: 11.5px;
    border-radius: 100px;
  }
  .nav-right .cart .count { width: 16px; height: 16px; font-size: 9px; }

  /* ─────── MOBILE POPOVER (anchored below hamburger) ─────── */
  .nav-left { position: relative; }
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: auto;
    width: 200px;
    height: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow:
      0 10px 30px -10px rgba(10, 10, 10, 0.18),
      0 2px 6px -2px rgba(10, 10, 10, 0.08);
    padding: 6px 0;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
    z-index: 110;
    overflow: hidden;
  }
  body.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links ul {
    display: block;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav-links li {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links li a,
  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--ink);
    opacity: 1;
    border: none;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    transition: background 0.15s;
  }
  .nav-links li a:hover,
  .nav-links a:hover {
    background: var(--paper-warm);
  }
  .nav-links li a::after,
  .nav-links a::after { display: none !important; content: none !important; }

  /* ─────── REST OF MOBILE LAYOUT ─────── */
  /* Hero: keep the original mobile size (60vh / 480px min), but HARD-CLIP
     so the hero-image and hero-card cannot spill out of their box. */
  .hero-grid { min-height: 0; }
  .hero-right {
    position: relative;
    height: 60vh;
    min-height: 480px;
    max-height: none;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 3px;
  }
  .hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* Hero padding (single rule — extra bottom space before the marquee).
     Combined with the marquee's own margin-top, this gives a clear gap
     between the hero image and the scrolling strip. */
  .hero { padding: 40px 0 80px; }
  .marquee {
    padding: 32px 0;
    margin: 60px 0 40px;
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 1;
  }
  .section, .story, .testimonials, .custom { padding: 80px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ===================== WOOCOMMERCE — SHOP ARCHIVE ===================== */

/* Result count + sort row */
.woocommerce-products-header,
.woocommerce-notices-wrapper { margin-bottom: 0; }

.woocommerce .woocommerce-result-count {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
  margin: 0;
  padding: 0;
}

/* Sort dropdown — minimalist redesign */
.woocommerce .woocommerce-ordering {
  margin: 0;
  position: relative;
}

.woocommerce .woocommerce-ordering select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 28px 8px 0;
  cursor: pointer;
  outline: none;
  min-width: 180px;
  transition: border-color 200ms ease, color 200ms ease;
  /* custom chevron */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1l4 4 4-4' stroke='%230A0A0A' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 10px 6px;
}

.woocommerce .woocommerce-ordering select:hover {
  border-bottom-color: var(--ink);
}

.woocommerce .woocommerce-ordering select:focus {
  border-bottom-color: var(--champagne-deep);
}

.woocommerce .woocommerce-ordering select option {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
  background: #fff;
}

/* Optional: hide the result count on shop if redundant — keep for now */

/* ─────── Extra mobile menu items (search + cart) ─────── */
ul.nav-menu-extra { display: none !important; }
@media (max-width: 720px) {
  /* Hide search + cart from navbar — they live in the popover instead */
  .nav-right .icon-btn { display: none; }
  .nav-right .cart { display: none; }
  ul.nav-menu-extra {
    display: block !important;
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--line);
  }
  .nav-menu-extra li {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu-extra li:last-child { border-bottom: 0; }
  .nav-menu-extra li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    transition: background 0.15s;
  }
  .nav-menu-extra li a:hover { background: var(--paper-warm); }
}
