/* ═══════════════════════════════════════════════════════════════
   VELOUR Patisserie — design system v4
   Editorial Luxury · All-Light · The Quiet Atelier
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Ink palette */
  --ink:    #0D0B09;
  --ink-2:  #181410;
  --ink-3:  #242019;
  --ink-4:  #2E2820;

  /* Cream / light */
  --cream:  #F4EFE7;
  --cream-2:#EAE1D4;
  --cream-3:#DED3C5;
  --white:  #FDFAF5;

  /* Gold */
  --gold:   #C9A86C;
  --gold-2: #A8895A;
  --gold-3: #D9BC82;

  /* Text */
  --text:   #1A1714;
  --muted:  #655E53;

  /* Opacity tokens */
  --cream-46:  rgba(244,239,231,.46);
  --cream-32:  rgba(244,239,231,.32);
  --cream-18:  rgba(244,239,231,.18);
  --cream-08:  rgba(244,239,231,.08);
  --cream-06:  rgba(244,239,231,.06);
  --border-dark:  rgba(244,239,231,.08);
  --border-light: rgba(26,23,20,.10);

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  /* Label scale — uppercase, letter-spaced fragments (eyebrows, nav, tabs, badges, buttons) */
  --fs-micro: .5rem;
  --fs-label: .6rem;
  --fs-label-lg: .65rem;

  /* Small body copy — muted descriptive paragraphs (section intros, footer contact, step text) */
  --fs-body-sm: .82rem;

  /* Buttons */
  --fs-btn: .69rem;
  --fs-btn-lg: .72rem;

  /* Serif display fragments — price numerals and small wordmark/title moments */
  --fs-price: 2rem;
  --fs-price-compact: 1.5rem;
  --fs-title-sm: 1.5rem;
  --fs-title-xs: 1.3rem;
  --fs-title: clamp(1.1rem, 1.7vw, 1.5rem);

  /* Body + small utility notes */
  --fs-body: 1rem;
  --fs-note: 10px;
  --fs-footer-note: .67rem;

  /* Easing */
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-in-expo:cubic-bezier(.7,0,.84,0);
}

/* ── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto }
a { color: inherit; text-decoration: none }
button { cursor: pointer; border: none; background: none; font: inherit }
.skip-link {
  position: fixed; top: 10px; left: 12px; z-index: 300;
  padding: 10px 14px; background: var(--ink); color: var(--cream);
  font-size: .78rem; transform: translateY(-160%);
  transition: transform .2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0) }

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  color: var(--text);
}
h2 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: .01em;
  font-style: italic;
}
h3 { font-size: clamp(1.05rem, 1.8vw, 1.4rem); letter-spacing: .01em }
p  { font-size: var(--fs-body); line-height: 1.84; color: var(--muted) }

/* ── LAYOUT ────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.label {
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.section-header { margin-bottom: 0 }

/* ── SCROLL REVEAL ──────────────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .75s var(--ease-out),
    transform .75s var(--ease-out);
}
.rv.in { opacity: 1; transform: translateY(0) }
.rv.d1 { transition-delay: .08s }
.rv.d2 { transition-delay: .16s }
.rv.d3 { transition-delay: .26s }
.rv.d4 { transition-delay: .36s }
.rv.d5 { transition-delay: .46s }

/* ── MARQUEE ────────────────────────────────────────────────────── */
.marquee-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 34px; background: var(--cream-3);
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
}
.marquee-track span {
  font-size: var(--fs-label); font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: rgba(26,23,20,.68);
  padding: 0 52px;
}

/* ── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 34px; left: 0; right: 0;
  height: 66px; z-index: 100;
  display: flex; align-items: center; padding: 0 24px;
  background: var(--cream); border-bottom: 1px solid var(--border-light);
  transition: background .32s var(--ease-out), border-color .32s var(--ease-out);
}
.nav .nav-inner {
  height: 66px; display: flex; align-items: center;
  justify-content: space-between; width: 100%; position: relative;
}
.nav.scrolled {
  background: rgba(244,239,231,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 20px rgba(26,23,20,.07);
}
.nav-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center; z-index: 1;
}
.nav-logo img {
  height: 88px;
  transform: scale(1);
  transition: transform .28s var(--ease-out);
}
.nav.scrolled .nav-logo img { transform: scale(.818) }
.nav-logo-text {
  display: none; font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: var(--fs-title-sm); letter-spacing: .16em;
  text-transform: uppercase; color: var(--text);
}
.nav-links { display: none; gap: 36px; align-items: center }
.nav-link {
  position: relative;
  font-size: var(--fs-label); font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(26,23,20,.68);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color .28s var(--ease-out), border-color .28s var(--ease-out);
}
.nav-link::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 44px; min-width: 44px;
}
.nav-link:hover { color: var(--text); border-color: rgba(201,168,108,.5) }
.nav-right { display: flex; align-items: center; gap: 14px }
.lang-switch { display: flex; align-items: center; gap: 1px }
.lang-btn {
  position: relative;
  padding: 4px 6px; font-size: var(--fs-label); font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(26,23,20,.68); line-height: 1;
  transition: color .28s var(--ease-out);
}
.lang-btn::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 44px; min-width: 36px;
}
.lang-btn.active, .lang-btn:hover { color: var(--text) }
.lang-sep { color: rgba(26,23,20,.18); font-size: var(--fs-micro) }

/* ── MOBILE NAV (hamburger + dropdown panel; <900px) ─────────────── */
.nav-hamburger {
  display: flex; position: relative;
  width: 20px; height: 14px; flex-direction: column; justify-content: space-between;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1.5px; background: var(--text);
  transition: transform .25s var(--ease-out), opacity .2s var(--ease-out);
}
.nav-hamburger::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.25px) rotate(45deg) }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0 }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.25px) rotate(-45deg) }
.nav-mobile-panel {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; align-items: flex-start; gap: 4px;
  padding: 20px 24px 24px; background: rgba(244,239,231,.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 16px 40px rgba(26,23,20,.09);
}
.nav-mobile-panel.open { display: flex }
.nav-mobile-link {
  padding: 10px 0; font-size: var(--fs-label); font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(26,23,20,.68);
}
.nav-mobile-link:hover { color: var(--text) }
.nav-mobile-cta { margin-top: 10px; align-self: stretch }

/* ── SUB-PAGE NAV (back-link + centered logo; collection/product/impressum) ── */
.nav--subpage {
  justify-content: space-between;
  background: rgba(244,239,231,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav--subpage .nav-logo img { height: 62px }
.nav-back {
  position: relative;
  display: flex; align-items: center; gap: 9px;
  font-size: var(--fs-label); font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(26,23,20,.68);
  transition: color .25s var(--ease-out);
}
.nav-back::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 44px; min-width: 44px;
}
.nav-back:hover { color: var(--text) }
.nav-back svg { transition: transform .2s var(--ease-out) }
.nav-back:hover svg { transform: translateX(-3px) }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 46px; padding: 13px 30px;
  font-size: var(--fs-btn); font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; border-radius: 2px; white-space: nowrap;
  transition:
    background .22s var(--ease-out),
    transform .2s var(--ease-spring),
    box-shadow .22s var(--ease-out),
    color .18s;
}
.btn:hover { transform: translateY(-2px) }
.btn:active { transform: translateY(0) scale(.98) }
.btn-sm { min-height: 38px; padding: 9px 18px; font-size: var(--fs-label) }
.btn-wa {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 4px 24px rgba(201,168,108,.2);
}
.btn-wa:hover { background: var(--gold-3); box-shadow: 0 8px 32px rgba(201,168,108,.32) }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(26,23,20,.22);
}
.btn-outline:hover {
  border-color: rgba(26,23,20,.5);
  background: rgba(26,23,20,.04);
}
.btn-dark { background: var(--text); color: var(--cream) }
.btn-dark:hover { background: var(--ink) }
.nav-cta { display: none }

