/* =========================================================
   ly. — Laura Young
   Shared tokens, layout primitives, and components.
   ========================================================= */

:root{
  /* Palette — cream + dusty mauve/lavender */
  --cream:        #FBEEDD;
  --cream-soft:   #FDF5EA;
  --cream-deep:   #F2E2CB;
  --paper:        #FFFBF4;

  --mauve-50:     #F4E2EE;
  --mauve-100:    #E8CCE0;
  --mauve-200:    #D9B6CF;
  --mauve-300:    #C7A4BD;   /* logo bg */
  --mauve-400:    #A87CA0;
  --mauve-600:    #6B4862;

  --ink:          #28231F;
  --ink-soft:     #6E665C;
  --ink-mute:     #9A9085;
  --line:         #E5D6C0;
  --line-soft:    #EFE3D0;

  /* Accents pulled from the watercolors */
  --splash-pink:  #E984B6;
  --splash-lime:  #B6D67A;
  --splash-violet:#7A4E94;
  --splash-sky:   #87C4D6;

  /* Type */
  --font-display: "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --font-body:    "Manrope", "Helvetica Neue", system-ui, sans-serif;
  --font-script:  "Sacramento", "Snell Roundhand", cursive;

  /* Radii & shadow */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
  --shadow-card: 0 1px 2px rgba(40,35,31,0.04), 0 18px 40px -22px rgba(40,35,31,0.18);
  --shadow-hover: 0 1px 2px rgba(40,35,31,0.05), 0 28px 60px -22px rgba(40,35,31,0.25);

  /* Layout */
  --gutter: clamp(20px, 4vw, 56px);
  --max:    1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }
a { color: inherit; }

/* Typography */
.eyebrow{
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-soft);
}
.h-display{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
  font-size: clamp(44px, 8vw, 112px);
  margin: 0;
  text-wrap: balance;
}
.h-1{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.05;
  font-size: clamp(34px, 4.6vw, 60px);
  margin: 0;
  text-wrap: balance;
}
.h-2{
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.1;
  font-size: clamp(26px, 2.6vw, 36px);
  margin: 0;
}
.h-3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.005em;
  margin: 0;
}
.lede{
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.65;
  color: var(--ink);
}
.muted{ color: var(--ink-soft); }
.tiny{ font-size: 13px; letter-spacing: 0.04em; color: var(--ink-soft); }

