/* ================================================================
   La Bossbellé — Soft Luxury Design System
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400;1,500&family=Italiana&family=Jost:wght@300;400;500&display=swap');

:root {
  --ivory: #f5efe6;
  --ivory-2: #ede4d3;
  --cream: #faf6ef;
  --onyx: #1a1714;
  --onyx-soft: #2a2520;
  --gold: #b08544;
  --gold-deep: #8a6730;
  --gold-light: #d4b078;
  --gold-pale: #e6cfa3;
  --rose: #c8a07a;
  --line: rgba(26, 23, 20, 0.12);
  --line-strong: rgba(26, 23, 20, 0.22);
  --muted: #6b5e4f;
  --bg: var(--cream);
  --fg: var(--onyx);
  --shadow-soft: 0 30px 60px -30px rgba(26, 23, 20, 0.18);
  --shadow-card: 0 1px 0 rgba(26,23,20,.04), 0 20px 40px -28px rgba(26,23,20,.18);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Jost', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

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

.serif { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; }
.italiana { font-family: 'Italiana', serif; font-weight: 400; letter-spacing: 0.02em; }

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 400;
  display: block;
}
.eyebrow.dim { color: var(--muted); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}
h1 { font-size: clamp(52px, 7vw, 100px); line-height: 0.98; }
h2 { font-size: clamp(38px, 5vw, 64px); line-height: 1.02; }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.15; }
p { margin: 0; }

.gold { color: var(--gold-deep); }

/* ── Layout ─────────────────────────────── */
.container { width: min(1320px, 92vw); margin: 0 auto; }
.container-narrow { width: min(1080px, 90vw); margin: 0 auto; }
section { padding: clamp(80px, 12vw, 160px) 0; }

/* ── Header / Nav ───────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(250, 246, 239, 0.9);
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(26,23,20,.06); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold-deep));
  position: relative; overflow: hidden; flex-shrink: 0;
}
.brand-mark::after {
  content: 'B';
  font-family: 'Italiana', serif;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 0;
}
.brand-text { line-height: 1; }
.brand-name {
  font-family: 'Italiana', serif;
  font-size: 21px;
  letter-spacing: 0.18em;
  color: var(--fg);
  display: block;
}
.brand-tag {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-top: 3px;
  text-transform: uppercase;
  display: block;
}
.nav-logo-img { height: 56px; width: auto; }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--fg);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease, left .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; left: 0; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold-deep); }

.nav-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--fg);
  transition: background .2s ease, color .2s ease;
}
.icon-btn:hover { background: var(--ivory-2); color: var(--gold-deep); }
.icon-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer;
}
.mobile-toggle span {
  display: block; height: 1px; background: var(--fg);
  transition: all .3s ease;
}
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 200;
  flex-direction: column;
  padding: 40px 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 28px;
  font-family: 'Cormorant Garamond', serif;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
}
.mobile-nav a:hover { color: var(--gold-deep); }
.mobile-close {
  position: absolute; top: 24px; right: 24px;
  font-size: 24px; cursor: pointer; color: var(--muted);
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  transition: all .25s ease;
  border: 1px solid transparent;
}
.btn-primary { background: var(--gold-deep); color: var(--cream); }
.btn-primary:hover { background: var(--onyx); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-ghost:hover { background: var(--fg); color: var(--bg); }
.btn-link {
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  color: var(--gold-deep);
  display: inline-block;
}
.btn-link:hover { color: var(--onyx); }

/* ── Ornaments ──────────────────────────── */
.ornament {
  width: 60px; height: 12px; margin: 0 auto;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 12'><circle cx='30' cy='6' r='2.5' fill='none' stroke='%23b08544'/><line x1='0' y1='6' x2='25' y2='6' stroke='%23b08544' stroke-width='.6'/><line x1='35' y1='6' x2='60' y2='6' stroke='%23b08544' stroke-width='.6'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.divider {
  display: flex; align-items: center; gap: 14px; color: var(--gold);
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line-strong);
}

