/* QQip — Elegant Adult Wellness Products & OEM Manufacturing
   Stylesheet: clean, premium, flat, white-space-rich. Mobile-friendly. */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --bg-warm: #faf7f4;
  --ink: #111827;
  --ink-soft: #4b5563;
  --ink-muted: #6b7280;
  --line: #e5e7eb;
  --line-soft: #efeef0;
  --brand: #2f2a45;
  --brand-deep: #1f2937;
  --accent: #b48a78;
  --accent-soft: #d8bfd8;
  --shadow-sm: 0 1px 2px rgba(17,24,39,0.04), 0 1px 3px rgba(17,24,39,0.05);
  --shadow-md: 0 4px 16px rgba(17,24,39,0.06), 0 1px 3px rgba(17,24,39,0.04);
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1180px;
  --gap: 24px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Segoe UI", sans-serif;
  --serif: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--accent); }
h1, h2, h3, h4 {
  color: var(--brand-deep);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.2; }
h3 { font-size: 1.15rem; line-height: 1.3; }
p { margin: 0 0 1em; color: var(--ink-soft); }
hr { border: none; border-top: 1px solid var(--line); margin: 48px 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); padding: 72px 0; }
.section-warm { background: var(--bg-warm); padding: 72px 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand {
  font-weight: 700; font-size: 1.25rem; color: var(--brand-deep);
  letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 8px;
}
.brand .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  color: var(--ink-soft); font-size: 0.95rem; font-weight: 500;
  padding: 6px 0; transition: color 0.15s;
}
.nav a:hover { color: var(--brand); }
.nav a.cta {
  background: var(--brand-deep); color: #fff; padding: 10px 18px;
  border-radius: 999px; font-weight: 600;
}
.nav a.cta:hover { background: var(--brand); color: #fff; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px; cursor: pointer;
}

