/*
 * MC Abstract — Soft Modern
 * Gallery white · Rounded warmth · Art pops
 * v3.0 — April 2026
 * All-light palette. No dark sections. Feminine, clean, kind.
 */

/* ─── Reset & Base ─── */
html { scroll-behavior: smooth; }
body { background: #fff; color: var(--dark); }
::selection { background: var(--primary); color: #fff; }
img { max-width: 100%; height: auto; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════
   NAV
   ═══════════════════════════════ */
nav {
  background: #fff;
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid var(--bone);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(42,38,36,0.05); }
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
}
.nav-brand {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; color: var(--dark); text-decoration: none;
  letter-spacing: -0.02em;
  display: flex; align-items: center;
}
.nav-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: var(--font-display); font-size: 13px; font-weight: 800;
  margin-right: 10px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: var(--font-accent); font-size: 14px; font-weight: 500;
  color: var(--mid); text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-active { color: var(--dark); font-weight: 600; }
.nav-links .nav-active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  background: var(--primary); color: #fff;
  padding: 10px 24px; border-radius: var(--radius-pill);
  text-decoration: none; transition: all 0.25s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: #ad7a66; transform: translateY(-1px); }

/* Cart toggle */
.cart-toggle {
  position: relative; background: none; border: none; cursor: pointer;
  color: var(--mid); padding: 8px; transition: color 0.2s;
}
.cart-toggle:hover { color: var(--dark); }
.cart-toggle svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--primary); color: white;
  font-family: var(--font-accent); font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; padding: 0;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { content: ''; position: absolute; top: -7px; }
.nav-toggle-bar::after { content: ''; position: absolute; top: 7px; }
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  background: #fff; border-top: 1px solid var(--bone);
  padding: 16px 32px;
}
.nav-mobile a {
  font-family: var(--font-accent); font-size: 15px; font-weight: 500;
  color: var(--dark); text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid var(--bone);
}
.nav-mobile-cta {
  display: inline-block; margin-top: 12px;
  background: var(--primary); color: #fff !important;
  padding: 12px 24px; border-radius: var(--radius-pill);
  text-align: center; border-bottom: none !important;
}
nav.nav-open .nav-mobile { display: flex; }

/* ═══════════════════════════════
   HERO
   ═══════════════════════════════ */
.hero {
  background: #fff;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 32px 80px;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hero-kicker {
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.6s 0.2s ease-out forwards;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(42px, 7vw, 84px);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--dark); margin-bottom: 28px;
  text-align: center;
  opacity: 0; animation: fadeUp 0.7s 0.35s ease-out forwards;
}
.hero-headline em {
  font-style: italic; font-weight: 600;
  color: var(--primary);
}
.hero-sub {
  font-size: 18px; color: var(--mid);
  line-height: 1.7; margin-bottom: 40px;
  max-width: 480px; text-align: center;
  opacity: 0; animation: fadeUp 0.7s 0.5s ease-out forwards;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.65s ease-out forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════
   BUTTONS
   ═══════════════════════════════ */
.btn {
  display: inline-block; font-family: var(--font-accent); font-size: 14px;
  font-weight: 600; padding: 14px 32px; border-radius: var(--radius-pill);
  text-decoration: none; transition: all 0.25s; letter-spacing: 0.02em;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--primary); color: white;
}
.btn-primary:hover { background: #ad7a66; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-dark {
  background: var(--dark); color: white;
}
.btn-dark:hover { background: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--bone);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.btn-warm {
  background: var(--primary); color: white;
}
.btn-warm:hover { background: #ad7a66; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-soft {
  background: var(--blush); color: var(--dark);
}
.btn-soft:hover { background: var(--bone); transform: translateY(-2px); }

/* ═══════════════════════════════
   ART BANNER (full-bleed)
   ═══════════════════════════════ */
.art-banner {
  width: 100%; overflow: hidden; position: relative;
  max-height: 70vh;
}
.art-banner img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.art-banner-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 32px 28px;
  background: linear-gradient(transparent, rgba(42,38,36,0.55));
  color: #fff;
}
.art-banner-caption .caption-title {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  margin-bottom: 6px;
}
.art-banner-caption .caption-meta {
  font-family: var(--font-accent); font-size: 13px;
  color: rgba(255,255,255,0.85); letter-spacing: 0.04em;
}

