/* =====================================================================
   LUMA-ISLA STUDIOS · Shared stylesheet  (v2 — modern editorial refresh)
   Same navy + gold + cream palette, rebuilt for an airier, gallery-first feel.
   Display headings in Fraunces, UI/body in Inter.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette (lifted from live luma-isla.com computed styles) */
  --bg:           #fdf8f0;
  --bg-2:         #f8f1e3;   /* nudged closer to --bg so sections stop "banding" */
  --bg-3:         #f2e9d6;
  --ink:          #2a1f0e;
  --ink-2:        #5a4a32;
  --ink-3:        #8a7a5a;
  --rule:         rgba(42, 31, 14, 0.10);
  --rule-strong:  rgba(42, 31, 14, 0.16);

  --navy:         #0e1a2b;
  --navy-2:       #08121e;
  --navy-3:       #1a2a3f;

  --gold:         #d4a23e;
  --gold-2:       #b08624;
  --gold-3:       #e8c878;
  --gold-tint:    rgba(212, 162, 62, 0.12);

  --bronze:       #8a5a2b;
  --copper:       #b87333;
  --patina:       #5a8a7f;

  /* Type */
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  /* Fluid type scale — clamp(min, preferred, max) */
  --t-xs:   clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);
  --t-sm:   clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --t-md:   clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --t-lg:   clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  --t-xl:   clamp(1.4rem, 1.2rem + 1vw, 1.8rem);
  --t-2xl:  clamp(1.8rem, 1.4rem + 2vw, 2.6rem);
  --t-3xl:  clamp(2.2rem, 1.6rem + 3vw, 3.6rem);
  --t-4xl:  clamp(2.8rem, 1.8rem + 4.5vw, 5rem);
  --t-5xl:  clamp(3.2rem, 2rem + 5.5vw, 5.8rem);

  /* Fluid spacing */
  --s-1:  clamp(0.4rem, 0.3rem + 0.4vw, 0.6rem);
  --s-2:  clamp(0.8rem, 0.6rem + 0.8vw, 1.2rem);
  --s-3:  clamp(1.4rem, 1rem + 1.4vw, 2rem);
  --s-4:  clamp(2.2rem, 1.6rem + 2.4vw, 3.5rem);
  --s-5:  clamp(3.5rem, 2.4rem + 4vw, 5.5rem);
  --s-6:  clamp(5rem, 3.5rem + 6vw, 8.5rem);
  --s-7:  clamp(7rem, 5rem + 8vw, 11rem);

  /* Layout */
  --page-max: 1320px;
  --reader-max: 56ch;
  --radius:    18px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  /* Elevation */
  --shadow-sm: 0 2px 10px rgba(42, 31, 14, 0.05);
  --shadow-md: 0 18px 40px rgba(42, 31, 14, 0.08);
  --shadow-lg: 0 34px 70px rgba(14, 26, 43, 0.22);

  /* Motion */
  --ease:  cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-weight: 400;
  font-size: var(--t-md);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-optical-sizing: auto;
}
p, li, input, textarea, select, button, .meta, .tag { font-family: var(--font); }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
img, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--gold); color: var(--navy-2); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout primitives ---------- */
.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}
.wrap--narrow { max-width: 940px; }
.wrap--text   { max-width: 720px; }

.section { padding: var(--s-6) 0; position: relative; }
.section--tight { padding: var(--s-5) 0; }

/* Hairline separators replace heavy color banding */
.section + .section.bg-cream,
.section.bg-cream + .section.bg-cream { border-top: 1px solid var(--rule); }