/* ── HERO CATEGORY CARDS ────────────────────────────────────────── */
.hero-cats {
  background: var(--cream);
  padding: 124px 40px 96px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.hero-intro {
  max-width: 640px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 14px;
}
.hero-intro .label { text-align: center }
.hero-intro h1 {
  font-family: var(--serif);
  font-weight: 300; font-style: italic;
  line-height: 1.08;
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  letter-spacing: .01em;
  color: var(--text);
}
.hero-cats-inner {
  width: 100%; max-width: 970px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: start;
}
.cat-hero-card {
  display: block; text-decoration: none;
  border: 1px solid rgba(26,23,20,.08);
  border-radius: 2px; overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--white);
  transition:
    border-color .32s var(--ease-out),
    transform .32s var(--ease-out),
    box-shadow .32s var(--ease-out);
}
.cat-hero-card:hover,
.cat-hero-card:focus-visible {
  border-color: rgba(201,168,108,.40);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(26,23,20,.10);
  outline: none;
}
.cat-hero-card:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,23,20,.06);
}
.cat-hero-card-fig {
  margin: 9px 9px 0;
  position: relative; overflow: hidden;
  aspect-ratio: 5/6;
  border: 1px solid rgba(201,168,108,.45);
  border-radius: 1px;
  transition: border-color .32s var(--ease-out);
}
.cat-hero-card:hover .cat-hero-card-fig,
.cat-hero-card:focus-visible .cat-hero-card-fig {
  border-color: rgba(201,168,108,.75);
}
.cat-hero-card-fig img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transform: scale(1);
  transition: transform .75s var(--ease-out);
}
.cat-hero-card:hover .cat-hero-card-fig img,
.cat-hero-card:focus-visible .cat-hero-card-fig img {
  transform: scale(1.05);
}

.cat-hero-card-cap {
  padding: 14px 20px 28px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: center;
  background: var(--white);
}
.cat-hero-card-num {
  font-size: var(--fs-micro); letter-spacing: .28em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.cat-hero-card-cap h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 300; font-style: italic;
  letter-spacing: -.02em; line-height: 1.08;
  color: var(--text); margin: 0;
}
.cat-sep {
  text-align: center; font-size: 14px;
  color: var(--gold); margin: 10px 0;
  letter-spacing: .2em;
}
.cat-link {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: underline;
  text-underline-offset: 3px; color: var(--muted);
  display: inline-block; margin-top: 8px; cursor: pointer;
  transition: color .3s var(--ease-out);
}
.cat-hero-card:hover .cat-link { color: var(--text) }
.hero-cats-cta { text-align: center }
.hero-wa {
  display: inline-block; margin-top: 24px;
  font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: underline;
  color: var(--text);
  transition: color .28s var(--ease-out);
}
.hero-wa:hover { color: var(--text) }
.hero-wa-note {
  font-size: var(--fs-note); color: var(--muted);
  margin-top: 6px; text-align: center;
}
.wa-hint {
  font-size: var(--fs-note); color: var(--muted);
  margin-top: 4px; text-align: center;
}
/* legacy hidden */
.hero-mark, .hero-kicker, .hero-overlay, .hero-content { display: none }
.hero-micro, .hero-response { display: none }

/* ── CATALOG ─────────────────────────────────────────────────────── */
.catalog { background: var(--white); padding: 120px 0 144px }
.catalog-head {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px; gap: 24px; flex-wrap: wrap;
}
.catalog-head h2 { margin-top: 8px }
.cat-tabs {
  display: flex; margin-bottom: 56px;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto; scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none }
.cat-tab {
  position: relative;
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: var(--fs-label); font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
  padding: 13px 26px; border-bottom: 2px solid transparent;
  white-space: nowrap; margin-bottom: -1px;
  transition: color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.cat-tab:hover { color: var(--text) }
.cat-tab.active { color: var(--text); border-color: var(--gold) }
.cat-panel { display: none }
.cat-panel.active { display: block; animation: panelFade .42s var(--ease-out) }
.cat-empty { padding: 80px 0; text-align: center }
.cat-empty p { margin-top: 14px; color: var(--muted) }

/* ── PRODUCT GRID LAYOUTS ─────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px }
.products-grid--2 { display: grid; grid-template-columns: 1fr; gap: 16px }


/* ── PRODUCT CARDS — LUXURY BOUTIQUE ─────────────────────────────── */

/* Outer shell — the "cream aluminum tray" (Doppelrand outer) */
.p-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(201,168,108,.22);
  padding: 5px;
  cursor: pointer;
  transition:
    border-color .38s var(--ease-out),
    transform .38s var(--ease-out),
    box-shadow .38s var(--ease-out);
}
.p-card:hover {
  border-color: rgba(201,168,108,.70);
  transform: translateY(-7px);
  box-shadow: 0 28px 72px rgba(26,23,20,.11);
}
.p-card:active { transform: translateY(-2px) }