/* ═══════════════════════════════
   FEATURED STRIP
   ═══════════════════════════════ */
.featured-strip {
  background: var(--bg-surface); padding: 20px 32px;
  border-bottom: 1px solid var(--bone);
}
.featured-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 40px;
  flex-wrap: wrap;
}
.featured-strip-stat {
  font-family: var(--font-accent); font-size: 13px; font-weight: 500;
  color: var(--mid); letter-spacing: 0.02em;
}
.featured-strip-stat strong { font-weight: 700; color: var(--dark); }
.strip-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--bone);
}

/* ═══════════════════════════════
   SECTIONS
   ═══════════════════════════════ */
.section-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 100px 32px;
}
.section-kicker {
  font-family: var(--font-accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800; color: var(--dark); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--mid); line-height: 1.7; max-width: 520px;
}

/* ═══════════════════════════════
   POETRY SECTION
   ═══════════════════════════════ */
.poetry-section {
  background: #fff;
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
}
.poetry-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
}
.poetry-split-img {
  overflow: hidden; position: relative;
}
.poetry-split-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.poetry-split-text {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 64px 48px;
  background: #fff;
}
.poetry-split-text p {
  color: var(--mid); font-size: 15px; line-height: 1.75; margin-top: 16px;
}
.poetry-text {
  font-family: var(--font-display); font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 700; line-height: 1.45; color: var(--dark);
  letter-spacing: -0.01em;
  font-style: italic;
}

/* ═══════════════════════════════
   ART SHOWCASE GRID
   ═══════════════════════════════ */
.art-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
  margin: 0; padding: 0;
}
.art-showcase-item {
  overflow: hidden; position: relative;
  aspect-ratio: 1;
}
.art-showcase-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.art-showcase-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.art-showcase-item:hover img { transform: scale(1.03); }
.art-showcase-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: flex-end; padding: 20px;
  transition: background 0.3s;
}
.art-showcase-item:hover .art-showcase-overlay {
  background: rgba(42,38,36,0.3);
}
.art-showcase-label {
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  color: #fff; opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.art-showcase-item:hover .art-showcase-label {
  opacity: 1; transform: translateY(0);
}

/* ═══════════════════════════════
   GALLERY PREVIEW
   ═══════════════════════════════ */
.gallery-preview { background: var(--bg-surface); }
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.gallery-link {
  font-family: var(--font-accent); font-size: 14px; font-weight: 600;
  color: var(--primary); text-decoration: none;
  transition: color 0.2s;
}
.gallery-link:hover { text-decoration: underline; }

/* ═══════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════ */
.products-grid, #product-grid, #featured-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
  background: #fff; overflow: hidden;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  aspect-ratio: 4/5; position: relative;
  overflow: hidden; background: var(--bg-surface);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-badge-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-accent); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: white; background: var(--primary);
  padding: 5px 14px; border-radius: var(--radius-pill);
}
.product-card-body {
  padding: 20px 20px 24px;
  display: flex; flex-direction: column; flex: 1;
}
.product-card-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--dark); margin-bottom: 6px; line-height: 1.3;
  letter-spacing: -0.01em;
}
.product-card-medium {
  font-size: 13px; color: var(--mid); margin-bottom: 8px; line-height: 1.5;
}
.product-card-desc {
  font-size: 14px; color: var(--mid); line-height: 1.6;
  margin-bottom: 16px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--bone);
}
.product-card-price {
  font-family: var(--font-accent); font-size: 20px; font-weight: 700;
  color: var(--dark);
}
.btn-add-cart {
  font-family: var(--font-accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--primary); color: white;
  padding: 10px 20px; border: none;
  border-radius: var(--radius-pill);
  cursor: pointer; transition: all 0.25s;
}
.btn-add-cart:hover { background: #ad7a66; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-add-cart.added { background: var(--secondary); }

/* ═══════════════════════════════
   ARTIST STRIP
   ═══════════════════════════════ */
.artist-strip {
  background: #fff;
  padding: 100px 32px;
  border-top: 1px solid var(--bone);
}
.artist-strip-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.artist-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.artist-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}
.artist-text h2 {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; color: var(--dark); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.artist-text p {
  font-size: 16px; color: var(--mid); line-height: 1.75;
  margin-bottom: 16px;
}
.artist-link {
  font-family: var(--font-accent); font-size: 14px; font-weight: 600;
  color: var(--primary); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.artist-link:hover { gap: 10px; }

/* ═══════════════════════════════
   TRUST SECTION
   ═══════════════════════════════ */
.trust-section { background: var(--bg-surface); border-top: 1px solid var(--bone); }
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.trust-card {
  padding: 32px; background: #fff;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.trust-icon {
  font-size: 28px; margin-bottom: 16px;
}
.trust-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px; letter-spacing: -0.01em;
}
.trust-card p {
  font-size: 15px; color: var(--mid); line-height: 1.7;
}

/* ═══════════════════════════════
   CTA SECTION — LIGHT (no dark bg)
   ═══════════════════════════════ */
.cta-section {
  background: var(--blush);
  padding: 100px 32px;
  text-align: center;
  border-top: 1px solid var(--bone);
}
.cta-inner {
  max-width: 600px; margin: 0 auto;
}
.cta-section .section-kicker { color: var(--primary); }
.cta-section .section-title { color: var(--dark); margin-bottom: 16px; }
.cta-copy {
  font-size: 17px; color: var(--mid); line-height: 1.7;
  margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════
   FOOTER
   ═══════════════════════════════ */
footer { background: #fff; border-top: 1px solid var(--bone); }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 48px 32px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-brand {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; color: var(--dark);
  display: flex; align-items: center; gap: 8px;
}
.footer-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
}
.footer-links {
  display: flex; gap: 28px;
}
.footer-links a {
  font-family: var(--font-accent); font-size: 13px; font-weight: 500;
  color: var(--mid); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--dark); }

