/* ========================================
   Blue Plumeria — Style Sheet
   Palette drawn from the studio's own logo art:
   dusty slate-blue, gold leaf, warm bone, ink.
   ======================================== */

/* Fonts — Cormorant Garamond (display serif) + Outfit (body) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Custom Properties ── */
:root {
  /* Warm neutrals, tuned to the wood-and-silk product photography */
  --paper:        #FCFAF6;   /* main background — warm white */
  --bone:         #F5F0E7;   /* alt surface — warm cream */
  --sand:         #ECE4D6;   /* deeper neutral */
  --ink:          #1C1712;   /* warm near-black — body + dark surfaces */
  --ink-soft:     #3A332B;
  --muted:        #8A7F6E;   /* warm gray for secondary text */
  --border:       #E4DBCC;   /* warm hairline */

  /* Brand accents — one dominant metallic (gold), slate as support */
  --gold:         #B08D4F;   /* leaf gold, desaturated */
  --gold-deep:    #8C6D37;
  --slate:        #6E8CA6;   /* the logo's dusty blue */
  --slate-deep:   #47617A;

  /* Tinted shadows carry the warm hue instead of pure black */
  --shadow-sm:  0 1px 2px rgba(40,30,15,0.05), 0 2px 8px rgba(40,30,15,0.04);
  --shadow-md:  0 4px 14px rgba(40,30,15,0.08), 0 12px 40px rgba(40,30,15,0.07);
  --shadow-lg:  0 20px 60px rgba(28,23,18,0.18);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', 'Helvetica Neue', Arial, sans-serif;

  --max-width:    1240px;
  --header-height: 132px;
  --nav-height:   46px;
  --ease:         cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fixed grain overlay — breaks digital flatness on every surface */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--gold-deep);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
  color: inherit;
}

/* Visible focus for keyboard users — accessibility, not optional */
:focus-visible {
  outline: 2px solid var(--slate);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  color: #fff;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: center;
  margin-bottom: 3.25rem;
  color: var(--ink);
}

/* Small overline label — the recurring editorial device */
.label-text,
.showcase-label,
.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.overline::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ── Layout Utilities ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-padding {
  padding: 6rem 0 6.5rem;  /* optically heavier bottom */
}

.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 38px;
  transition: transform 0.15s var(--ease),
              background 0.3s var(--ease),
              color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
  cursor: pointer;
  border: none;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--gold-deep);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-link {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-link:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* ── Sticky Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.site-header .logo {
  height: 96px;
  width: auto;
  transition: opacity 0.25s var(--ease);
}
.site-header a:hover .logo { opacity: 0.7; }

/* ── Navigation Bar ── */
.site-nav {
  background: var(--ink);
  height: var(--nav-height);
  position: sticky;
  top: var(--header-height);
  z-index: 99;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E9E2D6;
  transition: color 0.25s var(--ease);
  padding: 0.5rem 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cart {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #E9E2D6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  transition: color 0.25s var(--ease);
}
.nav-cart:hover { color: var(--gold); }
.nav-cart svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}
.cart-count {
  background: var(--gold);
  color: var(--ink);
  font-size: 0.6rem;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 0.5rem;
  position: absolute; left: 2rem; top: 50%;
  transform: translateY(-50%);
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: #E9E2D6;
  margin: 5px 0;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ── Hero — dark ambient wash that lets the watercolor mark glow ── */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 7rem 2rem 7.5rem;
  background:
    radial-gradient(120% 90% at 22% 15%, rgba(110,140,166,0.30), transparent 55%),
    radial-gradient(90% 80% at 82% 85%, rgba(176,141,79,0.22), transparent 55%),
    linear-gradient(160deg, #221C16 0%, #14100C 60%, #1B1611 100%);
  color: var(--paper);
}
.hero .hero-logo {
  position: relative;
  max-width: 760px;
  width: 100%;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.45));
}
.hero .hero-tagline {
  position: relative;
  color: rgba(245,240,231,0.72);
  margin-bottom: 2.75rem;
}
.hero .btn-primary {
  position: relative;
  background: var(--paper);
  color: var(--ink);
}
.hero .btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ── Category Tiles ── */
.category-tiles { background: var(--paper); }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tile { text-align: center; cursor: pointer; }
.tile-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border-radius: 2px;
  transition: transform 0.5s var(--ease), box-shadow 0.4s var(--ease);
}
.tile:hover .tile-image { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ── Product Grid (retained) ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem 2.5rem;
}
.product-card { text-align: center; }
.product-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1.1rem;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.4s var(--ease);
}
.product-card-image:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.product-card-price {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.9rem;
}
.product-card .snipcart-add-item {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 26px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  opacity: 0;
}
.product-card:hover .snipcart-add-item { opacity: 1; }
.product-card .snipcart-add-item:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ── Product Showcase — alternating asymmetric editorial rows ── */
.showcase-section {
  background: var(--paper);
}
.showcase-set {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 1080px;
  margin: 0 auto 7rem;
}
.showcase-set:last-child { margin-bottom: 0; }