/* ── Section Header ─────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { max-width: 680px; margin: 0 auto; }
.section-head .lead {
  margin-top: 20px; max-width: 520px; margin-left: auto; margin-right: auto;
  color: var(--muted); font-size: 16px;
}

/* ── Hero ───────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 { margin-bottom: 32px; }
.hero h1 .accent {
  font-style: italic; color: var(--gold-deep);
  font-family: 'Cormorant Garamond', serif;
}
.hero-lead {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); max-width: 480px; margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.hero-visual {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  position: relative; z-index: 1;
}
.hero-visual-placeholder {
  position: relative; aspect-ratio: 4/5;
  background: var(--ivory-2); overflow: hidden;
}
.hero-visual-placeholder::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 30%, var(--gold-pale) 0%, transparent 60%),
              linear-gradient(135deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
.hero-visual-placeholder::after {
  content: ''; position: absolute; inset: 24px;
  border: 1px solid var(--gold); pointer-events: none; z-index: 2;
}
.hero-monogram {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Italiana', serif;
  font-size: clamp(160px, 22vw, 300px);
  color: var(--gold); opacity: 0.18; line-height: 1;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; line-height: 1; color: var(--gold-deep);
}
.stat-num .small { font-size: 20px; vertical-align: super; }
.stat-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}

/* ── Product Card ───────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 28px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card { position: relative; background: transparent; cursor: pointer; }
.product-img {
  position: relative; aspect-ratio: 4/5;
  background: var(--ivory-2); overflow: hidden;
  margin-bottom: 18px;
  transition: transform .5s ease;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
  position: relative; z-index: 1;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img-placeholder::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 40%, var(--gold-pale) 0%, transparent 65%),
              linear-gradient(160deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
.product-monogram {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: 'Italiana', serif;
  font-size: 140px; color: var(--gold); opacity: 0.22;
  z-index: 0;
}
.product-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px;
  background: var(--cream); color: var(--gold-deep);
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--gold);
}
.product-fav {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); color: var(--onyx);
  display: grid; place-items: center;
  opacity: 0; transition: opacity .2s ease;
}
.product-card:hover .product-fav { opacity: 1; }
.product-fav svg { width: 14px; height: 14px; }
.product-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  display: flex; gap: 8px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.product-card:hover .product-quick { opacity: 1; transform: translateY(0); }
.quick-btn {
  flex: 1; padding: 11px;
  background: var(--cream); color: var(--onyx);
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--gold);
  transition: background .2s ease, color .2s ease;
  cursor: pointer; text-align: center;
}
.quick-btn:hover { background: var(--gold-deep); color: var(--cream); border-color: var(--gold-deep); }
.product-info {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; line-height: 1.2; color: var(--fg);
}
.product-cat {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-top: 5px;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--gold-deep); white-space: nowrap;
}

/* ── Filter Bar ─────────────────────────── */
.filters-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  padding: 9px 18px;
  background: transparent;
  border: 1px solid var(--line-strong);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  color: var(--fg);
  transition: all .2s ease; border-radius: 999px;
  cursor: pointer; text-decoration: none;
}
.filter-chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-chip.active { background: var(--onyx); color: var(--cream); border-color: var(--onyx); }
.filter-count {
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.16em; text-transform: uppercase; font-family: 'Jost', sans-serif;
}

/* ── Story / About ──────────────────────── */
.story { background: var(--ivory); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
.story-img {
  position: relative; aspect-ratio: 3/4;
  background: var(--ivory-2); overflow: hidden;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.story-img::after {
  content: ''; position: absolute; inset: 24px;
  border: 1px solid var(--gold); pointer-events: none; z-index: 2;
}
.story-img-placeholder::before {
  z-index: 0;
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
.story-img-mono {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: 'Italiana', serif; font-size: 220px; color: var(--gold); opacity: 0.2; z-index: 0;
}
.story h2 { margin-bottom: 28px; }
.story h2 em { color: var(--gold-deep); font-family: inherit; font-style: italic; }
.story p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.signature {
  margin-top: 32px; font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 28px; color: var(--gold-deep);
}
.signature-line {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}

/* ── Craft / Process ────────────────────── */
.craft { background: var(--ivory); position: relative; }
.craft-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.craft-item {
  padding: 52px 36px 40px;
  border-right: 1px solid var(--line);
  transition: background .25s ease;
}
.craft-item:last-child { border-right: none; }
.craft-item:hover { background: var(--cream); }
.craft-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--gold-deep); margin-bottom: 28px; letter-spacing: 0.2em;
}
.craft-icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--gold-deep); }
.craft-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.craft-item h3 { margin-bottom: 12px; }
.craft-item p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── Testimonials ───────────────────────── */
.testimonials-section { background: var(--ivory); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  padding: 40px 32px; background: var(--cream);
  border: 1px solid var(--line); position: relative;
}
.testimonial-stars { display: flex; gap: 4px; color: var(--gold-deep); margin-bottom: 22px; }
.testimonial-stars svg { width: 13px; height: 13px; fill: currentColor; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; line-height: 1.4; margin-bottom: 24px; color: var(--fg);
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: grid; place-items: center;
  font-family: 'Italiana', serif; color: var(--cream); font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; }