.footer-meta {
  max-width: var(--max); margin: 0 auto;
  padding: 16px 32px 32px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--bone);
}
.footer-copy {
  font-family: var(--font-accent); font-size: 12px; color: var(--mid);
}
.footer-network {
  font-family: var(--font-accent); font-size: 12px;
  color: var(--mid); text-decoration: none; opacity: 0.5;
}
.footer-network:hover { opacity: 1; }

/* ═══════════════════════════════
   CART DRAWER
   ═══════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(42,38,36,0.25);
  z-index: 999; opacity: 0; pointer-events: none;
  transition: opacity 0.3s; backdrop-filter: blur(2px);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px;
  background: white; z-index: 1000;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(42,38,36,0.1);
}
.cart-drawer.active { transform: translateX(0); }

.cart-drawer-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--bone);
}
.cart-drawer-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--dark);
}
.cart-close {
  background: none; border: none; font-size: 28px; cursor: pointer;
  color: var(--mid); padding: 4px; transition: color 0.2s; line-height: 1;
}
.cart-close:hover { color: var(--dark); }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
  text-align: center; padding: 60px 0;
  color: var(--mid); font-size: 15px;
}
.btn-shop-now {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  background: var(--primary); color: white;
  padding: 12px 24px; text-decoration: none;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.btn-shop-now:hover { background: #ad7a66; }

.cart-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--bone); position: relative;
}
.cart-item-img {
  width: 72px; height: 72px; flex-shrink: 0; overflow: hidden;
  background: var(--bg-surface); border-radius: var(--radius-sm);
}
.cart-item-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-sm);
}
.cart-item-placeholder { width: 100%; height: 100%; background: var(--bg-surface); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 2px;
}
.cart-item-meta { font-size: 12px; color: var(--mid); margin-bottom: 10px; }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; }
.cart-qty-control {
  display: flex; align-items: center;
  border: 1px solid var(--bone); border-radius: var(--radius-sm); overflow: hidden;
}
.qty-btn {
  background: var(--bg-surface); border: none; width: 28px; height: 28px;
  font-size: 14px; cursor: pointer; color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--bone); }
.qty-val {
  font-family: var(--font-accent); font-size: 13px; font-weight: 600;
  width: 32px; text-align: center; color: var(--dark);
}
.cart-item-price {
  font-family: var(--font-accent); font-size: 15px; font-weight: 700;
  color: var(--dark);
}
.cart-item-remove {
  position: absolute; top: 16px; right: 0;
  background: none; border: none; font-size: 18px;
  color: var(--mid); cursor: pointer; padding: 2px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--primary); }

.cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--bone); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.cart-total-label {
  font-family: var(--font-accent); font-size: 14px; font-weight: 600;
  color: var(--dark); text-transform: uppercase; letter-spacing: 0.06em;
}
.cart-total-value {
  font-family: var(--font-accent); font-size: 22px; font-weight: 700; color: var(--dark);
}
.btn-checkout {
  display: block; width: 100%; font-family: var(--font-accent);
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; background: var(--primary); color: white;
  padding: 16px; border: none; cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.btn-checkout:hover { background: #ad7a66; }
.cart-note {
  font-size: 12px; color: var(--mid); text-align: center; margin-top: 10px;
}

/* ═══════════════════════════════
   SHOP PAGE
   ═══════════════════════════════ */