/* Inner core — the "white glass plate" (Doppelrand inner) */
.p-card-inner {
  display: flex; flex-direction: column; flex: 1;
  background: var(--white);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.85);
  transition: box-shadow .38s var(--ease-out);
}
.p-card:hover .p-card-inner {
  box-shadow: inset 0 1px 12px rgba(201,168,108,.06), inset 0 1px 1px rgba(255,255,255,.85);
}

/* Image — thin gold frame, ~42% less inner margin than before */
.p-card-media {
  margin: 7px 7px 0;
  position: relative; overflow: hidden;
  aspect-ratio: 1/1; background: var(--cream-2); flex-shrink: 0;
  border: 1px solid rgba(201,168,108,.38);
  transition: border-color .38s var(--ease-out);
}
.p-card:hover .p-card-media { border-color: rgba(201,168,108,.75) }
.p-card-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  transition: transform .9s var(--ease-out);
}
.p-card:hover .p-card-media img { transform: scale(1.04) }
.p-card--large .p-card-media { aspect-ratio: 1/1 }

.p-card-body {
  padding: 14px 16px 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; flex: 1;
}

/* Category eyebrow label */
.p-eyebrow {
  font-family: var(--sans); font-size: var(--fs-label);
  letter-spacing: .24em; text-transform: uppercase; font-weight: 500;
  color: var(--muted); margin-bottom: 8px;
}

/* Ornament: ──── ◇ ──── */
.p-ornament {
  display: flex; align-items: center; justify-content: center;
  width: 64px; margin: 0 auto 10px;
}

.p-card h2, .p-card h3 {
  font-family: var(--serif);
  font-size: var(--fs-title);
  font-style: italic; font-weight: 300;
  letter-spacing: .01em; line-height: 1.2;
  color: var(--text); margin-bottom: 10px;
}

.p-gold-divider {
  width: 36px; height: 1px; margin: 0 auto 12px;
  background: linear-gradient(to right, transparent, rgba(201,168,108,.7), transparent);
}

.p-price {
  display: flex; align-items: baseline;
  justify-content: center; gap: 4px; margin-bottom: 12px;
}
.p-price-amount {
  font-family: var(--serif); font-size: var(--fs-price);
  color: var(--text); line-height: 1; font-weight: 300;
}
.p-price-currency {
  font-size: var(--fs-label); font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted);
}
.p-price-note { font-size: var(--fs-micro); color: var(--muted); letter-spacing: .05em }

.p-cta-link {
  display: inline-block; margin-top: auto;
  font-size: var(--fs-label); letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid rgba(201,168,108,.45);
  padding-bottom: 3px;
  transition: color .28s var(--ease-out), border-color .28s var(--ease-out);
}
.p-cta-link:hover,
.p-card:hover .p-cta-link { color: var(--text); border-color: var(--gold) }

.pay-now-placeholder, .btn-pay-placeholder, .payment-note { display: none }

/* ── REVIEWS STRIP ───────────────────────────────────────────────── */
.reviews-strip {
  background: var(--cream-2); padding: 80px 0;
  border-top: 1px solid var(--border-light);
}
.reviews-head { margin-bottom: 40px }
/* Asymmetric: 3fr 2fr 2fr — featured large quote + two smaller */
.reviews-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  gap: 16px; align-items: stretch;
}
.review-item {
  padding: 28px 26px;
  border: 1px solid var(--border-light); border-radius: 2px;
  margin: 0; background: var(--cream);
}
/* Featured first card */
.review-item:first-child {
  padding: 36px 32px;
  border-color: rgba(201,168,108,.28);
  background: var(--white);
}
.review-item:first-child .review-quote {
  font-size: 1.06rem;
}
.review-photo {
  width: 100%; aspect-ratio: 4/3; overflow: hidden;
  border-radius: 2px; margin: 0 0 18px;
}
.review-photo img { width: 100%; height: 100%; object-fit: cover; display: block }
.review-quote {
  font-family: var(--serif); font-style: italic;
  font-size: .86rem; line-height: 1.78;
  color: var(--muted); margin: 0 0 16px;
}
.review-author {
  display: block; font-size: var(--fs-micro); letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); font-style: normal;
}

