/* Gold sacred — sacred monumental */
:root {
  /* ── Palette · 7-tone ── */
  --color-accent:       oklch(55% 0.09 65);
  --color-accent-glow:  oklch(60% 0.05 65 / 0.12);
  --color-accent-ink:   oklch(95% 0.01 65);
  --color-paper:        oklch(97% 0.01 70);
  --color-paper-dim:    oklch(94% 0.01 70);
  --color-ink:          oklch(16% 0.01 75);
  --color-ink-soft:     oklch(38% 0.01 75);
  --color-ink-muted:    oklch(55% 0.01 75);
  --color-rule:         oklch(88% 0.01 70);
  --color-shadow:       oklch(16% 0.01 65 / 0.06);

  /* ── Typography · Cormorant Garamond ── */
  --font-display:       'Cormorant Garamond', serif;
  --font-body:          'Switzer', sans-serif;
}

/* Image density: moderate — 3-5 images per page */



/* ── Hero: split ── */
.hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: clamp(360px, 55vh, 560px);
  gap: var(--space-xl);
  padding: var(--space-3xl) var(--space-xl);
  align-items: center;
}
.hero--split .hero-img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: var(--radius-md);
}
.hero--split .hero-inner {
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 768px) {
  .hero--split { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .hero--split .hero-img { max-height: 280px; }
}



/* ── Cards: sharp ── */
.card-sharp { border-radius: 0; }
.card-sharp img { border-radius: 0; }
.card-sharp .cta { border-radius: var(--radius-sm); }



/* ── Grid: editorial (1-col) ── */
.grid-editorial { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-2xl); }
.grid-editorial .product-card { max-width: var(--measure); margin: 0 auto; }



/* ── Saturation: muted ── */
.cta { font-weight: 500; letter-spacing: 0.01em; opacity: 0.95; }

