:root {
  --porcelain: #FBF8F3; --sand: #F6F1E8; --husk: #E8DFCE; --sage: #7C8A6E;
  --ink: #2E2A24; --driftwood: #6B6459; --terracotta: #B05C2E;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body { background: var(--porcelain); color: var(--ink); font: 400 16px/1.7 var(--sans); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(40px, 7vw, 68px); font-weight: 300; }
h2 { font-size: clamp(30px, 4.5vw, 44px); }
h3 { font-size: 24px; }
p { max-width: 62ch; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 10vw, 150px) 0; }
.section-sand { background: var(--sand); }
.eyebrow { font: 500 11px/1 var(--sans); letter-spacing: 3px; text-transform: uppercase; color: var(--sage); }
.muted { color: var(--driftwood); }
.price { color: var(--sage); font-weight: 500; }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 32px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }
figure.card { overflow: hidden; }
[data-occasions] figure.card img, [data-customworks] figure.card img, [data-makers] figure.card img {
  aspect-ratio: 4 / 5; width: 100%; height: auto; object-fit: cover; }
[data-craft-strip] figure.card img { aspect-ratio: 1 / 1; width: 100%; height: auto; object-fit: cover; }
[data-gallery] { grid-template-columns: repeat(3, 1fr); gap: 20px; }
[data-gallery] figure.card img { aspect-ratio: 1 / 1; width: 100%; height: auto; object-fit: cover; }
@media (max-width: 560px) { [data-gallery] { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink);
  color: var(--porcelain); padding: 10px 18px; font: 500 13px/1 var(--sans); text-decoration: none; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; opacity: 1; transform: none; } }