/* ── GALLERY (compact) ───────────────────────────────────────────── */
.gallery-strip { background: var(--cream); padding: 80px 0; border-top: 1px solid var(--border-light) }
.gallery-head { margin-bottom: 32px }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  border-radius: 2px; border: 1px solid var(--border-light);
  display: block;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06) }

/* ── HOW TO ORDER (new section) ──────────────────────────────────── */
.order-steps { background: var(--cream); padding: 112px 0 120px }
.order-steps-head { margin-bottom: 72px }
.order-steps-head h2 { color: var(--text); margin-top: 10px; font-style: italic }
.order-steps-head .label { color: var(--muted) }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-light);
}
.step-item {
  padding: 52px 40px 52px 0;
  border-right: 1px solid var(--border-light);
}
.step-item:first-child { padding-left: 0 }
.step-item:not(:first-child) { padding-left: 40px }
.step-item:last-child { border-right: none; padding-right: 0 }
.step-num {
  font-family: var(--serif); font-size: 5.5rem; font-weight: 300;
  color: var(--text); opacity: .07; line-height: 1;
  margin-bottom: 18px; letter-spacing: -.04em;
  user-select: none;
}
.step-title {
  font-family: var(--serif); font-size: var(--fs-title-sm);
  font-style: italic; font-weight: 300;
  color: var(--text); margin-bottom: 14px; line-height: 1.2;
}
.step-desc {
  font-size: var(--fs-body-sm); line-height: 1.84;
  color: var(--muted); max-width: 270px;
}
.step-cta { margin-top: 28px }
.step-cta .btn {
  background: var(--text); color: var(--cream);
  min-height: 44px; padding: 12px 24px;
  font-size: var(--fs-label); box-shadow: none;
}
.step-cta .btn:hover { background: var(--ink); transform: translateY(-2px) }
.step-cta .btn svg { width: 15px; height: 15px; flex-shrink: 0 }

/* ── BENEFITS ────────────────────────────────────────────────────── */
.benefits { background: var(--cream); padding: 0 0 120px }
.benefits-rule {
  height: 1px; background: var(--border-light);
  margin: 0 24px;
}
.benefits-head { padding-top: 100px; margin-bottom: 0 }
.benefits-head h2 { color: var(--text); margin-top: 10px; font-style: italic }
.benefits-head .label { color: var(--muted) }
.b-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 64px }
.b-item { padding: 30px 0; border-top: 1px solid var(--border-light) }
.b-item h3 {
  font-family: var(--serif); font-size: 1.28rem;
  font-style: italic; font-weight: 300;
  color: var(--text); margin-bottom: 10px;
}
.b-item p { font-size: var(--fs-body-sm); color: var(--muted); line-height: 1.74 }

/* ── CTA SECTION ─────────────────────────────────────────────────── */
/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq { background: var(--cream); padding: 0 0 96px }
.faq-head { padding-top: 100px; margin-bottom: 48px }
.faq-head h2 { color: var(--text); margin-top: 10px; font-style: italic }
.faq-head .label { color: var(--muted) }
.faq-list { max-width: 720px; margin: 0 auto }
.faq-item {
  border-top: 1px solid var(--border-light);
}
.faq-item:last-child { border-bottom: 1px solid var(--border-light) }
.faq-item summary {
  position: relative;
  padding: 22px 32px 22px 0; cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: 1.06rem; font-style: italic; font-weight: 300;
  color: var(--text); line-height: 1.3;
  transition: color .22s var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none }
.faq-item summary::after {
  content: '+'; position: absolute; top: 20px; right: 0;
  font-family: var(--sans); font-size: var(--fs-body); font-weight: 400;
  color: var(--muted); transition: transform .25s var(--ease-out), color .22s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg) }
.faq-item summary:hover::after { color: var(--text) }
.faq-item p {
  font-size: var(--fs-body-sm); line-height: 1.74; color: var(--muted);
  padding: 0 32px 24px 0; max-width: 600px;
}