.testimonial-role { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ── Newsletter ─────────────────────────── */
.newsletter {
  background: var(--onyx); color: var(--cream);
  text-align: center; padding: clamp(80px, 10vw, 120px) 0;
}
.newsletter h2 { color: var(--cream); margin-bottom: 18px; }
.newsletter h2 em { color: var(--gold-light); font-style: italic; font-family: inherit; }
.newsletter p { color: rgba(245,239,230,.65); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; }
.newsletter-eyebrow { color: var(--gold-light); margin-bottom: 16px; letter-spacing: 0.32em; }
.newsletter-form {
  display: flex; max-width: 460px; margin: 0 auto;
  border-bottom: 1px solid rgba(245,239,230,.28);
}
.newsletter-form input {
  flex: 1; background: transparent; border: none;
  color: var(--cream); padding: 14px 0;
  font-family: 'Jost', sans-serif; font-size: 14px; letter-spacing: 0.04em; outline: none;
}
.newsletter-form input::placeholder { color: rgba(245,239,230,.45); }
.newsletter-form button {
  padding: 14px 0 14px 24px; font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-light); transition: color .2s ease; border: none; background: none; cursor: pointer;
}
.newsletter-form button:hover { color: var(--cream); }

/* ── Footer ─────────────────────────────── */
.site-footer {
  background: var(--bg); border-top: 1px solid var(--line);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 400; margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14px; color: var(--fg); transition: color .2s ease; }
.footer-col a:hover { color: var(--gold-deep); }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 300px; line-height: 1.7; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--gold-deep); }

/* ── Page Hero (sub-pages) ──────────────── */
.page-hero {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; font-family: 'Jost', sans-serif;
}
.breadcrumb a:hover { color: var(--gold-deep); }
.page-hero h1 { font-size: clamp(44px, 6vw, 80px); margin-bottom: 18px; }
.page-hero p { color: var(--muted); max-width: 520px; margin: 0 auto; font-size: 16px; }

/* ── Product Detail ─────────────────────── */
.pdp-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(40px, 6vw, 80px) 0;
}
.pdp-main {
  position: relative; aspect-ratio: 4/5;
  background: var(--ivory-2); overflow: hidden; cursor: zoom-in;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 1; }
.pdp-main-placeholder::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 50% 40%, var(--gold-pale) 0%, transparent 65%),
              linear-gradient(160deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
.pdp-main-placeholder .product-monogram { font-size: 280px; }
.pdp-thumbs {
  display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.pdp-thumb {
  width: calc(25% - 8px); aspect-ratio: 1;
  background: var(--ivory-2); position: relative; overflow: hidden;
  cursor: pointer; border: 1px solid transparent; flex-shrink: 0;
  transition: border-color .2s ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--gold); }
.pdp-thumb-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-2) 100%);
}
.pdp-thumb .product-monogram { font-size: 48px; }