/* ---------- Top ribbon ---------- */
.ribbon {
  background: var(--navy);
  color: var(--bg);
  text-align: center;
  font-size: var(--t-xs);
  letter-spacing: 0.05em;
  padding: 0.72rem 1rem;
  font-weight: 400;
}
.ribbon strong { color: var(--gold-3); font-weight: 600; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 26, 43, 0.86);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  color: var(--bg);
  border-bottom: 1px solid rgba(212, 162, 62, 0.14);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem clamp(1.25rem, 3vw, 3rem);
  max-width: var(--page-max); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--t-md);
  letter-spacing: 0.005em;
}
.brand-mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
/* Footer logo on the dark footer */
.footer-brand .brand-mark { width: 44px; height: 44px; margin-bottom: 0.8rem; }
.nav-links {
  display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem);
}
.nav-links a {
  font-size: var(--t-sm);
  color: var(--bg);
  opacity: 0.82;
  font-weight: 500;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -5px;
  height: 1.5px; background: var(--gold-3);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-links a:not(.nav-cta):hover { opacity: 1; color: var(--gold-3); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-3); opacity: 1; }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold);
  color: var(--navy-2) !important;
  padding: 0.58rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--t-sm) !important;
  opacity: 1 !important;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav-cta:hover { background: var(--gold-3); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(212,162,62,0.3); color: var(--navy-2) !important; }
.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--bg);
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; top: 100%; right: clamp(1.25rem, 3vw, 3rem); flex-direction: column; align-items: stretch; background: var(--navy); padding: 1rem 1.5rem; border-radius: 18px; border: 1px solid rgba(212,162,62,0.18); min-width: 230px; gap: 0.3rem; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.6rem 0.4rem; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 0.4rem; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-size: var(--t-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--navy-2); }
.btn--gold:hover { background: var(--gold-3); box-shadow: 0 12px 28px rgba(212,162,62,0.32); }
.btn--navy { background: var(--navy); color: var(--bg); }
.btn--navy:hover { background: var(--navy-3); color: var(--bg); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--rule-strong); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }
.btn--ghost-light { background: transparent; color: var(--bg); border: 1px solid rgba(253, 248, 240, 0.35); }
.btn--ghost-light:hover { border-color: var(--gold-3); color: var(--gold-3); }
.btn .arrow { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font);
  font-size: var(--t-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-2);
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
}
.eyebrow.eyebrow--center::before { display: none; }
.eyebrow.on-dark { color: var(--gold-3); }

/* ---------- Section headers ---------- */
.s-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: var(--s-4);
}
@media (max-width: 800px) {
  .s-head { grid-template-columns: 1fr; gap: 1.25rem; }
}
.s-head h2 {
  font-size: var(--t-3xl);
  max-width: 22ch;
}
.s-head h2 .accent { color: var(--gold-2); font-style: italic; font-weight: 500; }
.s-head .lede { color: var(--ink-2); font-size: var(--t-md); max-width: 40ch; }
.s-head--center { text-align: center; grid-template-columns: 1fr; max-width: 760px; margin-left: auto; margin-right: auto; }
.s-head--center h2, .s-head--center .lede, .s-head--center .eyebrow { margin-left: auto; margin-right: auto; }
.s-head--center h2 { margin-bottom: 1rem; }

/* ---------- Media wrapper with graceful fallback ----------
   The gradient lives on the container; the <img> sits on top.
   If the image file is missing, `onerror="this.remove()"` drops it
   and the gradient (with its label) shows instead — never a broken icon. */
.media { position: relative; overflow: hidden; }
.media > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: transform 0.8s var(--ease);
}

/* ---------- HERO (shared base, centered — used by inner pages) ---------- */
.hero {
  background:
    radial-gradient(ellipse at 75% 55%, rgba(212, 162, 62, 0.22), transparent 55%),
    radial-gradient(ellipse at 15% 30%, rgba(95, 179, 209, 0.06), transparent 45%),
    var(--navy);
  color: var(--bg);
  padding: var(--s-7) clamp(1.25rem, 3vw, 3rem) var(--s-6);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212, 162, 62, 0.05) 1px, transparent 1px);
  background-size: 5px 5px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}
.hero-inner {
  max-width: 1000px; margin: 0 auto;
  text-align: center;
  position: relative; z-index: 1;
}
.hero h1 {
  font-size: var(--t-5xl);
  color: var(--bg);
  font-weight: 400;
  margin: 1.2rem 0 0.4rem;
  letter-spacing: -0.015em;
}
.hero h1 .accent { color: var(--gold-3); font-style: italic; }
.hero .sub {
  font-size: var(--t-xl);
  color: var(--bg);
  opacity: 0.92;
  font-weight: 400;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}