/* Layout primitives */
.wrap{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section{ padding: clamp(56px, 8vw, 120px) 0; }
.section-sm{ padding: clamp(40px, 5vw, 72px) 0; }

/* =========================================================
   Header — cream, ink text
   ========================================================= */
.site-header{
  position: sticky;
  top: 0; z-index: 50;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled{
  border-bottom-color: var(--line-soft);
  background: rgba(251, 238, 221, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
}
.nav{
  display: flex; align-items: center; gap: 32px;
  padding: 16px 0;
}
.brand{
  display: inline-flex; align-items: baseline;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.brand-script{
  font-family: var(--font-script);
  font-size: 56px;
  line-height: 0.7;
  color: var(--ink);
  letter-spacing: -0.01em;
  padding-top: 8px;
  display: inline-block;
}
.brand-script .dot{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.42em;
  letter-spacing: 0;
  color: var(--ink);
}
/* Legacy mark kept for backward compat */
.brand-mark{
  width: 38px; height: 38px;
  background: var(--ink);
  border-radius: 8px;
  display: grid; place-items: center;
  color: var(--cream);
}
.brand-mark svg{ width: 22px; height: 22px; }
.brand-url{
  font-weight: 500; font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.nav-links{
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
  list-style: none;
  padding: 0; margin: 0 0 0 auto;
}
.nav-links li{ list-style: none; }
.menu{ list-style: none; }
.nav-link{
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .18s ease;
  cursor: pointer;
  position: relative;
}
.nav-link:hover{ background: var(--cream-deep); }
.nav-link[aria-current="page"]{ background: var(--cream-deep); }
.nav-link .caret{ width: 12px; height: 12px; opacity: 0.7; }
.nav-cta{
  background: var(--ink);
  color: var(--cream);
  border: 0;
  font-size: 15px; font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
  text-decoration: none;
}
.nav-cta:hover{ background: #15110d; }

/* Dropdown */
.has-menu{ position: relative; }
/* Invisible bridge across the gap between the link and the menu, so moving
   the cursor down to the menu keeps :hover and the menu stays open. */
.has-menu::after{
  content: "";
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 10px;
}
.menu{
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 10px;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 30;
}
.has-menu:hover .menu,
.has-menu:focus-within .menu{
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.menu a{
  display: block;
  text-decoration: none;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--ink);
}
.menu a small{ display: block; font-size: 12px; color: var(--ink-soft); margin-top: 2px;}
.menu a:hover{ background: var(--cream); }

.nav-toggle{
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--ink);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 500;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-primary{ background: var(--ink); color: var(--cream); }
.btn-primary:hover{ background: #15110d; }
.btn-ghost{ background: transparent; color: var(--cream); border-color: rgba(253,245,234,0.6); }
.btn-ghost:hover{ background: rgba(253,245,234,0.12); border-color: var(--cream); }
.btn-ink-ghost{ background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ink-ghost:hover{ background: var(--ink); color: var(--cream); }
.btn-ink{ background: var(--ink); color: var(--cream); }
.btn-ink:hover{ background: #15110d; }
.btn .arrow{ width: 16px; height: 16px; transition: transform .2s ease; }
.btn:hover .arrow{ transform: translateX(3px); }

/* =========================================================
   Hero
   ========================================================= */
.hero{
  position: relative;
  height: clamp(540px, 78vh, 760px);
  overflow: hidden;
  background: var(--cream);
}
.hero-art{
  position: absolute; inset: -6%;
  animation: hero-drift 48s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-art svg{
  width: 100%; height: 100%; display: block;
  transform-origin: 52% 48%;
  animation: hero-breathe 32s ease-in-out infinite;
  will-change: transform;
}
@keyframes hero-breathe {
  0%   { transform: scale(1.00) rotate(0deg); }
  50%  { transform: scale(1.05) rotate(0.5deg); }
  100% { transform: scale(1.00) rotate(0deg); }
}
@keyframes hero-drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(1.5%, -1.2%, 0); }
}
@media (prefers-reduced-motion: reduce){
  .hero-art, .hero-art svg{ animation: none; }
}
.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(40,35,31,0.04) 0%, rgba(40,35,31,0.0) 30%, rgba(40,35,31,0.18) 100%);
  pointer-events: none;
}
.hero-inner{
  position: relative; z-index: 2;
  height: 100%;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: var(--gutter);
  padding: var(--gutter) var(--gutter) clamp(40px, 6vw, 72px);
}
.hero-logo{
  font-family: var(--font-script);
  font-size: clamp(120px, 18vw, 240px);
  line-height: 0.8;
  color: var(--cream);
  margin: 0;
  padding: 0 0 18px 0;
  text-shadow: 0 2px 28px rgba(40,35,31,0.25);
}
.hero-copy{
  max-width: 460px;
  padding: 0 0 8px 0;
  justify-self: end;
  color: var(--ink);
}
.hero-copy p{
  margin: 0 0 22px;
  font-size: clamp(17px, 1.25vw, 19px);
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(253,245,234,0.55);
}
.hero-ctas{
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* =========================================================
   Intro / About preview
   ========================================================= */
.intro{
  background: var(--cream);
}
.intro-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.intro-copy .eyebrow{ margin-bottom: 28px; display: block; }
.intro-copy .h-display{ margin-bottom: 36px; }
.intro-copy p{ margin: 0 0 18px; max-width: 56ch; }
.intro-copy strong{ font-weight: 600; }
.intro-art{
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--mauve-50);
  box-shadow: var(--shadow-card);
}

/* =========================================================
   Collections (cards)
   ========================================================= */
.collections-head{
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.collections-head p{ max-width: 46ch; margin: 0; color: var(--ink-soft); }
.collections{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.collection-card{
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.collection-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.collection-art{ aspect-ratio: 4/3; overflow: hidden; }
.collection-meta{
  padding: 22px 24px 26px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.collection-meta h3{ margin: 0 0 4px; font-size: 22px; font-weight: 600; }
.collection-meta p{ margin: 0; font-size: 14px; color: var(--ink-soft); }
.collection-meta .count{
  font-size: 13px; color: var(--ink-soft);
  background: var(--cream);
  padding: 6px 10px; border-radius: var(--r-pill);
  white-space: nowrap;
}

/* =========================================================
   Works grid
   ========================================================= */
.works{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px 24px;
}
.work{
  text-decoration: none;
  color: inherit;
  display: block;
}
.work-art{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 1px 0 rgba(40,35,31,0.03), 0 14px 28px -18px rgba(40,35,31,0.20);
  transition: transform .25s ease, box-shadow .25s ease;
}
.work-art > img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  pointer-events: none;
}
.work:hover .work-art{ transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.work-art .badge{
  position: absolute; top: 12px; left: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px; font-weight: 500;
  padding: 6px 10px; border-radius: var(--r-pill);
  z-index: 2;
}
.work-art .badge.sold{ background: var(--ink); color: var(--cream); }

/* ===== Watermark =====
   Grid of 'ly.' marks, repeated, low-opacity, mix-blended over the artwork.
   Auto-added by site.js to any .work-art that contains an <img>. */
.work-art .watermark{
  position: absolute;
  inset: -8%;
  display: grid;
  place-items: center;
  transform: rotate(-22deg);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.work-art .watermark span{
  font-family: var(--font-script);
  font-size: clamp(16px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.32);
}
.work-art .watermark span .dot{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.5em;
}
/* On a small thumbnail (collection card thumb, blog post art) we use a tighter grid. */
.work-art .watermark.dense{ inset: -4%; }
.work-art .watermark.sparse span{ font-size: clamp(20px, 3vw, 36px); }
.work-meta{
  padding: 16px 4px 0;
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.work-meta h4{ margin: 0; font-size: 17px; font-weight: 500; letter-spacing: -0.005em; }
.work-meta .price{ font-size: 15px; color: var(--ink-soft); white-space: nowrap; }
.work-meta .price.sold{ color: var(--mauve-400); }
.work-sub{ font-size: 13px; color: var(--ink-soft); margin-top: 2px; padding: 0 4px; }

/* =========================================================
   Commission band
   ========================================================= */
.commission{
  background: var(--mauve-300);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.commission::before{
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 90% 30%, rgba(255,255,255,0.35), transparent 60%),
              radial-gradient(40% 40% at 10% 90%, rgba(122,78,148,0.25), transparent 60%);
  pointer-events: none;
}
.commission-inner{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.commission .h-1{ color: var(--ink); margin-bottom: 18px; }
.commission p{ max-width: 48ch; margin: 0 0 26px; }
.commission .h-display{ font-family: var(--font-script); font-size: clamp(140px, 18vw, 240px); color: var(--cream); line-height: 0.85; text-align: right; margin: 0; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer{
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-grid h5{
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mauve-100);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-grid ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a{ color: var(--cream); text-decoration: none; opacity: 0.85; }
.footer-grid a:hover{ opacity: 1; }
.footer-script{
  font-family: var(--font-script);
  font-size: 120px;
  line-height: 0.8;
  color: var(--cream);
  margin: 0 0 14px;
}
.footer-tag{ color: rgba(253,245,234,0.7); font-size: 14px; max-width: 32ch; margin: 0; }
.footer-bottom{
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(253,245,234,0.12);
  font-size: 13px;
  color: rgba(253,245,234,0.6);
  flex-wrap: wrap;
}
.subscribe{
  display: flex; gap: 8px;
  background: rgba(253,245,234,0.08);
  padding: 6px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(253,245,234,0.18);
  max-width: 380px;
}
.subscribe input{
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--cream);
  padding: 8px 14px;
  font-family: inherit; font-size: 14.5px;
}
.subscribe input::placeholder{ color: rgba(253,245,234,0.55); }
.subscribe button{
  background: var(--mauve-100);
  color: var(--ink);
  border: 0;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  font-weight: 500; cursor: pointer; font-size: 14.5px;
}
.subscribe button:hover{ background: var(--mauve-200); }

/* =========================================================
   Shop
   ========================================================= */
.shop-head{
  padding: clamp(56px, 7vw, 96px) 0 36px;
}
.shop-head .eyebrow{ margin-bottom: 16px; display: block; }
.shop-head p{ max-width: 56ch; color: var(--ink-soft); margin: 18px 0 0; font-size: 18px; }
.shop-controls{
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin-bottom: 40px;
  position: sticky;
  top: 75px;
  background: var(--cream);
  z-index: 10;
}
.chips{ display: flex; gap: 8px; flex-wrap: wrap; }
.chip{
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 14px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.chip:hover{ background: var(--cream-deep); }
.chip.is-active{ background: var(--ink); color: var(--cream); border-color: var(--ink); }
.sort{
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-soft);
}
.sort select{
  font: inherit; font-size: 14px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 8px 30px 8px 14px;
  cursor: pointer;
  color: var(--ink);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* =========================================================
   Single artwork
   ========================================================= */
.art-page{ padding: 32px 0 80px; }
.crumbs{
  display: flex; gap: 8px;
  font-size: 13.5px; color: var(--ink-soft);
  margin-bottom: 28px;
}
.crumbs a{ color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover{ color: var(--ink); }
.crumbs .sep{ opacity: 0.5; }

.art-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.art-stage{
  position: sticky; top: 92px;
}
.art-frame{
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 48px);
  display: grid; place-items: center;
  box-shadow: var(--shadow-card);
}
.art-frame .work-art{ aspect-ratio: 4/5; width: 100%; }
.art-thumbs{
  display: flex; gap: 10px; margin-top: 14px;
}
.art-thumbs button{
  border: 1px solid var(--line-soft);
  background: var(--paper);
  padding: 4px;
  border-radius: var(--r-sm);
  width: 70px; height: 70px;
  cursor: pointer;
  overflow: hidden;
}
.art-thumbs button.is-active{ border-color: var(--ink); }
.art-thumbs button > div{
  width: 100%; height: 100%; border-radius: 4px; overflow: hidden;
}

.art-info .eyebrow{ display: block; margin-bottom: 10px;}
.art-info h1{ font-size: clamp(32px, 3.4vw, 46px); margin: 0 0 8px; font-weight: 600; letter-spacing: -0.01em; }
.art-info .subtitle{ color: var(--ink-soft); font-size: 16px; margin-bottom: 24px; }
.art-info .price-row{
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 28px;
}
.art-info .price-row .price{ font-size: 30px; font-weight: 600; letter-spacing: -0.01em; }
.art-info .price-row .badge{
  background: var(--mauve-50);
  color: var(--mauve-600);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.specs{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  font-size: 14.5px;
}
.specs .row{ display: flex; justify-content: space-between; gap: 10px; }
.specs .row span:first-child{ color: var(--ink-soft); }

.qty{
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  margin-right: 12px;
  overflow: hidden;
}
.qty button{
  background: transparent; border: 0;
  width: 44px; height: 50px;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
}
.qty button:hover{ background: var(--cream-deep); }
.qty input{
  width: 36px; text-align: center;
  border: 0; background: transparent;
  font: inherit; font-size: 16px;
  outline: 0;
}
.atc-row{ display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 32px; }
.atc-row .btn{ padding: 16px 28px; }

.story h3{ font-size: 18px; margin: 0 0 10px; font-weight: 600; }
.story p{ margin: 0 0 14px; color: var(--ink-soft); line-height: 1.7; }
.story details{
  border-top: 1px solid var(--line);
  padding: 14px 0;
}
.story details summary{
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.story details summary::-webkit-details-marker{ display: none; }
.story details summary::after{
  content: "+"; font-size: 22px; color: var(--ink-soft); font-weight: 300;
}
.story details[open] summary::after{ content: "–"; }
.story details p{ margin: 12px 0 4px; }

/* Toast */
.toast{
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 100;
  display: flex; align-items: center; gap: 10px;
}
.toast.show{ opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .dot{
  width: 8px; height: 8px; border-radius: 50%; background: var(--mauve-100);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; align-items: end; }
  .hero-copy{ justify-self: start; padding: 0; max-width: 560px; }
  .intro-grid{ grid-template-columns: 1fr; gap: 36px; }
  .collections{ grid-template-columns: 1fr 1fr; }
  .commission-inner{ grid-template-columns: 1fr; }
  .commission .h-display{ text-align: left; font-size: clamp(120px, 24vw, 200px); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .art-grid{ grid-template-columns: 1fr; }
  .art-stage{ position: static; }
}
@media (max-width: 700px){
  .nav{ gap: 10px; }
  .nav-links{ display: none; }
  .nav-toggle{ display: inline-grid; place-items: center; }
  .nav-cta{ margin-left: auto; padding: 10px 16px; font-size: 14px; }
  .collections{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .specs{ grid-template-columns: 1fr; }
  .shop-controls{ position: static; }

  /* Open mobile menu — a full-width dropdown panel under the header. */
  .site-header.nav-open .nav-links{
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    margin: 0; gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow-card);
    padding: 6px var(--gutter) 14px;
    z-index: 49;
  }
  .site-header.nav-open .nav-links li{ width: 100%; }
  .site-header.nav-open .nav-link{
    display: flex; width: 100%; justify-content: space-between;
    padding: 14px 4px; border-radius: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .site-header.nav-open .nav-links li:last-child .nav-link{ border-bottom: 0; }
  .site-header.nav-open .has-menu .menu{ display: none; } /* submenu collapses on mobile */
  .nav-toggle[aria-expanded="true"]{ background: var(--cream-deep); }
}

/* =========================================================
   Cart — header button + slide-in drawer (injected by site.js)
   ========================================================= */
.cart-btn{
  position: relative;
  background: transparent; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: var(--r-pill);
  display: inline-grid; place-items: center; color: var(--ink);
  transition: background .18s ease;
}
.cart-btn:hover{ background: var(--cream-deep); }
.cart-btn svg{ width: 21px; height: 21px; }
.cart-btn .cart-count{
  position: absolute; top: 2px; right: 0;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--ink); color: var(--cream);
  border-radius: var(--r-pill);
  font-size: 11px; font-weight: 600; line-height: 18px; text-align: center;
}
.cart-overlay{
  position: fixed; inset: 0; background: rgba(40,35,31,0.36);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 90;
  -webkit-backdrop-filter: blur(1px); backdrop-filter: blur(1px);
}
.cart-overlay.show{ opacity: 1; pointer-events: auto; }
.cart-drawer{
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(420px, 92vw);
  background: var(--paper); z-index: 95;
  box-shadow: -20px 0 60px -30px rgba(40,35,31,0.5);
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.show{ transform: translateX(0); }
.cart-drawer .ch{
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line-soft);
}
.cart-drawer .ch h3{ margin: 0; font-size: 19px; font-weight: 600; }
.cart-drawer .ch button{ background: transparent; border: 0; cursor: pointer; color: var(--ink-soft); font-size: 26px; line-height: 1; }
.cart-items{ flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-line{ display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line .t{ width: 60px; height: 72px; border-radius: var(--r-sm); overflow: hidden; background: var(--cream-deep); flex: none; }
.cart-line .t img{ width: 100%; height: 100%; object-fit: cover; }
.cart-line .m{ flex: 1; min-width: 0; }
.cart-line .m b{ display: block; font-weight: 600; font-size: 15px; }
.cart-line .m small{ color: var(--ink-soft); }
.cart-line .rm{ background: transparent; border: 0; color: var(--ink-mute); cursor: pointer; font-size: 13px; text-decoration: underline; }
.cart-line .rm:hover{ color: #b3261e; }
.cart-empty{ color: var(--ink-soft); text-align: center; padding: 48px 12px; }
.cart-foot{ padding: 20px 24px 26px; border-top: 1px solid var(--line-soft); }
.cart-foot .sub{ display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; font-size: 15px; }
.cart-foot .sub b{ font-size: 22px; font-weight: 600; }
.cart-foot .btn{ width: 100%; justify-content: center; }
.cart-foot .note{ text-align: center; color: var(--ink-soft); font-size: 12.5px; margin: 12px 0 0; }
.cart-qty{ display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 2px; width: fit-content; }
.cart-qty .cq{ background: transparent; border: 0; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 16px; color: var(--ink); line-height: 1; }
.cart-qty .cq:hover{ background: var(--cream-deep); }
.cart-qty span{ min-width: 18px; text-align: center; font-size: 14px; }