.pdp-cat { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; font-family: 'Jost', sans-serif; }
.pdp-info h1 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 14px; }
.pdp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.pdp-rating .stars { display: flex; gap: 3px; color: var(--gold-deep); }
.pdp-rating .stars svg { width: 13px; height: 13px; fill: currentColor; }
.pdp-rating .count { font-size: 12px; color: var(--muted); }
.pdp-price {
  font-family: 'Cormorant Garamond', serif; font-size: 34px;
  color: var(--gold-deep); margin-bottom: 22px;
  display: flex; align-items: baseline; gap: 14px;
}
.pdp-desc { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 30px; }
.pdp-label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px; font-family: 'Jost', sans-serif;
  display: block;
}
.pdp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pdp-badge {
  padding: 6px 14px; border: 1px solid var(--gold);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Jost', sans-serif; color: var(--gold-deep);
}
.pdp-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-strong); margin-bottom: 24px;
}
.pdp-qty button { width: 44px; height: 44px; display: grid; place-items: center; font-size: 18px; }
.pdp-qty button:hover { color: var(--gold-deep); }
.pdp-qty span { width: 44px; text-align: center; font-size: 15px; }
.pdp-actions { display: flex; gap: 8px; margin-bottom: 32px; }
.pdp-actions .btn-primary { flex: 1; padding: 17px 24px; }
.pdp-actions .icon-btn { width: 54px; height: 54px; border: 1px solid var(--line-strong); border-radius: 0; }

.pdp-meta-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin-top: 28px;
}
.pdp-meta {
  background: var(--cream); padding: 18px;
  display: flex; align-items: center; gap: 12px;
}
.pdp-meta svg { width: 20px; height: 20px; color: var(--gold-deep); flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pdp-meta-title { font-size: 13px; }
.pdp-meta-sub { font-size: 11px; color: var(--muted); }

.pdp-accordion { margin-top: 28px; border-top: 1px solid var(--line); }
.pdp-acc { border-bottom: 1px solid var(--line); }
.pdp-acc-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Jost', sans-serif; cursor: pointer;
}
.acc-icon { font-size: 18px; color: var(--gold-deep); transition: transform .25s ease; }
.pdp-acc.open .acc-icon { transform: rotate(45deg); }
.pdp-acc-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.pdp-acc.open .pdp-acc-body { max-height: 400px; }
.pdp-acc-content { padding: 4px 0 24px; font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── Contact ─────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(40px, 6vw, 80px) 0;
}
.contact-cards { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex; gap: 18px; padding: 26px;
  border: 1px solid var(--line); background: var(--cream);
}
.contact-icon {
  width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%;
  display: grid; place-items: center; color: var(--gold-deep); flex-shrink: 0;
}
.contact-icon svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; margin-bottom: 5px; }
.contact-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); font-family: 'Jost', sans-serif;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: 'Jost', inherit;
  background: transparent; border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0; font-size: 15px; color: var(--fg);
  outline: none; transition: border-color .2s ease; width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ── About / Values ─────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.value-card {
  padding: 40px 32px; background: var(--cream);
  border: 1px solid var(--line);
}
.value-num {
  font-family: 'Italiana', serif; font-size: 48px;
  color: var(--gold); margin-bottom: 22px; line-height: 1;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── Toast ──────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--onyx); color: var(--cream);
  padding: 16px 28px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Video Thumb ────────────────────────── */
.media-video {
  position: relative; width: 100%; height: 100%; cursor: pointer;
}
.media-video video { width: 100%; height: 100%; object-fit: cover; }
.play-icon {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(26,23,20,.2); transition: background .2s ease;
}
.play-icon:hover { background: rgba(26,23,20,.35); }
.play-icon svg { width: 40px; height: 40px; color: var(--cream); }

/* ── Animations ─────────────────────────── */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: rise .8s ease both; }
.reveal-d1 { animation-delay: .08s; }
.reveal-d2 { animation-delay: .16s; }
.reveal-d3 { animation-delay: .24s; }
.reveal-d4 { animation-delay: .32s; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .craft-item:nth-child(2) { border-right: none; }
  .craft-item:nth-child(1), .craft-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero-grid, .story-grid, .pdp-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
  .testimonial-grid, .values-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pdp-thumbs { overflow-x: auto; flex-wrap: nowrap; }
  .pdp-thumb { width: 80px; flex-shrink: 0; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-item { border-right: none; border-bottom: 1px solid var(--line); }
}