.hero-pillars {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: center;
  margin: 1.5rem 0 2.5rem;
  font-size: var(--t-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 248, 240, 0.85);
}
.hero-pillars span { position: relative; }
.hero-pillars span:not(:last-child)::after {
  content: '◆';
  position: absolute; right: -0.95rem; top: 50%; transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.55em;
}
.hero-ctas { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.hero--page { padding: var(--s-6) clamp(1.25rem, 3vw, 3rem) var(--s-5); }
.hero--page h1 { font-size: var(--t-4xl); margin-top: 0.5rem; }
.hero--page .sub { font-size: var(--t-lg); }

/* ---------- HOME HERO (editorial split with image) ---------- */
.hero--home { padding-block: var(--s-6) var(--s-6); }
.hero-grid {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  text-align: left;
  position: relative; z-index: 1;
}
.hero-grid .hero-copy { max-width: 36rem; }
.hero--home h1 {
  font-size: var(--t-4xl);
  margin: 1rem 0 1.2rem;
  line-height: 1.02;
}
.hero--home .sub {
  font-size: var(--t-lg);
  margin-bottom: 0.4rem;
  opacity: 0.9;
}
.hero--home .hero-pillars { justify-content: flex-start; margin: 1.6rem 0 2rem; }
.hero--home .hero-ctas { justify-content: flex-start; }
.hero-figure {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(212,162,62,0.25);
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(ellipse at 35% 30%, rgba(212,162,62,0.4), transparent 60%),
    linear-gradient(150deg, var(--bronze) 0%, var(--copper) 45%, var(--navy-2) 100%);
}
.hero-figure > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.hero-figure .figure-label {
  position: absolute; left: 1.2rem; bottom: 1.2rem; right: 1.2rem; z-index: 3;
  font-size: var(--t-xs); letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bg); font-weight: 600;
  border-top: 1px solid rgba(253,248,240,0.3); padding-top: 0.7rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-badge {
  position: absolute; z-index: 3;
  top: 1.1rem; right: 1.1rem;
  background: rgba(8,18,30,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212,162,62,0.4);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  text-align: center;
}
.hero-badge .n { font-family: var(--font-display); font-size: var(--t-xl); color: var(--gold-3); line-height: 1; }
.hero-badge .l { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(253,248,240,0.8); margin-top: 0.25rem; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-grid .hero-copy { max-width: 100%; margin: 0 auto; }
  .hero--home .hero-pillars, .hero--home .hero-ctas { justify-content: center; }
  .hero-figure { max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ---------- Trust strip ---------- */
.trust {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.trust-inner {
  max-width: var(--page-max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.25rem, 3vw, 3rem);
  gap: 1.5rem;
}
.trust-item { display: flex; flex-direction: column; gap: 0.2rem; }
.trust-item .k { font-family: var(--font-display); font-size: var(--t-lg); color: var(--ink); }
.trust-item .v { font-size: var(--t-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
@media (max-width: 720px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
}

/* ---------- Soft section variants ---------- */
.bg-cream    { background: var(--bg); }
.bg-cream-2  { background: var(--bg-2); }
.bg-cream-3  { background: var(--bg-3); }
.bg-navy     { background: var(--navy); color: var(--bg); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--bg); }
.bg-navy p { color: rgba(253, 248, 240, 0.82); }
.fade-to-cream-2 { background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-2) 100%); }
.fade-to-navy { background: linear-gradient(to bottom, var(--bg) 0%, var(--bg-2) 30%, var(--navy) 100%); }

/* ---------- Collection cards (image-first, editorial) ---------- */
.collections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(1.1rem, 2vw, 1.8rem);
}
.collection {
  position: relative;
  aspect-ratio: 5/6;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-2);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: block;
  box-shadow: var(--shadow-sm);
}
.collection:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
/* Featured first card spans full width on the homepage gallery */
.collection--feature { grid-column: 1 / -1; aspect-ratio: 16/7; }
@media (max-width: 760px) { .collection--feature { aspect-ratio: 5/6; } }

.collection-fill, .collection .media {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s var(--ease);
}
.collection:hover .collection-fill,
.collection:hover .media > img { transform: scale(1.06); }
.fill-sacred   { background: radial-gradient(ellipse at 30% 35%, var(--bronze) 0%, var(--navy-2) 80%); }
.fill-wildlife { background: radial-gradient(ellipse at 50% 40%, var(--copper) 0%, #2d1f0a 80%); }
.fill-pet      { background: radial-gradient(ellipse at 40% 30%, var(--patina) 0%, var(--navy-2) 80%); }
.fill-fandom   { background: radial-gradient(ellipse at 50% 50%, #5a3a2a 0%, var(--navy-2) 80%); }
.fill-packout  { background: radial-gradient(ellipse at 50% 50%, #b30000 0%, #1a1a1a 80%); }
.collection-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to bottom, transparent 30%, rgba(8, 18, 30, 0.55) 65%, rgba(8, 18, 30, 0.93) 100%);
}
.collection-meta {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--bg);
}
.collection-meta .num {
  font-size: var(--t-xs); letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-3); margin-bottom: 0.4rem;
}
.collection-meta h3 { font-family: var(--font-display); font-weight: 500; font-size: var(--t-xl); color: var(--bg); margin-bottom: 0.5rem; }
.collection-meta p { font-size: var(--t-sm); color: rgba(253, 248, 240, 0.85); line-height: 1.55; max-width: 46ch; }
.collection-meta .arrow-link {
  margin-top: 1rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--gold-3); font-size: var(--t-xs); letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  transition: gap 0.25s var(--ease);
}
.collection:hover .arrow-link { gap: 0.8rem; }

/* ---------- Piece gallery ---------- */
.pieces {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.2rem, 2vw, 2rem);
}
.piece { display: block; transition: transform 0.4s var(--ease); }
.piece:hover { transform: translateY(-5px); }
.piece-image {
  aspect-ratio: 1/1.12;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-2);
  position: relative;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.piece-image > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2; transition: transform 0.7s var(--ease);
}
.piece:hover .piece-image > img { transform: scale(1.05); }
.piece-image .ph {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem; text-align: center;
  font-size: var(--t-sm); font-weight: 500; color: var(--gold-3);
  background:
    radial-gradient(ellipse at 35% 30%, rgba(212, 162, 62, 0.16), transparent 60%),
    var(--navy-2);
}
.piece-image .view {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 1rem;
  background: linear-gradient(to top, rgba(8,18,30,0.6), transparent 55%);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.piece:hover .view { opacity: 1; }
.piece-image .view span {
  font-size: var(--t-xs); letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--bg);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.piece .tag { font-size: var(--t-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; margin-bottom: 0.3rem; }
.piece h4 { font-family: var(--font-display); font-size: var(--t-lg); margin-bottom: 0.25rem; font-weight: 500; line-height: 1.2; }
.piece .meta { font-size: var(--t-sm); color: var(--ink-2); }

/* ---------- Soft cards ---------- */
.soft-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.soft-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Card grid (process teasers, story, commissions) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 500; font-size: var(--t-md);
  margin-bottom: 1.2rem; font-style: italic;
}
.step h4 { font-size: var(--t-lg); margin-bottom: 0.5rem; font-weight: 500; }
.step p { color: var(--ink-2); font-size: var(--t-sm); }

/* ---------- Horizontal process flow (homepage) ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  position: relative;
}
.flow::before {
  content: '';
  position: absolute; top: 26px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 0;
}
.flow-step { position: relative; z-index: 1; }
.flow-step .node {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--gold);
  color: var(--gold-2); font-family: var(--font-display); font-style: italic;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--t-md); margin-bottom: 1.1rem;
  box-shadow: 0 0 0 6px var(--bg);
}
.flow-step h4 { font-size: var(--t-lg); margin-bottom: 0.45rem; font-weight: 500; }
.flow-step p { color: var(--ink-2); font-size: var(--t-sm); }
@media (max-width: 820px) {
  .flow { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .flow::before { display: none; }
}
@media (max-width: 480px) { .flow { grid-template-columns: 1fr; } }

/* ---------- Two-column blocks ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.two-col--narrow { grid-template-columns: 0.9fr 1.1fr; }
.two-col--wide { grid-template-columns: 1.2fr 1fr; }
@media (max-width: 900px) {
  .two-col, .two-col--narrow, .two-col--wide { grid-template-columns: 1fr; gap: 2.5rem; }
}
.two-col h2 { font-size: var(--t-3xl); margin-bottom: 1.5rem; }
.two-col h2 .accent { color: var(--gold-2); font-style: italic; font-weight: 500; }
.two-col p { color: var(--ink-2); font-size: var(--t-md); margin-bottom: 1.1rem; max-width: 56ch; }
.bg-navy .two-col h2 { color: var(--bg); }
.bg-navy .two-col h2 .accent { color: var(--gold-3); }
.bg-navy .two-col p { color: rgba(253, 248, 240, 0.82); }

/* Decorative / photo image blocks (drop-in ready) */
.deco-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 30% 30%, rgba(212, 162, 62, 0.35), transparent 60%),
    linear-gradient(135deg, var(--bronze) 0%, var(--copper) 50%, var(--navy-2) 100%);
  position: relative;
  border: 1px solid var(--rule-strong);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.deco-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.deco-image .tag-label {
  position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem; z-index: 3;
  font-size: var(--t-xs); letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bg);
  border-top: 1px solid rgba(253, 248, 240, 0.3);
  padding-top: 0.8rem; font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.deco-image--workshop {
  background:
    radial-gradient(ellipse at 35% 30%, rgba(212, 162, 62, 0.3), transparent 60%),
    linear-gradient(135deg, var(--bronze), var(--navy-2) 75%);
}