@media (max-width: 880px) {
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 24px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: inline-flex; }
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(180,138,120,0.18), transparent 60%),
    radial-gradient(1000px 500px at 0% 110%, rgba(216,191,216,0.18), transparent 60%),
    linear-gradient(180deg, #faf7f4 0%, #ffffff 100%);
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.6rem);
  max-width: 760px;
}
.hero .lead {
  font-size: 1.125rem; max-width: 620px; color: var(--ink-soft);
}
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none;
  transition: transform 0.1s ease, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.btn-primary { background: var(--brand-deep); color: #fff; }
.btn-primary:hover { background: #000; color: #fff; }
.btn-secondary { background: transparent; color: var(--brand-deep); border: 1px solid var(--brand-deep); }
.btn-secondary:hover { background: var(--brand-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn:active { transform: translateY(1px); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Grid */
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* Section header */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 32px; gap: 24px;
}
.section-head .eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.75rem; color: var(--accent);
  font-weight: 700; margin-bottom: 8px;
}
.section-head h2 { margin: 0; }
.section-head a.more { font-size: 0.95rem; color: var(--brand); font-weight: 500; }
.section-head a.more:hover { color: var(--accent); }

/* Category cards */
.category-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s;
}
.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: #d6d3cf;
}
.category-card .thumb {
  aspect-ratio: 4/3; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.category-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-card .body { padding: 20px; }
.category-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.category-card p { font-size: 0.9rem; margin: 0 0 12px; color: var(--ink-muted); }
.category-card .meta { font-size: 0.8rem; color: var(--ink-muted); }

/* Product cards */
.product-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s, border-color 0.15s;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: #d6d3cf;
}
.product-card .thumb {
  aspect-ratio: 1/1; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .cat { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); font-weight: 600; }
.product-card h3 { margin: 0; font-size: 1rem; font-weight: 600; line-height: 1.3; color: var(--brand-deep); }
.product-card .price { font-size: 1rem; font-weight: 700; color: var(--brand-deep); margin-top: 4px; }
.product-card .price.quote { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.product-card .actions { display: flex; gap: 8px; margin-top: auto; padding-top: 12px; }
.product-card .actions .btn { flex: 1; }

/* Filters bar */
.filters {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  padding: 18px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 28px;
}
.filters input, .filters select {
  height: 40px; padding: 0 12px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; font-size: 0.95rem; color: var(--ink);
  font-family: inherit;
}
.filters input { min-width: 220px; flex: 1; }
.filters label { font-size: 0.85rem; color: var(--ink-muted); }
.filters .count { font-size: 0.85rem; color: var(--ink-muted); margin-left: auto; }

/* Product detail */
.product-detail {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
}
@media (max-width: 880px) { .product-detail { grid-template-columns: 1fr; } }
.gallery .main {
  aspect-ratio: 1/1; background: var(--bg-soft);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 12px;
}
.gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.gallery .thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.gallery .thumbs img {
  aspect-ratio: 1/1; object-fit: cover; border-radius: 8px;
  cursor: pointer; border: 2px solid transparent;
}
.gallery .thumbs img.active { border-color: var(--brand); }

.product-info .cat { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 700; }
.product-info h1 { font-family: var(--font); font-weight: 500; font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 8px 0 16px; }
.product-info .price-line {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.product-info .price-line .price { font-size: 2rem; font-weight: 700; color: var(--brand-deep); }
.product-info .price-line .price.quote { font-size: 1.15rem; color: var(--accent); }
.product-info .price-mode { font-size: 0.75rem; color: var(--ink-muted); }

.spec-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.spec-table th, .spec-table td {
  text-align: left; padding: 10px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem; vertical-align: top;
}
.spec-table th { color: var(--ink-muted); font-weight: 500; width: 38%; }
.spec-table td { color: var(--ink); font-weight: 500; }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.feature-list li { padding-left: 24px; position: relative; color: var(--ink-soft); font-size: 0.95rem; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 2px; background: var(--accent);
}

.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.detail-actions .btn { min-width: 160px; }

/* Breadcrumbs */
.breadcrumb {
  font-size: 0.85rem; color: var(--ink-muted); margin: 24px 0 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: var(--ink); }

/* Forms */
.form-grid { display: grid; gap: 14px; }
.form-grid label { font-size: 0.85rem; color: var(--ink-muted); font-weight: 500; display: block; margin-bottom: 6px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; font-family: inherit; font-size: 0.95rem;
  background: #fff; color: var(--ink);
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-help { font-size: 0.85rem; color: var(--ink-muted); }
.form-msg { padding: 14px; border-radius: 10px; font-size: 0.9rem; margin-top: 12px; }
.form-msg.ok { background: #f0f7ed; color: #2e6b32; border: 1px solid #cde3c4; }
.form-msg.err { background: #fef2f2; color: #8a1c1c; border: 1px solid #fbcaca; }

/* FAQ */
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 12px; background: #fff;
}
.faq-item h3 { margin: 0 0 8px; font-size: 1.05rem; }
.faq-item p { margin: 0; }

/* Feature blocks */
.feature-block { display: flex; gap: 18px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.feature-block .icon { width: 40px; height: 40px; flex: 0 0 40px; background: var(--bg-warm); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--brand); }
.feature-block h3 { margin: 0 0 6px; font-size: 1.05rem; }
.feature-block p { margin: 0; font-size: 0.92rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #1f2937 0%, #2f2a45 100%);
  color: #fff; border-radius: var(--radius);
  padding: 56px 48px; text-align: center;
}
.cta-banner h2 { color: #fff; font-family: var(--font); font-weight: 500; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 24px; }
.cta-banner .btn-primary { background: #fff; color: var(--brand-deep); }
.cta-banner .btn-primary:hover { background: var(--accent-soft); }
.cta-banner .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Quote cart */
.quote-cart { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.quote-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); align-items: center; }
.quote-item:last-child { border-bottom: none; }
.quote-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.quote-item .info { flex: 1; min-width: 0; }
.quote-item .info h4 { margin: 0 0 4px; font-size: 0.95rem; font-weight: 600; }
.quote-item .info .meta { font-size: 0.85rem; color: var(--ink-muted); }
.quote-item .qty { width: 64px; padding: 6px 8px; border: 1px solid var(--line); border-radius: 6px; font-size: 0.9rem; }
.quote-item .remove { background: none; border: none; color: var(--ink-muted); cursor: pointer; font-size: 0.85rem; }
.quote-item .remove:hover { color: #b91c1c; }
.quote-empty { padding: 32px; text-align: center; color: var(--ink-muted); }

/* Footer */
.site-footer {
  background: #0f111a; color: #cfd0d4;
  padding: 64px 0 32px; margin-top: 56px;
  font-size: 0.92rem;
}
.site-footer h4 { color: #fff; font-size: 0.95rem; margin: 0 0 14px; letter-spacing: 0.02em; }
.site-footer a { color: #cfd0d4; }
.site-footer a:hover { color: #fff; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
@media (max-width: 760px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-cols ul { list-style: none; padding: 0; margin: 0; }
.footer-cols li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #1f2230; padding-top: 24px; color: #8a8b91; font-size: 0.82rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Misc */
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 700; color: var(--accent); }
.lede { font-size: 1.1rem; max-width: 640px; color: var(--ink-soft); }
.muted { color: var(--ink-muted); }
.no-mt { margin-top: 0; }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.center { text-align: center; }

.tag { display: inline-block; padding: 4px 10px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; font-size: 0.78rem; color: var(--ink-soft); }
.badge { display: inline-block; padding: 3px 8px; background: var(--accent-soft); color: var(--brand-deep); border-radius: 6px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* Category chip bar (visible nav on /products.html) */
.cat-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 0 6px;
  margin-bottom: 18px;
}
.chip {
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink-soft);
  cursor: pointer; transition: all 0.15s;
  font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip-active {
  background: var(--brand-deep); color: #fff; border-color: var(--brand-deep);
}
.chip-active:hover { background: #000; color: #fff; }
.chip-n {
  font-size: 0.72rem; color: var(--ink-muted);
  background: var(--bg-soft); padding: 1px 7px; border-radius: 999px;
  font-weight: 600;
}
.chip-active .chip-n { color: #fff; background: rgba(255,255,255,0.18); }

/* Pagination */
.pagination {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px; margin-top: 40px;
}
.pagination button, .pagination span.page-ellipsis {
  min-width: 38px; height: 38px; padding: 0 10px;
  border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--ink); font-size: 0.92rem; font-weight: 500;
  cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; justify-content: center;
}
.pagination button:hover { border-color: var(--brand); color: var(--brand); }
.pagination button.page-active {
  background: var(--brand-deep); border-color: var(--brand-deep); color: #fff;
}
.pagination button:disabled, .pagination span.page-ellipsis {
  opacity: 0.45; cursor: default; pointer-events: none;
}
.pagination .page-arrow { font-weight: 600; }

/* ---- Page hero (replaces standalone breadcrumb at top) ---- */
.page-hero {
  background:
    radial-gradient(900px 480px at 85% -20%, rgba(180,138,120,0.12), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(216,191,216,0.10), transparent 60%),
    linear-gradient(180deg, #faf7f4 0%, #ffffff 100%);
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-family: var(--font); font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  max-width: 880px;
  line-height: 1.15;
  margin: 14px 0 16px;
}
.page-hero .lede { max-width: 720px; }
.breadcrumb-hero {
  margin: 0 0 8px;
  padding: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.breadcrumb-hero a { color: var(--ink-muted); }
.breadcrumb-hero a:hover { color: var(--brand); }
.breadcrumb-hero span[aria-current] { color: var(--ink); }

/* Hero stats row */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px; margin-top: 36px;
  max-width: 720px;
}
@media (max-width: 640px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.hero-stats .stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; }
.hero-stats .stat-n {
  font-family: var(--font); font-weight: 500;
  font-size: 1.7rem; color: var(--brand-deep);
  line-height: 1.1; letter-spacing: -0.01em;
}
.hero-stats .stat-l { font-size: 0.78rem; color: var(--ink-muted); margin-top: 4px; }

/* ---- Category showcase cards (products.html hub) ---- */
.cat-showcase { gap: 18px; }
.cat-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(17,24,39,0.08);
  border-color: #d6d3cf;
}
.cat-card-thumb {
  aspect-ratio: 4/3; background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cat-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 4px; }
.cat-card-body h3 { margin: 0; font-size: 1.05rem; color: var(--brand-deep); }
.cat-card-meta { font-size: 0.8rem; color: var(--ink-muted); }
.cat-card-cta {
  font-size: 0.88rem; font-weight: 600; color: var(--brand);
  margin-top: 10px;
}
.cat-card:hover .cat-card-cta { color: var(--accent); }
.cat-card:hover .cat-card-cta span { transform: translateX(2px); display: inline-block; }

/* ---- Server-side pagination links ---- */
.pagination-ssr {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px; margin-top: 40px;
}
.pagination-ssr a, .pagination-ssr span {
  min-width: 38px; height: 38px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--ink);
  font-size: 0.92rem; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.pagination-ssr a:hover { border-color: var(--brand); color: var(--brand); }
.pagination-ssr a.disabled, .pagination-ssr span.page-ellipsis {
  opacity: 0.4; pointer-events: none;
}
.pagination-ssr span.page-active {
  background: var(--brand-deep); border-color: var(--brand-deep); color: #fff;
}
.pagination-ssr .page-arrow { font-weight: 600; padding: 0 14px; }

/* ---- Unified typography (font cascade) ---- */
body, button, input, select, textarea {
  font-family: var(--font);
  font-feature-settings: "ss01", "cv11";
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.hero h1, .page-hero h1 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ---- Catalogue-only listing (used in category page for products without images) ---- */
.catalogue-list {
  display: block; margin: 0; padding: 0; list-style: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.catalogue-list li {
  display: grid; grid-template-columns: 1fr auto auto; gap: 16px;
  align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--line-soft);
}
.catalogue-list li:last-child { border-bottom: none; }
.catalogue-list .cat-name { font-weight: 500; color: var(--brand-deep); font-size: 0.95rem; }
.catalogue-list .cat-name a { color: var(--brand-deep); }
.catalogue-list .cat-name a:hover { color: var(--accent); }
.catalogue-list .cat-meta { font-size: 0.82rem; color: var(--ink-muted); }
.catalogue-list .cat-price { color: var(--ink-muted); font-weight: 500; font-size: 0.9rem; min-width: 110px; text-align: right; }
.catalogue-list .cat-cta a { font-size: 0.85rem; font-weight: 600; color: var(--brand); }
.catalogue-list .cat-cta a:hover { color: var(--accent); }
@media (max-width: 640px) {
  .catalogue-list li { grid-template-columns: 1fr auto; }
  .catalogue-list .cat-meta { display: none; }
}
.catalogue-note {
  font-size: 0.9rem; color: var(--ink-muted);
  background: var(--bg-warm); border: 1px dashed var(--line);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 18px;
}

/* ============================================
   Editorial homepage (world-class redesign)
   ============================================ */

/* Cinematic full-bleed hero */
.home-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 64px 56px 80px;
  background:
    radial-gradient(1100px 600px at 100% 0%, rgba(180,138,120,0.16), transparent 55%),
    radial-gradient(900px 500px at 0% 100%, rgba(216,191,216,0.18), transparent 55%),
    linear-gradient(140deg, #faf7f4 0%, #ffffff 60%, #f7f4f0 100%);
  overflow: hidden;
}
.home-hero .h-left { z-index: 2; max-width: 640px; justify-self: end; padding-left: 16px; }
.home-hero .eyebrow { color: var(--accent); }
.home-hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 18px 0 24px;
  color: var(--brand-deep);
}
.home-hero h1 em {
  font-style: italic; font-weight: 400; color: var(--accent);
}
.home-hero .lede { font-size: 1.15rem; max-width: 520px; margin-bottom: 36px; }
.home-hero .h-right {
  position: relative; height: 100%; min-height: 540px;
}
.home-hero .h-mark {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(180,138,120,0.25), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(216,191,216,0.30), transparent 55%),
    linear-gradient(135deg, #2f2a45, #1f2937);
  border-radius: 32px;
  overflow: hidden;
}
.home-hero .h-mark::before {
  content: ""; position: absolute; inset: 14% 18%;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
}
.home-hero .h-mark::after {
  content: ""; position: absolute; inset: 28% 32%;
  border: 1px solid rgba(255,255,255,0.10); border-radius: 999px;
}
.home-hero .h-mark .wordmark {
  position: relative; z-index: 1; color: #fff;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700; letter-spacing: -0.03em;
  font-feature-settings: "ss01";
}
.home-hero .h-mark .tagline {
  position: absolute; bottom: 36px; left: 36px; right: 36px;
  color: rgba(255,255,255,0.62); font-size: 0.85rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 960px) {
  .home-hero { grid-template-columns: 1fr; padding: 56px 24px; min-height: auto; }
  .home-hero .h-left { padding: 0; justify-self: stretch; }
  .home-hero .h-right { min-height: 360px; }
}

/* Marquee strip */
.marquee {
  background: var(--brand-deep); color: #fff;
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid #2a2f3c; border-bottom: 1px solid #2a2f3c;
}
.marquee-track {
  display: flex; gap: 64px;
  animation: marquee-slide 38s linear infinite;
  white-space: nowrap;
  font-size: 0.92rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.marquee-track span::before { content: "·"; color: var(--accent); margin-right: 64px; }
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Centered manifesto */
.manifesto {
  padding: 120px 0; text-align: center;
}
.manifesto h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.15;
  max-width: 920px; margin: 0 auto 24px;
}
.manifesto h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.manifesto p { font-size: 1.1rem; max-width: 680px; margin: 0 auto; }

/* Dark stat band */
.stat-band {
  background: #111827; color: #fff;
  padding: 64px 0;
}
.stat-band .stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 760px) { .stat-band .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-band .stat-cell {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-band .stat-cell:last-child { border-right: none; }
.stat-band .stat-n {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; letter-spacing: -0.02em;
  color: #fff; line-height: 1;
}
.stat-band .stat-l {
  margin-top: 12px; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}

/* Editorial split */
.editorial-split {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  padding: 120px 56px;
}
.editorial-split.flip { grid-template-columns: 1fr 1fr; }
.editorial-split.flip .es-text { order: 2; }
@media (max-width: 960px) {
  .editorial-split { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
  .editorial-split.flip .es-text { order: 0; }
}
.editorial-split .es-text { max-width: 540px; justify-self: end; }
.editorial-split.flip .es-text { justify-self: start; }
.editorial-split h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.1;
  margin: 12px 0 20px;
}
.editorial-split .es-image {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  background: var(--bg-soft);
}
.editorial-split .es-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-split ul.bullet-list {
  list-style: none; padding: 0; margin: 20px 0 32px;
  display: grid; gap: 14px;
}
.editorial-split ul.bullet-list li {
  padding-left: 30px; position: relative;
  font-size: 0.98rem; color: var(--ink);
}
.editorial-split ul.bullet-list li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 18px; height: 1px; background: var(--accent);
}

/* Wide category strips */
.cat-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
@media (max-width: 760px) { .cat-strip { grid-template-columns: 1fr 1fr; } }
.cat-strip-card {
  position: relative; aspect-ratio: 3/4;
  overflow: hidden; display: block;
  background: var(--bg-soft);
  transition: transform 0.4s ease;
}
.cat-strip-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-strip-card:hover img { transform: scale(1.05); }
.cat-strip-card .cs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,17,26,0.75) 100%);
}
.cat-strip-card .cs-body {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  color: #fff;
}
.cat-strip-card .cs-eyebrow {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.7); margin-bottom: 6px;
}
.cat-strip-card .cs-title {
  font-size: 1.25rem; font-weight: 600;
  margin: 0 0 6px;
}
.cat-strip-card .cs-meta {
  font-size: 0.85rem; color: rgba(255,255,255,0.75);
}
.cat-strip-card .cs-arrow {
  margin-top: 12px; font-size: 0.85rem; font-weight: 600;
  color: var(--accent-soft);
}

/* Workflow numbered steps */
.workflow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
}
@media (max-width: 880px) { .workflow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .workflow { grid-template-columns: 1fr; } }
.workflow .wf-step {
  background: #fff; padding: 36px 28px;
}
.workflow .wf-num {
  font-size: 3rem; font-weight: 700; line-height: 1;
  color: var(--accent); letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.workflow .wf-title {
  font-size: 1.1rem; font-weight: 600; margin: 0 0 10px;
  color: var(--brand-deep);
}
.workflow .wf-desc { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* Pull quote */
.pull-quote {
  padding: 120px 0; text-align: center;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pull-quote blockquote {
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  font-weight: 500; letter-spacing: -0.015em; line-height: 1.25;
  max-width: 900px; margin: 0 auto 24px;
  color: var(--brand-deep);
}
.pull-quote blockquote::before {
  content: "“"; display: block; font-size: 3rem; color: var(--accent);
  line-height: 1; margin-bottom: 8px;
}
.pull-quote cite {
  display: block;
  font-style: normal; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-muted);
}

/* Why grid (3x2 large icon blocks) */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 880px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 32px 28px;
}
.why-card .wc-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-warm); border-radius: 12px;
  font-weight: 700; color: var(--brand); font-size: 1.05rem;
  margin-bottom: 18px;
}
.why-card h3 { font-size: 1.1rem; margin: 0 0 8px; }
.why-card p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* Big CTA */
.big-cta {
  padding: 0;
  background: #0f111a;
  color: #fff;
}
.big-cta .container {
  padding: 120px 24px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) { .big-cta .container { grid-template-columns: 1fr; padding: 80px 24px; } }
.big-cta h2 {
  color: #fff; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; letter-spacing: -0.02em;
  margin: 0 0 16px; line-height: 1.1;
}
.big-cta p {
  color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 0 28px;
  font-size: 1.05rem;
}
.big-cta .btn-primary {
  background: #fff; color: var(--brand-deep);
}
.big-cta .btn-primary:hover { background: var(--accent-soft); }
.big-cta .btn-secondary {
  color: #fff; border-color: rgba(255,255,255,0.4);
}
.big-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff;
}
.big-cta .bc-meta {
  border-left: 2px solid var(--accent); padding-left: 24px;
  color: rgba(255,255,255,0.75);
}
.big-cta .bc-meta h4 { color: #fff; margin: 0 0 8px; font-size: 1rem; }

/* FAQ accordion-style (using details/summary) */
.faq-grid { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faq-grid details {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 24px;
  transition: border-color 0.15s;
}
.faq-grid details[open] { border-color: var(--brand); }
.faq-grid summary {
  font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--brand-deep); font-size: 1.02rem;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  content: "+"; font-size: 1.5rem; font-weight: 300; color: var(--accent);
  transition: transform 0.2s;
}
.faq-grid details[open] summary::after { content: "−"; }
.faq-grid details p { margin: 16px 0 0; color: var(--ink-soft); font-size: 0.96rem; }