/* Alternate the media side every other row */
.showcase-set:nth-of-type(even) .showcase-media { order: 2; }

.showcase-info { max-width: 30ch; }
.showcase-set:nth-of-type(even) .showcase-info { margin-left: auto; }

.showcase-label { display: block; margin-bottom: 1rem; }

.showcase-name {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 0.9rem;
}
.showcase-price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--gold-deep);
  font-variant-numeric: tabular-nums;
  margin-bottom: 2rem;
}
.showcase-price::before {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

/* Media column: slider + dots live together here */
.showcase-media { position: relative; }

.showcase-slider {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow-md);
  background: var(--bone);
}
.showcase-slider img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: none;
}
.showcase-slider img.active { display: block; }

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252,250,246,0.9);
  backdrop-filter: blur(4px);
  border: none;
  width: 42px; height: 42px;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
  z-index: 2;
}
.slider-btn:hover { background: #fff; }
.slider-btn:active { transform: translateY(-50%) scale(0.92); }
.slider-btn.prev { left: 0.9rem; }
.slider-btn.next { right: 0.9rem; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.ai-note {
  margin: 0.85rem auto 0;
  max-width: 42ch;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--muted);
  text-align: center;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.slider-dot.active { background: var(--gold); transform: scale(1.25); }

.showcase-cta { margin-top: 0; }

/* ── Featured Section ── */
.featured { background: var(--paper); }
.view-all-wrap { text-align: center; margin-top: 3rem; }

/* ── About Teaser ── */
.about-teaser { background: var(--bone); }
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.teaser-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-md);
}
.teaser-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 300;
  margin: 0.8rem 0 1.5rem;
}
.teaser-content p {
  font-size: 1rem;
  line-height: 1.85;
  max-width: 60ch;
  margin-bottom: 2rem;
  color: var(--ink-soft);
}

/* ── Shop Page ── */
.shop-header {
  background: var(--bone);
  text-align: center;
  padding: 4.5rem 2rem 3.5rem;
}
.shop-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}
.product-count {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── Filter Bar ── */
.filter-bar {
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  background: var(--paper);
}
.filter-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.filter-tab {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: none; border: none;
  padding: 1.1rem 0.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s var(--ease);
}
.filter-tab:hover { color: var(--ink); }
.filter-tab.active { color: var(--ink); border-bottom-color: var(--gold); }

.sort-bar { display: flex; justify-content: flex-end; padding: 1.5rem 0 0; }
.sort-select {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.55rem 2rem 0.55rem 1rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%231C1712' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* ── About Page ── */
.about-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 2rem 6.5rem;
  background:
    radial-gradient(100% 90% at 25% 20%, rgba(110,140,166,0.28), transparent 55%),
    radial-gradient(90% 80% at 80% 90%, rgba(176,141,79,0.20), transparent 55%),
    linear-gradient(160deg, #221C16 0%, #14100C 65%);
  color: var(--paper);
}
.about-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.story-section { background: var(--paper); }
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.story-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: var(--shadow-md);
}
.story-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 300;
  margin: 0.8rem 0 1.5rem;
}
.story-content p {
  font-size: 1rem;
  line-height: 1.9;
  max-width: 62ch;
  margin-bottom: 1.3rem;
  color: var(--ink-soft);
}

/* Materials */
.materials-section { background: var(--bone); }
.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}
.material-item {
  padding: 2.25rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.material-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.material-item h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.material-item p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--muted);
}
.material-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