/* ---------- Long-form prose ---------- */
.prose { max-width: 56ch; }
.prose h2 { font-size: var(--t-2xl); margin: var(--s-3) 0 1rem; }
.prose h3 { font-size: var(--t-lg); margin: var(--s-3) 0 0.8rem; color: var(--gold-2); }
.prose p { margin-bottom: 1.1rem; color: var(--ink-2); font-size: var(--t-md); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul { padding-left: 0; list-style: none; margin: 1rem 0 1.5rem; }
.prose ul li { padding: 0.7rem 0 0.7rem 1.6rem; border-bottom: 1px solid var(--rule); position: relative; color: var(--ink-2); }
.prose ul li::before { content: '◆'; position: absolute; left: 0; top: 0.85rem; color: var(--gold); font-size: 0.7em; }
.prose blockquote {
  margin: 1.5rem 0; padding: 1.2rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: var(--bg-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--ink-2);
}

/* ---------- FAQ ---------- */
.faq-jump {
  background: var(--bg); border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  margin: var(--s-3) 0 var(--s-4);
}
.faq-jump h5 { font-size: var(--t-xs); letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); font-weight: 700; margin-bottom: 1.2rem; }
.faq-jump-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 0.4rem 1.5rem; }
.faq-jump a { display: block; padding: 0.55rem 0; color: var(--gold-2); font-size: var(--t-sm); font-weight: 500; }
.faq-jump a:hover { color: var(--ink); }
.faq-topic { margin-top: var(--s-4); scroll-margin-top: 6rem; }
.faq-topic > h2 { font-size: var(--t-2xl); border-bottom: 1px solid var(--rule-strong); padding-bottom: 1rem; margin-bottom: 1.5rem; }
details.faq-item {
  border: 1px solid var(--rule); border-radius: var(--radius);
  margin-bottom: 0.7rem; overflow: hidden; background: var(--bg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
details.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow-sm); }
details.faq-item > summary {
  list-style: none; cursor: pointer;
  padding: clamp(1rem, 1.8vw, 1.3rem) clamp(1.2rem, 2vw, 1.8rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; font-size: var(--t-md); color: var(--ink);
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::after {
  content: '+'; font-size: 1.4rem; color: var(--gold-2); font-weight: 400;
  transition: transform 0.3s var(--ease); flex-shrink: 0;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); }
details.faq-item .faq-body { padding: 0 clamp(1.2rem, 2vw, 1.8rem) clamp(1.2rem, 2vw, 1.6rem); color: var(--ink-2); font-size: var(--t-md); line-height: 1.65; }
details.faq-item .faq-body p { margin-bottom: 0.9rem; }
details.faq-item .faq-body p:last-child { margin-bottom: 0; }
details.faq-item .faq-body ul { list-style: none; padding-left: 0; margin: 0.6rem 0 1rem; }
details.faq-item .faq-body ul li { padding: 0.4rem 0 0.4rem 1.4rem; position: relative; }
details.faq-item .faq-body ul li::before { content: '◆'; position: absolute; left: 0; top: 0.55rem; color: var(--gold); font-size: 0.65em; }
details.faq-item .faq-body strong { color: var(--ink); font-weight: 600; }

/* ---------- Intro callout ---------- */
.callout {
  background: var(--bg-2); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: clamp(1.2rem, 2vw, 1.6rem) clamp(1.4rem, 2.5vw, 2rem);
  margin: var(--s-3) 0; color: var(--ink-2);
}
.callout strong { color: var(--ink); }
.callout p { margin-bottom: 0.8rem; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- Etsy CTA banner ---------- */
.etsy-banner {
  background: radial-gradient(ellipse at 75% 50%, rgba(212, 162, 62, 0.2), transparent 55%), var(--navy);
  color: var(--bg);
  padding: var(--s-6) clamp(1.25rem, 3vw, 3rem);
  text-align: center; position: relative; overflow: hidden;
}
.etsy-banner-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.etsy-banner h2 { font-size: var(--t-3xl); color: var(--bg); margin-bottom: 1rem; }
.etsy-banner h2 .accent { color: var(--gold-3); font-style: italic; font-weight: 500; }
.etsy-banner p { color: rgba(253, 248, 240, 0.85); font-size: var(--t-md); margin-bottom: 2rem; max-width: 38rem; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: var(--bg); padding: var(--s-5) clamp(1.25rem, 3vw, 3rem) 2rem; }
.footer-grid {
  max-width: var(--page-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(253, 248, 240, 0.1);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-newsletter { grid-column: 1 / -1; } }
.footer-brand h3 { color: var(--bg); font-size: var(--t-lg); margin-bottom: 0.8rem; font-weight: 500; }
.footer-brand p { color: rgba(253, 248, 240, 0.7); font-size: var(--t-sm); max-width: 22rem; }
.footer-col h5 { color: var(--gold-3); font-size: var(--t-xs); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; font-family: var(--font); }
.footer-col a { display: block; padding: 0.35rem 0; color: rgba(253, 248, 240, 0.72); font-size: var(--t-sm); }
.footer-col a:hover { color: var(--gold-3); }
.footer-newsletter .sub { color: rgba(253, 248, 240, 0.7); font-size: var(--t-sm); margin-bottom: 1rem; }
.newsletter-form { display: flex; border: 1px solid rgba(253, 248, 240, 0.2); border-radius: 999px; overflow: hidden; background: rgba(253, 248, 240, 0.04); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 0.85rem 1.1rem; color: var(--bg); font-size: var(--t-sm); outline: none; }
.newsletter-form input::placeholder { color: rgba(253, 248, 240, 0.4); }
.newsletter-form button { background: var(--gold); color: var(--navy-2); padding: 0 1.4rem; font-weight: 700; font-size: var(--t-xs); letter-spacing: 0.1em; text-transform: uppercase; }
.newsletter-form button:hover { background: var(--gold-3); }
.footer-bottom { max-width: var(--page-max); margin: 0 auto; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: var(--t-xs); color: rgba(253, 248, 240, 0.5); }
.footer-bottom .made-in { color: var(--gold-3); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .media > img, .collection-fill, .piece-image > img { transition: none; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.muted  { color: var(--ink-2); }
.gold   { color: var(--gold-2); }
.divider { border: none; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); margin: var(--s-4) auto; max-width: 200px; }
.ornament { text-align: center; color: var(--gold); font-size: 0.8rem; letter-spacing: 0.8em; margin-bottom: 1rem; }