.cta-section {
  background: var(--cream);
  padding: 120px 24px 144px;
  text-align: center;
}
.cta-section .label { color: var(--muted); margin-bottom: 20px }
.cta-section h2 { color: var(--text); max-width: 560px; margin: 0 auto 20px }
.cta-section > p { color: var(--muted); max-width: 440px; margin: 0 auto 44px }
.cta-section .btn-wa {
  background: var(--gold); color: var(--ink);
  box-shadow: 0 8px 36px rgba(201,168,108,.28);
  min-height: 54px; padding: 16px 44px; font-size: var(--fs-btn-lg);
}
.cta-section .btn-wa:hover {
  background: var(--gold-3);
  box-shadow: 0 12px 44px rgba(201,168,108,.42);
}
.cta-confirm-note {
  margin-top: 22px; font-size: var(--fs-label-lg);
  color: var(--muted); letter-spacing: .03em; line-height: 1.6;
}
.cta-payment-note {
  margin-top: 8px; font-size: var(--fs-label-lg);
  color: var(--muted); letter-spacing: .03em;
}
.cta-reply-note {
  margin-top: 8px; font-size: var(--fs-label-lg);
  color: var(--muted); letter-spacing: .03em;
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer {
  background: var(--cream-2);
  padding: 72px 24px 104px;
  border-top: 1px solid var(--border-light);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px }
.footer-logo {
  font-family: var(--serif); font-size: var(--fs-title-sm); font-weight: 300; font-style: italic;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text);
}
.footer-tagline {
  font-size: .75rem; line-height: 1.7;
  color: var(--muted); max-width: 280px;
}
.footer-contact {
  display: flex; flex-direction: column;
  gap: 6px; margin-top: 4px;
  color: var(--muted); font-size: .78rem; line-height: 1.7;
}
.footer-contact a:hover { color: var(--text) }
.footer-nav { display: flex; flex-direction: column; gap: 32px; align-items: flex-end }
.footer-links {
  display: flex; gap: 24px; flex-wrap: wrap;
  justify-content: flex-end;
}
.f-link {
  font-size: var(--fs-label); letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted);
  transition: color .25s var(--ease-out);
}
.f-link:hover { color: var(--text) }
.footer-meta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end }
.footer-delivery {
  font-size: var(--fs-footer-note); color: var(--muted);
  letter-spacing: .02em; line-height: 1.6; text-align: right;
}
.footer-copy {
  font-size: var(--fs-micro); color: var(--muted);
  letter-spacing: .08em;
}

/* ── FLOATING WA ─────────────────────────────────────────────────── */
.floating-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 210;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 9px; min-height: 46px; padding: 0 22px; border-radius: 100px;
  background: var(--gold); color: var(--ink);
  font-size: var(--fs-label); font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase;
  transition:
    transform .2s var(--ease-spring),
    box-shadow .22s var(--ease-out),
    background .2s;
  box-shadow: 0 4px 24px rgba(201,168,108,.28);
}
.floating-wa:hover {
  transform: translateY(-2px);
  background: var(--gold-3);
  box-shadow: 0 8px 32px rgba(201,168,108,.42);
}
.floating-wa svg { width: 15px; height: 15px; flex-shrink: 0 }

/* ── UTILITIES ───────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--text); outline-offset: 3px }
:focus:not(:focus-visible) { outline: none }

/* ── KEYFRAMES ───────────────────────────────────────────────────── */
@keyframes panelFade {
  from { opacity: 0; transform: translateY(12px) }
  to   { opacity: 1; transform: none }
}
@keyframes sectionFade {
  from { opacity: .01; transform: translateY(18px) }
  to   { opacity: 1; transform: none }
}
@keyframes marqueeScroll {
  from { transform: translateX(0) }
  to   { transform: translateX(-50%) }
}
@keyframes scrollPulse {
  0%, 100% { opacity: .22; transform: scaleY(1) }
  50%       { opacity: .55; transform: scaleY(1.08) }
}

/* ── BREAKPOINTS UP ──────────────────────────────────────────────── */
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(3, 1fr) }
}