/* ── Contact Page ── */
.contact-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 6rem 2rem 6.5rem;
  background:
    radial-gradient(100% 90% at 25% 20%, rgba(110,140,166,0.28), transparent 55%),
    radial-gradient(90% 80% at 80% 90%, rgba(176,141,79,0.20), transparent 55%),
    linear-gradient(160deg, #221C16 0%, #14100C 65%);
  color: var(--paper);
}
.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  margin-bottom: 1.4rem;
  border-radius: 2px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--slate);
  box-shadow: 0 0 0 3px rgba(110,140,166,0.15);
}
.contact-form textarea { min-height: 170px; resize: vertical; }

/* Inline validation states (set by JS) */
.contact-form input.invalid,
.contact-form textarea.invalid {
  border-color: #B4553F;
  box-shadow: 0 0 0 3px rgba(180,85,63,0.12);
}
.field-error {
  display: none;
  margin: -1rem 0 1.2rem;
  font-size: 0.78rem;
  color: #B4553F;
}
.field-error.show { display: block; }

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--slate-deep);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.contact-info h3 + p { margin-top: -0.4rem; }
.contact-info p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
}
.contact-info a { color: var(--gold-deep); }
.contact-info a:hover { color: var(--ink); }

.social-links { display: flex; gap: 1.1rem; margin-top: 1.25rem; }
.social-links a {
  color: var(--ink);
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease);
}
.social-links a:hover {
  color: var(--gold-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.social-links svg { width: 17px; height: 17px; fill: currentColor; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: #B7AE9F;
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: #B7AE9F;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  width: fit-content;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.88rem; line-height: 1.75; color: #9a917f; }

/* footer social buttons sit on dark — override the light border */
.site-footer .social-links a {
  color: #B7AE9F;
  border-color: rgba(255,255,255,0.14);
}
.site-footer .social-links a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: #746b5c;
}

/* ── Scroll-reveal (progressive enhancement; base state visible) ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem 2rem; }
}

@media (max-width: 860px) {
  .showcase-set {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 460px;
    text-align: center;
    margin-bottom: 4.5rem;
  }
  .showcase-set:nth-of-type(even) .showcase-media { order: 0; }
  .showcase-info { max-width: none; }
  .showcase-set:nth-of-type(even) .showcase-info { margin-left: 0; }
  .showcase-price::before { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section-padding { padding: 4rem 0 4.5rem; }
  .hero { padding: 4.5rem 1.5rem 5rem; }
  .hero .hero-logo { max-width: 420px; }

  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 2rem; width: 100%; text-align: center; }
  .nav-links a::after { display: none; }
  .nav-cart { right: 1.25rem; }

  .tiles-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .product-card .snipcart-add-item { opacity: 1; }

  .teaser-grid,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .teaser-content p, .story-content p { max-width: none; }

  .materials-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; text-align: center; }
  .footer-col a { margin-left: auto; margin-right: auto; }
  .social-links { justify-content: center; }
  .site-footer .social-links { justify-content: center; }

  .filter-bar .container { gap: 1.2rem; }
}

@media (max-width: 480px) {
  :root { --header-height: 92px; }
  .site-header .logo { height: 64px; }
  .container { padding: 0 1.4rem; }
  .section-padding { padding: 3rem 0 3.5rem; }
  .hero { padding: 3.25rem 1.2rem 3.75rem; }
  .hero .hero-logo { max-width: 300px; }
  .product-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .materials-grid { grid-template-columns: 1fr; }
}

/* ── Motion preferences ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── Shop group headings (tier + collection) ── */
/* Tier banner ("The Signature Collection") reuses .section-heading;
   trim its base margin since a collection heading follows it. */
.tier-heading {
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
/* Collection sub-heading — centered gold overline with flanking rules. */
.collection-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3.5rem 0 2.75rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
}
.collection-heading::before,
.collection-heading::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

/* ── Snipcart checkout ── */
/* Snipcart's cart/checkout overlay is position:fixed at z-index 20 and scrolls
   internally. The site header + nav are sticky at z-index 100/99, so they paint
   on top of the overlay and cover its first fields (Full name, Email). While
   Snipcart is open it sets .snipcart-cart--opened on <html> — drop the header
   and nav below the overlay so the full checkout is visible. */
html.snipcart-cart--opened .site-header,
html.snipcart-cart--opened .site-nav {
  z-index: 1;
}