.shop-header {
  background: #fff; padding: 140px 32px 48px;
  text-align: center; border-bottom: 1px solid var(--bone);
}
.shop-filters {
  background: #fff;
  border-bottom: 1px solid var(--bone);
  padding: 0 32px;
  position: sticky; top: 65px; z-index: 50;
}
.shop-filters-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; gap: 4px; padding: 14px 0; justify-content: center;
}
.shop-filter-btn {
  font-family: var(--font-accent); font-size: 13px; font-weight: 500;
  color: var(--mid); background: transparent;
  border: none; padding: 8px 20px;
  cursor: pointer; transition: all 0.2s;
  border-radius: var(--radius-pill);
}
.shop-filter-btn:hover { color: var(--dark); background: var(--bg-surface); }
.shop-filter-btn.active {
  color: var(--dark); background: var(--blush);
  font-weight: 600;
}

.shop-grid-section { padding: 48px 32px 100px; }
.shop-grid-inner { max-width: var(--max); margin: 0 auto; }

/* ═══════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════ */
.about-hero {
  background: #fff; min-height: 80vh;
  display: flex; align-items: center; padding: 140px 32px 80px;
}
.about-hero-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.about-hero-text h1 {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px);
  font-weight: 800; line-height: 1.1; color: var(--dark);
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.about-hero-text p {
  font-size: 17px; color: var(--mid); line-height: 1.75; max-width: 460px;
}
.about-hero-img {
  width: 100%; aspect-ratio: 3/4;
  overflow: hidden; border-radius: var(--radius-lg);
}
.about-hero-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}

.about-values { background: var(--bg-surface); border-top: 1px solid var(--bone); }
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 40px;
}
.value-card {
  padding: 36px; background: #fff; border: 1px solid var(--bone);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.value-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px; letter-spacing: -0.01em;
}
.value-card p {
  font-size: 15px; color: var(--mid); line-height: 1.7;
}

/* ═══════════════════════════════
   COMMISSIONS PAGE
   ═══════════════════════════════ */
.commissions-hero {
  background: #fff; padding: 140px 32px 80px;
  text-align: center;
}
.commissions-hero-inner {
  max-width: 720px; margin: 0 auto;
}
.commissions-process {
  background: var(--bg-surface);
  border-top: 1px solid var(--bone);
  border-bottom: 1px solid var(--bone);
}
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
  counter-reset: step;
}
.process-step {
  padding: 32px 24px; background: #fff;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.process-step-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  color: var(--primary); margin-bottom: 16px;
  line-height: 1;
}
.process-step h3 {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.process-step p {
  font-size: 14px; color: var(--mid); line-height: 1.7;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  padding: 36px; background: #fff;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-accent); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--primary); color: white;
  padding: 4px 16px; border-radius: var(--radius-pill);
}
.pricing-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--dark); margin-bottom: 8px;
}
.pricing-card .price-range {
  font-family: var(--font-accent); font-size: 28px; font-weight: 700;
  color: var(--primary); margin-bottom: 16px; display: block;
}
.pricing-card p {
  font-size: 14px; color: var(--mid); line-height: 1.7; margin-bottom: 8px;
}
.pricing-card ul {
  list-style: none; padding: 0; margin: 16px 0 0; text-align: left;
}
.pricing-card ul li {
  font-size: 14px; color: var(--mid); line-height: 1.5;
  padding: 8px 0; border-bottom: 1px solid var(--bone);
}
.pricing-card ul li::before {
  content: '✓ '; color: var(--secondary); font-weight: 700;
}

/* ═══════════════════════════════
   BLOG / PROCESS PAGE
   ═══════════════════════════════ */