@media (min-width: 768px) {
  .container { padding: 0 40px }
  .nav { padding: 0 40px }
  .nav-cta { display: inline-flex }
  .catalog { padding: 140px 0 160px }
  .products-grid--2 { grid-template-columns: 1fr 1fr }
  .products-grid .p-price-amount,
  .products-grid--2 .p-price-amount { font-size: var(--fs-price-compact) }
  .products-grid .p-ornament,
  .products-grid--2 .p-ornament { width: 48px; margin-bottom: 6px }
  .products-grid .p-card-body,
  .products-grid--2 .p-card-body { padding: 12px 14px 20px }
  .b-grid { grid-template-columns: repeat(4, 1fr) }
  .b-item { padding: 40px 32px }
  .b-item:not(:last-child) { border-right: 1px solid var(--border-light) }
  .footer-inner { grid-template-columns: 1fr 1fr }
  .benefits-rule { margin: 0 40px }
}

@media (min-width: 900px) {
  .nav-links { display: flex }
  .nav-hamburger, .nav-mobile-panel { display: none !important }
  .catalog .products-grid { grid-template-columns: repeat(3, 1fr) }
  .hero-inner { padding-left: 40px; padding-right: 40px }
}

@media (min-width: 1100px) {
  .hero-media { inset: 0 0 0 38% }
}

/* ── MOBILE ──────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* marquee */
  .marquee-bar {
    height: 30px;
    -webkit-mask-image: linear-gradient(to right, black 82%, transparent 100%);
    mask-image: linear-gradient(to right, black 82%, transparent 100%);
  }
  .marquee-track { animation: marqueeScroll 20s linear infinite }
  .marquee-track span { padding: 0 22px }

  /* nav */
  .nav { top: 30px; height: 56px; padding: 0 16px }
  .nav .nav-inner { height: 56px }
  .nav-logo img { height: 60px }
  .nav-right { gap: 8px }
  .nav-links { display: none }
  .nav-cta { display: none }

  /* hero category cards — stacked */
  .hero-cats { padding: 102px 16px 64px; gap: 24px }
  .hero-cats-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
  }
  .cat-hero-card-fig {
    margin: 8px 8px 0;
    aspect-ratio: 5/6;
  }

  /* global */
  .container { padding-left: 16px; padding-right: 16px }
  .btn { width: 100%; min-height: 50px }
  .btn-quiet { width: auto; min-height: 0 }
  .cat-tabs { margin-left: -4px; margin-right: -4px; margin-bottom: 36px }
  .cat-tab { padding: 12px 16px }
  .p-actions { flex-wrap: wrap }
  .p-actions .btn { min-height: 44px }
  .p-card-footer { flex-wrap: wrap; gap: 12px }

  /* order steps — stacked */
  .steps-grid { grid-template-columns: 1fr; border-top: none }
  .step-item {
    padding: 36px 0;
    border-top: 1px solid var(--border-light);
    border-right: none !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .step-desc { max-width: none }

  /* benefits */
  .benefits-rule { margin: 0 16px }
  .b-grid { grid-template-columns: 1fr; margin-top: 40px }
  .b-item { padding: 28px 0; border-right: none !important }

  /* floating wa */
  .floating-wa { right: 14px; bottom: 14px; min-height: 44px; padding: 0 17px; font-size: var(--fs-label) }

  /* section padding */
  .reviews-grid { grid-template-columns: 1fr; gap: 12px }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px }
  .gallery-strip { padding: 56px 0 }
  .catalog { padding: 80px 0 96px }
  .order-steps { padding: 80px 0 88px }
  .benefits { padding-bottom: 88px }
  .benefits-head { padding-top: 80px }
  .cta-section { padding: 80px 20px 112px }

  /* footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px }
  .footer-nav { align-items: flex-start }
  .footer-links { justify-content: flex-start }
  .footer-meta { align-items: flex-start }
  .footer-delivery { text-align: left }
}

@media (max-width: 639px) {
  .products-grid,
  .products-grid--2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* touch devices: no hover transforms */
@media (hover: none), (pointer: coarse) {
  .btn:hover,
  .p-card:hover,
  .floating-wa:hover { transform: none }
  .btn-quiet:hover { transform: none }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