.journal-header {
  background: #fff; padding: 140px 32px 48px; text-align: center;
  border-bottom: 1px solid var(--bone);
}
.journal-header-inner { max-width: 600px; margin: 0 auto; }
.journal-kicker {
  font-family: var(--font-accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.journal-title {
  font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px);
  font-weight: 800; line-height: 1.1; color: var(--dark);
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.journal-sub {
  font-size: 17px; color: var(--mid); line-height: 1.7;
}

.filter-bar {
  background: #fff; border-bottom: 1px solid var(--bone);
  padding: 0 32px;
  position: sticky; top: 65px; z-index: 50;
}
.filter-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; gap: 4px; padding: 14px 0; justify-content: center;
}
.filter-btn {
  font-family: var(--font-accent); font-size: 13px; font-weight: 500;
  color: var(--mid); background: transparent;
  border: none; padding: 8px 20px;
  cursor: pointer; transition: all 0.2s;
  border-radius: var(--radius-pill);
}
.filter-btn:hover { color: var(--dark); background: var(--bg-surface); }
.filter-btn.active {
  color: var(--dark); background: var(--blush);
  font-weight: 600;
}

.featured-section { background: var(--bg-surface); }
.featured-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 60px 32px;
}
.featured-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--bone);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.featured-card:hover { box-shadow: var(--shadow-lg); }
.featured-visual {
  aspect-ratio: 16/10; position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 50%, var(--secondary) 100%);
}
.featured-category-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-accent); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: white; background: rgba(42,38,36,0.35);
  padding: 5px 14px; border-radius: var(--radius-pill);
}
.featured-content {
  padding: 40px; display: flex; flex-direction: column; justify-content: center;
}
.featured-kicker {
  font-family: var(--font-accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.featured-headline {
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  line-height: 1.2; color: var(--dark); margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.featured-excerpt {
  font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 20px;
}
.featured-read {
  font-family: var(--font-accent); font-size: 14px; font-weight: 600;
  color: var(--primary);
}
.featured-read .arrow { transition: margin-left 0.2s; }
.featured-card:hover .featured-read .arrow { margin-left: 4px; }

.posts-section { background: #fff; }
.posts-section-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 60px 32px;
}
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.post-card { overflow: hidden; }
.post-card-link {
  text-decoration: none; color: inherit; display: block;
  border: 1px solid var(--bone);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
}
.post-card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.post-card-visual {
  aspect-ratio: 16/10; position: relative;
}
.post-card-cat {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-accent); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: white; background: rgba(42,38,36,0.35);
  padding: 5px 14px; border-radius: var(--radius-pill);
}
.mat-canvas { background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%); }
.mat-materials { background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%); }
.mat-process { background: linear-gradient(135deg, var(--tertiary) 0%, var(--primary) 100%); }
.mat-collections { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); }
.post-card-body { padding: 20px; }
.post-meta-row {
  font-family: var(--font-accent); font-size: 12px; font-weight: 500;
  color: var(--mid); margin-bottom: 8px;
}
.post-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--dark); line-height: 1.3; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.post-excerpt {
  font-size: 14px; color: var(--mid); line-height: 1.65;
}

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .products-grid, #product-grid, #featured-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
  .artist-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .artist-img-placeholder { max-width: 400px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { max-width: 400px; order: -1; }
  .featured-card { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .art-showcase { grid-template-columns: repeat(2, 1fr); }
  .art-showcase-item.wide { grid-column: span 2; }
  .poetry-split { grid-template-columns: 1fr; }
  .poetry-split-img { max-height: 400px; }
  .poetry-split-text { padding: 48px 24px; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 14px 20px; }
  .products-grid, #product-grid, #featured-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .hero { min-height: auto; padding: 120px 20px 60px; }
  .section-inner { padding: 64px 20px; }
  .artist-strip { padding: 64px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .featured-strip-inner { flex-direction: column; gap: 8px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .footer-meta { flex-direction: column; gap: 8px; text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .featured-content { padding: 24px; }
  .art-showcase { grid-template-columns: 1fr; }
  .art-showcase-item.wide { grid-column: span 1; aspect-ratio: 16/9; }
  .shop-header { padding: 120px 20px 40px; }
  .about-hero { padding: 120px 20px 60px; }
  .journal-header { padding: 120px 20px 40px; }
  .commissions-hero { padding: 120px 20px 60px; }
  .cta-section { padding: 64px 20px; }
}
