/* ════════════════════════════════════════════════════════
   STUDIO DARKUV — Shared Stylesheet
   Used by: studiodarkuv.html, studiodarkuv-detail.html
   ════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════════ */
:root {
  --ink:       #0d1117;
  --ink-2:     #161c26;
  --ink-3:     #1e2535;
  --paper:     #f0ece4;
  --paper-2:   #d8d2c7;
  --copper:    #b07d52;
  --copper-2:  #c8975f;
  --teal:      #2e5f6e;
  --mid:       #6b7280;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
  --pad-x: clamp(2rem, 7vw, 7rem);
  --pad-y: clamp(5rem, 9vw, 9rem);
}

/* ══════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad-x);
  background: rgba(13,17,23,0.82);
  border-bottom: 1px solid rgba(176,125,82,0.1);
  backdrop-filter: blur(12px);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
#nav.always-filled,
#nav.filled {
  background: rgba(13,17,23,0.98);
  border-bottom: 1px solid rgba(176,125,82,0.2);
}
/* When menu open: nav bar becomes transparent so overlay shows cleanly */
body.nav-open #nav {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: none;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--paper);
  white-space: nowrap;
}
.nav-logo b { color: var(--copper); font-weight: 400; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--copper-2); }
.nav-links .nav-cta {
  border: 1px solid rgba(176,125,82,0.5);
  color: var(--copper-2);
  padding: 0.45rem 1.1rem;
  transition: background 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover { background: var(--copper); color: var(--ink); }

/* Hamburger button — hidden on desktop */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: 1px solid rgba(176,125,82,0.3);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 800;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--copper-2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Prevent background scroll while mobile menu is open */
body.nav-open { overflow: hidden; }

/* ══════════════════════════════════════════════════
   HERO (index page only)
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(176,125,82,0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: 0;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem var(--pad-x) clamp(3rem, 5vw, 5rem);
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 2.2rem;
}
.hero-name em { font-style: italic; color: var(--copper-2); display: block; }
.hero-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-style: italic;
  color: var(--paper-2);
  max-width: 460px;
  line-height: 1.65;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(176,125,82,0.45);
  margin-bottom: 3rem;
}
.hero-meta { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-meta-label {
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.25rem;
}
.hero-meta-val { font-size: 0.78rem; color: var(--paper-2); line-height: 1.5; }
.hero-right { position: relative; z-index: 1; overflow: hidden; }
.hero-right-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.hi-top {
  flex: 62;
  width: 100%;
  height: 0; /* flex-basis drives height via flex */
  min-height: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
  display: block;
}
.hi-bottom {
  flex: 38;
  display: flex;
  min-height: 0;
}
.hi-b1,
.hi-b2 {
  flex: 1;
  min-width: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.65;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 30%),
              linear-gradient(to top, var(--ink) 0%, transparent 25%);
  z-index: 2;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: var(--pad-x);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-scroll-line { width: 48px; height: 1px; background: var(--copper); opacity: 0.4; }
.hero-scroll-text { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--mid); }

/* ══════════════════════════════════════════════════
   THREE DOORS (index page only)
══════════════════════════════════════════════════ */
.doors {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns: repeat(3, 1fr);
  min-height: 92vh;
  border-top: 1px solid rgba(176,125,82,0.1);
}
.door {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem 2.8rem;
  border-right: 1px solid rgba(176,125,82,0.1);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  cursor: pointer;
}
.door:last-child { border-right: none; }
.door-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transition: opacity 0.5s ease, transform 0.6s ease;
}
.door:hover .door-bg { opacity: 0.5; transform: scale(1.04); }
.door-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.98) 0%, rgba(13,17,23,0.1) 65%);
}
.door-roman {
  position: absolute;
  top: 2.5rem;
  left: 2.8rem;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(176,125,82,0.1);
  line-height: 1;
  transition: color 0.4s;
}
.door:hover .door-roman { color: rgba(176,125,82,0.18); }
.door-content { position: relative; z-index: 2; }
.door-cat {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}
.door-cat::before { content: ''; width: 18px; height: 1px; background: var(--copper); }
.door-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 1.1rem;
}
.door-title em { font-style: italic; color: var(--copper-2); }
.door-body {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.8rem;
  opacity: 0;
  transform: translateY(10px);o
  transition: opacity 0.35s 0.05s, transform 0.35s 0.05s;
}
.door:hover .door-body { opacity: 1; transform: none; }
.door-enter {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid rgba(176,125,82,0.35);
  padding-bottom: 2px;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.1s, transform 0.35s 0.1s, letter-spacing 0.3s;
}
.door:hover .door-enter { opacity: 1; transform: none; letter-spacing: 0.3em; }

/* ══════════════════════════════════════════════════
   SHARED SECTION CHROME
   Used on both index and detail pages
══════════════════════════════════════════════════ */
.sec { padding: var(--pad-y) var(--pad-x); }
.sec + .sec { border-top: 1px solid rgba(176,125,82,0.1); }

/* Index section header */
.sec-hd { margin-bottom: clamp(3rem, 5vw, 5rem); }
.sec-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.9rem;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--paper);
}
.sec-title em { font-style: italic; color: var(--copper-2); }
.sec-sub { margin-top: 1.1rem; font-size: 0.87rem; color: var(--mid); max-width: 500px; line-height: 1.85; }

/* Detail page section label (horizontal rule style) */
.sec-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sec-label::after { content: ''; flex: 1; height: 1px; background: rgba(176,125,82,0.15); }

/* ══════════════════════════════════════════════════
   PAGE HEADER (detail pages only)
══════════════════════════════════════════════════ */
.page-header {
  padding: calc(5rem + var(--pad-y)) var(--pad-x) var(--pad-y);
  border-bottom: 1px solid rgba(176,125,82,0.1);
  position: relative;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(176,125,82,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.ph-inner { position: relative; z-index: 1; max-width: 760px; }
.ph-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.ph-eyebrow a { color: var(--mid); transition: color 0.2s; }
.ph-eyebrow a:hover { color: var(--copper); }
.ph-eyebrow-sep { color: var(--mid); margin: 0 0.5rem; }
.ph-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin-bottom: 1.5rem;
}
.ph-title em { font-style: italic; color: var(--copper-2); }
.ph-lead {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--paper-2);
  max-width: 540px;
  line-height: 1.65;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(176,125,82,0.4);
}

/* ══════════════════════════════════════════════════
   I. ART (index page)
══════════════════════════════════════════════════ */
#art { background: var(--ink); border-top: 1px solid rgba(176,125,82,0.1); }
.art-statement-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: start;
}
.art-stmt {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--paper-2);
  line-height: 1.65;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(176,125,82,0.4);
  margin-bottom: 1.5rem;
}
.art-body-p { font-size: 0.85rem; color: var(--mid); line-height: 1.9; margin-bottom: 0.9rem; }
.art-exh-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.4rem;
}
.exh-list { list-style: none; }
.exh-item {
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  gap: 1.2rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(176,125,82,0.1);
  align-items: baseline;
}
.exh-item:last-child { border-bottom: 1px solid rgba(176,125,82,0.1); }
.exh-year { font-family: var(--serif); font-size: 0.78rem; font-style: italic; color: var(--copper); }
.exh-name { font-size: 0.85rem; color: var(--paper-2); line-height: 1.5; }
.exh-venue { font-size: 0.73rem; color: var(--mid); margin-top: 0.2rem; }

/* ── Collection slider ─────────────────────────────── */
.art-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

/* Arrow buttons */
.art-slider-arrow {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: #000;
  border: 1px solid rgba(176,125,82,0.25);
  color: var(--copper);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
  font-family: var(--sans);
}
.art-slider-arrow:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: #000;
}
.art-slider-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

/* Scrollable pill track */
.art-slider-track {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #000;
  border: 1px solid rgba(176,125,82,0.2);
  padding: 0.35rem;
  display: flex;
  gap: 0.25rem;
}
.art-slider-track::-webkit-scrollbar { display: none; }

/* Individual collection pill */
.art-tab {
  flex-shrink: 0;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--mid);
  background: transparent;
  border: none;
  padding: 0.55rem 1.3rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.art-tab:hover { color: var(--paper-2); }
.art-tab.active {
  background: var(--copper);
  color: #000;
}

/* Collection panels */
.art-collection { display: none; }
.art-collection.active { display: block; }

/* ── Collection teaser (homepage) ─────────────────── */
.art-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding: 3rem 0 0;
}
.art-teaser-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.art-teaser-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 1.1rem;
}
.art-teaser-title em { font-style: italic; color: var(--copper-2); }
.art-teaser-body {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 440px;
}
.art-teaser-link {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid rgba(176,125,82,0.4);
  padding-bottom: 3px;
  transition: letter-spacing 0.25s, border-color 0.25s;
}
.art-teaser-link:hover { letter-spacing: 0.3em; border-color: var(--copper); }
.art-teaser-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.art-teaser-img {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.4s;
}
.art-teaser-img:hover { opacity: 1; transform: scale(1.02); }


/* Masonry image grid — shared by art section and detail gallery */
.art-grid { columns: 2; column-gap: 2px; }
.art-grid-item {
  break-inside: avoid;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}
.art-grid-item img,
.art-grid-item .art-ph { width: 100%; display: block; }
.art-ph { background-size: cover; background-position: center; }
.art-ph-tall { aspect-ratio: 3/4; }
.art-ph-wide { aspect-ratio: 4/3; }
.art-ph-sq   { aspect-ratio: 1; }
.art-grid-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(13,17,23,0.9) 0%, transparent 100%);
  font-size: 0.72rem;
  color: var(--paper-2);
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s;
}
.art-grid-item:hover .art-grid-cap { opacity: 1; }

/* ══════════════════════════════════════════════════
   II. SHOP (index page)
══════════════════════════════════════════════════ */
#shop { background: var(--ink-2); border-top: 1px solid rgba(176,125,82,0.1); }
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 6rem;
  align-items: start;
}
.drop-banner {
  border: 1px solid rgba(176,125,82,0.25);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.drop-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--copper);
}
.drop-status {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.drop-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--copper);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }
.drop-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.drop-heading em { font-style: italic; color: var(--copper-2); }
.drop-body { font-size: 0.84rem; color: var(--mid); line-height: 1.8; max-width: 500px; }
.shop-past-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.shop-img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: opacity 0.35s;
}
.shop-item:hover .shop-img { opacity: 0.85; }
.shop-series { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.3rem; }
.shop-name { font-family: var(--serif); font-size: 0.95rem; font-weight: 400; color: var(--paper); line-height: 1.3; }
.shop-note { font-size: 0.73rem; color: var(--mid); margin-top: 0.25rem; }
.shop-sold { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(176,125,82,0.5); margin-top: 0.3rem; }
.shop-subscribe { position: sticky; top: 7rem; }
.subscribe-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(176,125,82,0.2);
  padding: 2.5rem;
}
.subscribe-icon { font-family: var(--serif); font-size: 2.5rem; color: rgba(176,125,82,0.3); font-style: italic; margin-bottom: 1.5rem; }
.subscribe-heading { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--paper); line-height: 1.2; margin-bottom: 0.75rem; }
.subscribe-heading em { font-style: italic; color: var(--copper-2); }
.subscribe-body { font-size: 0.8rem; color: var(--mid); line-height: 1.8; margin-bottom: 1.75rem; }
.subscribe-form { display: flex; flex-direction: column; gap: 0.75rem; }
.subscribe-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(176,125,82,0.2);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.subscribe-input:focus { border-color: var(--copper); }
.subscribe-input::placeholder { color: var(--mid); }
.subscribe-btn {
  background: var(--copper);
  color: var(--ink);
  border: none;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}
.subscribe-btn:hover { background: var(--copper-2); }
.subscribe-note { font-size: 0.65rem; color: var(--mid); margin-top: 0.5rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   III. CUSTOM (index page)
══════════════════════════════════════════════════ */
#custom { background: var(--ink); border-top: 1px solid rgba(176,125,82,0.1); }
.custom-intro-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 5rem;
}
.custom-img-col { position: relative; }
.custom-main-img {
  aspect-ratio: 3/4;
  background: url('../img/custombreastmilkpendant.JPG') center/cover no-repeat;
  opacity: 0.8;
}
.custom-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  aspect-ratio: 1;
  background: url('../img/customorder-sea-urchin-breastmilk-pendant.gif') center/cover no-repeat;
  border: 3px solid var(--ink);
  opacity: 0.85;
}
.custom-stmt {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-style: italic;
  color: var(--paper-2);
  line-height: 1.65;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(176,125,82,0.4);
  margin-bottom: 1.5rem;
}
.custom-p { font-size: 0.85rem; color: var(--mid); line-height: 1.9; margin-bottom: 0.9rem; }
.keepsake-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(176,125,82,0.08);
  margin-bottom: 4rem;
}
.keepsake-card { background: var(--ink); padding: 2.5rem 2rem; transition: background 0.3s; }
.keepsake-card:hover { background: var(--ink-2); }
.keepsake-glyph { font-family: var(--serif); font-size: 2rem; color: rgba(176,125,82,0.35); font-style: italic; margin-bottom: 1.25rem; display: block; }
.keepsake-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--paper); margin-bottom: 0.6rem; line-height: 1.25; }
.keepsake-name em { font-style: italic; color: var(--copper-2); }
.keepsake-desc { font-size: 0.78rem; color: var(--mid); line-height: 1.8; }
.custom-past-label { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--mid); margin-bottom: 1.5rem; }
.custom-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 4rem; }
.cg-item { position: relative; overflow: hidden; }
.cg-img { aspect-ratio: 1; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.cg-item:first-child .cg-img { aspect-ratio: 16/9; }
.cg-item:first-child { grid-column: 1 / -1; }
.cg-item:hover .cg-img { transform: scale(1.04); }
.cg-label {
  position: absolute;
  bottom: 0; left: 0;
  padding: 0.6rem 0.9rem;
  background: rgba(13,17,23,0.75);
  font-size: 0.68rem;
  color: var(--paper-2);
  font-style: italic;
}
.custom-cta { text-align: center; padding: 4rem 2rem; border-top: 1px solid rgba(176,125,82,0.1); }
.custom-cta-q {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--paper-2);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}
.btn-copper {
  display: inline-block;
  border: 1px solid var(--copper);
  color: var(--copper);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: background 0.22s, color 0.22s;
}
.btn-copper:hover { background: var(--copper); color: var(--ink); }
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(176,125,82,0.08);
  margin-bottom: 3.5rem;
}
.process-cell { background: var(--ink-2); padding: 2.5rem 2rem; }
.process-num { font-family: var(--serif); font-size: 0.78rem; font-style: italic; color: var(--copper); margin-bottom: 1rem; }
.process-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--paper); margin-bottom: 0.6rem; }
.process-body { font-size: 0.78rem; color: var(--mid); line-height: 1.8; }

/* ══════════════════════════════════════════════════
   ABOUT (index page)
══════════════════════════════════════════════════ */
#about {
  background: var(--paper);
  color: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid rgba(176,125,82,0.15);
}
.about-grid { display: grid; grid-template-columns: 260px 1fr; gap: 6rem; align-items: start; }
.about-portrait-wrap { position: sticky; top: 7rem; }
.about-portrait-img {
  aspect-ratio: 3/4;
  background: #c0b49c url('../img/about3.jpg') center/cover no-repeat;
  margin-bottom: 1rem;
}
.about-portrait-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink); }
.about-portrait-role { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--copper); margin-top: 0.25rem; }
.about-eyebrow { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--copper); margin-bottom: 1rem; }
.about-title { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 300; line-height: 1.08; color: var(--ink); margin-bottom: 2rem; }
.about-title em { font-style: italic; color: var(--copper); }
.about-p { font-size: 0.87rem; color: #4a4540; line-height: 1.9; margin-bottom: 1.1rem; max-width: 580px; }

/* ══════════════════════════════════════════════════
   DETAIL PAGE BLOCKS (detail page only)
══════════════════════════════════════════════════ */

/* Block A — body text */
.block-text { max-width: 680px; }
.block-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 1.25rem;
}
.block-text h2 em { font-style: italic; color: var(--copper-2); }
.block-text h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--paper-2); margin: 2rem 0 0.75rem; }
.block-text p { font-size: 0.87rem; color: var(--mid); line-height: 1.9; margin-bottom: 1rem; }
.block-text ul,
.block-text ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.block-text li { font-size: 0.87rem; color: var(--mid); line-height: 1.9; margin-bottom: 0.4rem; }
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--paper-2);
  line-height: 1.6;
  padding: 2rem 2.5rem;
  border-left: 2px solid var(--copper);
  margin: 2.5rem 0;
  background: rgba(176,125,82,0.04);
}

/* Block B — photo gallery */
.block-gallery { columns: 3; column-gap: 2px; }
.block-gallery-2col { columns: 2; column-gap: 2px; }
.gallery-item { break-inside: avoid; margin-bottom: 2px; position: relative; overflow: hidden; }
.gallery-img { width: 100%; display: block; background-size: cover; background-position: center; }
.gallery-img-tall { aspect-ratio: 3/4; }
.gallery-img-wide { aspect-ratio: 4/3; }
.gallery-img-sq   { aspect-ratio: 1; }
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(13,17,23,0.88) 0%, transparent 100%);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--paper-2);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-cap { opacity: 1; }

/* Block C — image left, text right */
.block-img-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.bil-image { position: relative; }
.bil-img { width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center; }
.bil-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 42%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border: 3px solid var(--ink);
}
.bil-eyebrow { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--copper); margin-bottom: 1rem; }
.bil-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.1; color: var(--paper); margin-bottom: 1.2rem; }
.bil-title em { font-style: italic; color: var(--copper-2); }
.bil-stmt { font-family: var(--serif); font-size: clamp(0.95rem, 1.5vw, 1.15rem); font-style: italic; color: var(--paper-2); line-height: 1.65; padding-left: 1.2rem; border-left: 1px solid rgba(176,125,82,0.4); margin-bottom: 1.5rem; }
.bil-body { font-size: 0.85rem; color: var(--mid); line-height: 1.9; margin-bottom: 0.9rem; max-width: 480px; }
.bil-link { display: inline-block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); border-bottom: 1px solid rgba(176,125,82,0.35); padding-bottom: 2px; margin-top: 0.5rem; transition: letter-spacing 0.3s, border-color 0.3s; }
.bil-link:hover { letter-spacing: 0.3em; border-color: var(--copper); }

/* Block D — text left, image right */
.block-img-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.bir-image { position: relative; }
.bir-img { width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center; }
.bir-eyebrow { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--copper); margin-bottom: 1rem; }
.bir-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.1; color: var(--paper); margin-bottom: 1.2rem; }
.bir-title em { font-style: italic; color: var(--copper-2); }
.bir-stmt { font-family: var(--serif); font-size: clamp(0.95rem, 1.5vw, 1.15rem); font-style: italic; color: var(--paper-2); line-height: 1.65; padding-left: 1.2rem; border-left: 1px solid rgba(176,125,82,0.4); margin-bottom: 1.5rem; }
.bir-body { font-size: 0.85rem; color: var(--mid); line-height: 1.9; margin-bottom: 0.9rem; max-width: 480px; }
.bir-link { display: inline-block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--copper); border-bottom: 1px solid rgba(176,125,82,0.35); padding-bottom: 2px; margin-top: 0.5rem; transition: letter-spacing 0.3s, border-color 0.3s; }
.bir-link:hover { letter-spacing: 0.3em; border-color: var(--copper); }

/* Ornament divider */
.ornament { display: flex; align-items: center; justify-content: center; gap: 1.2rem; padding: 1.5rem var(--pad-x); }
.ornament-line { width: clamp(40px, 8vw, 100px); height: 1px; background: rgba(176,125,82,0.25); }
.ornament-glyph { font-family: var(--serif); font-size: 1rem; font-style: italic; color: rgba(176,125,82,0.4); }

/* ══════════════════════════════════════════════════
   FOOTER (shared)
══════════════════════════════════════════════════ */
footer {
  background: #080c11;
  border-top: 1px solid rgba(176,125,82,0.1);
  padding: 3.5rem var(--pad-x) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer-logo-lg { font-family: var(--serif); font-size: 1.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 300; color: var(--paper-2); margin-bottom: 0.5rem; }
.footer-tagline { font-family: var(--serif); font-size: 0.82rem; font-style: italic; color: var(--mid); }
.footer-col-label { font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--copper); margin-bottom: 1rem; }
.footer-email-link { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--copper-2); display: block; margin-bottom: 1rem; transition: color 0.2s; }
.footer-email-link:hover { color: var(--paper); }
.footer-socials { display: flex; gap: 1.4rem; }
.footer-socials a { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
.footer-socials a:hover { color: var(--copper-2); }
.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid); transition: color 0.2s; }
.footer-nav a:hover { color: var(--copper-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.6rem; color: #2d3340; }

/* ══════════════════════════════════════════════════
   IV. LEARN — masterclasses & DIY kits
══════════════════════════════════════════════════ */
#learn { background: var(--ink-2); border-top: 1px solid rgba(176,125,82,0.1); }

/* Track label row */
.learn-track-label {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.learn-track-tag {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--copper);
  color: #000;
  padding: 0.3rem 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.learn-track-tag--live {
  background: transparent;
  color: var(--copper);
  border: 1px solid var(--copper);
}
.learn-track-desc {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.7;
  max-width: 480px;
}

/* ── DIY Kit cards ─────────────────────────────── */
.learn-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.learn-kit-card {
  background: var(--ink);
  border: 1px solid rgba(176,125,82,0.1);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.learn-kit-card:hover { border-color: rgba(176,125,82,0.35); }
.learn-kit-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 0.85;
  transition: opacity 0.35s;
}
.learn-kit-card:hover .learn-kit-img { opacity: 1; }
.learn-kit-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(13,17,23,0.85);
  color: var(--copper-2);
  border: 1px solid rgba(176,125,82,0.35);
  padding: 0.25rem 0.65rem;
}
.learn-kit-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.learn-kit-cat {
  font-size: 0.57rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.learn-kit-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.learn-kit-title em { font-style: italic; color: var(--copper-2); }
.learn-kit-desc {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
}
.learn-kit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(176,125,82,0.12);
  padding-top: 1.1rem;
}
.learn-kit-price {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--paper);
}
.learn-btn {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  border-bottom: 1px solid rgba(176,125,82,0.35);
  padding-bottom: 2px;
  transition: letter-spacing 0.25s, border-color 0.25s;
}
.learn-btn:hover { letter-spacing: 0.28em; border-color: var(--copper); }

/* ── Divider between kit and class tracks ──────── */
.learn-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3.5rem 0;
}
.learn-divider-line { flex: 1; height: 1px; background: rgba(176,125,82,0.15); }
.learn-divider-glyph {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(176,125,82,0.4);
}

/* ── In-person class list ──────────────────────── */
.learn-class-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 3.5rem;
}
.learn-class-card {
  display: grid;
  grid-template-columns: 220px 1fr 2.5rem;
  align-items: stretch;
  background: var(--ink);
  border: 1px solid rgba(176,125,82,0.1);
  transition: border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.learn-class-card:hover {
  border-color: rgba(176,125,82,0.3);
  background: rgba(255,255,255,0.015);
}
.learn-class-img {
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  transition: opacity 0.35s;
}
.learn-class-card:hover .learn-class-img { opacity: 0.9; }
.learn-class-body {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.learn-class-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.learn-class-cat {
  font-size: 0.57rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.4rem;
}
.learn-class-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 300;
  color: var(--paper);
  line-height: 1.15;
}
.learn-class-title em { font-style: italic; color: var(--copper-2); }
.learn-class-avail {
  flex-shrink: 0;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border: 1px solid;
  white-space: nowrap;
  align-self: flex-start;
}
.learn-class-avail--open   { color: #7aad7a; border-color: rgba(122,173,122,0.4); }
.learn-class-avail--limited { color: var(--copper-2); border-color: rgba(200,151,95,0.4); }
.learn-class-avail--full   { color: var(--mid); border-color: rgba(107,114,128,0.3); }
.learn-class-desc {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 600px;
}
.learn-class-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.learn-class-detail {
  font-size: 0.68rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}
.learn-class-sep { color: rgba(176,125,82,0.35); font-size: 0.7rem; }
.learn-class-price {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--paper-2);
  font-style: italic;
}
.learn-class-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(176,125,82,0.3);
  font-size: 1rem;
  transition: color 0.25s, transform 0.25s;
  padding-right: 0.5rem;
}
.learn-class-card:hover .learn-class-arrow {
  color: var(--copper);
  transform: translateX(3px);
}

/* Learn CTA */
.learn-cta {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(176,125,82,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.learn-cta-text {
  font-size: 0.87rem;
  color: var(--mid);
  max-width: 400px;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   PHOTO GALLERY — real <img> tags, no cropping
   Two columns on desktop, one on mobile.
   Images show at their natural proportions always.
══════════════════════════════════════════════════ */
.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.photo-figure {
  /* Each figure takes ~half the row minus the gap.
     flex-grow: 1 means a lone item on a row stretches full width. */
  flex: 1 1 calc(50% - 1px);
  min-width: 280px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.photo-figure img {
  width: 100%;
  height: auto;       /* natural height — zero cropping */
  display: block;
  transition: transform 0.45s ease;
}
.photo-figure:hover img { transform: scale(1.02); }
.photo-figure figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.2rem 1rem;
  background: linear-gradient(to top, rgba(13,17,23,0.88) 0%, transparent 100%);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--paper-2);
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-figure:hover figcaption { opacity: 1; }


/* ══════════════════════════════════════════════════
   LIGHTBOX — click photo to zoom
══════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 100%;
  max-height: 90svh;
  object-fit: contain;
  display: block;
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
  cursor: default;
}

.lightbox-close {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  width: 2.6rem;
  height: 2.6rem;
  background: transparent;
  border: 1px solid rgba(176,125,82,0.4);
  color: var(--copper);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 901;
  transition: background 0.15s;
}
.lightbox-close:hover,
.lightbox-close:active { background: rgba(176,125,82,0.15); }

.lightbox-caption {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--paper-2);
  text-align: center;
  max-width: 480px;
  padding: 0 1rem;
  pointer-events: none;
}

/* Make images look clickable */
.photo-figure { cursor: zoom-in; }
.photo-figure img { cursor: zoom-in; }
/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; gap: 3rem; }
  .shop-subscribe { position: static; margin-top: 0; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {

  
  /*** nodisplay mobile */

  .nodisplay-mobile {
    display: none;
  }

  
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding-top: 2.5rem; padding-bottom: 3rem; }
  .hero-right { aspect-ratio: auto; }
  .hero-right-inner {
    position: static;
    flex-direction: column;
  }
  .hi-top {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: unset;
    opacity: 0.85;
  }
  .hi-bottom {
    flex: none;
  }
  .hi-b1,
  .hi-b2 {
    object-fit: unset;
    height: auto;
    opacity: 0.8;
  }
  .hero-right::after {
    background: linear-gradient(to bottom, var(--ink) 0%, transparent 20%),
                linear-gradient(to top, var(--ink) 0%, transparent 20%);
  }
  .doors { grid-template-columns: 1fr 1fr; min-height: auto; }
  .door { min-height: 60vw; border-right: none; border-bottom: 1px solid rgba(176,125,82,0.1); }
  .door:nth-child(odd) { border-right: 1px solid rgba(176,125,82,0.1); }
  .door-body, .door-enter { opacity: 1; transform: none; }
  .art-statement-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .art-grid { columns: 2; }
  .art-ph-wide { aspect-ratio: 3/4; }
  .art-teaser { grid-template-columns: 1fr; gap: 2rem; }
  .art-teaser-imgs { grid-template-columns: repeat(3, 1fr); }
  .keepsake-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; }
  .custom-intro-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .custom-img-accent { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait-wrap { position: static; max-width: 200px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .block-img-left { grid-template-columns: 1fr; }
  .bil-img { aspect-ratio: 4/3; }
  .bil-accent { display: none; }
  .block-img-right { grid-template-columns: 1fr; }
  .bir-image { order: 2; }
  .bir-text  { order: 1; }
  .bir-img { aspect-ratio: 4/3; }
  .block-gallery { columns: 2; }
  .block-gallery-2col { columns: 2; }
  .learn-kit-grid { grid-template-columns: 1fr 1fr; }
  .learn-class-card { grid-template-columns: 160px 1fr 2rem; }
  .learn-class-body { padding: 1.5rem; }
  /* Show burger at tablet width too */
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 700;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: rgba(13,17,23,0.99);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s 0.18s;
    pointer-events: none;
    padding: 0;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s 0s;
    pointer-events: auto;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(176,125,82,0.08);
  }
  .nav-links li:first-child { border-top: 1px solid rgba(176,125,82,0.08); }
  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 100%;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: var(--paper-2);
    padding: 0 2rem;
  }
  .nav-links a:hover { color: var(--copper-2); }
  .nav-links .nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 2rem;
    border: none;
    border-bottom: none;
    color: var(--copper-2);
  }
}
@media (max-width: 560px) {
  .doors { grid-template-columns: 1fr; }
  .door:nth-child(odd) { border-right: none; }
  .art-grid { columns: 1; }
  .art-ph-wide,
  .art-ph-sq { aspect-ratio: 3/4; }
  .gallery-img-wide,
  .gallery-img-sq { aspect-ratio: 3/4; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .drop-banner { padding: 1.5rem; }
  .drop-body { font-size: 0.8rem; }
  .subscribe-box { padding: 1.5rem; }
  .subscribe-heading { font-size: 1.2rem; }
  .keepsake-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .custom-gallery { grid-template-columns: 1fr 1fr; }
  .cg-item:first-child { grid-column: auto; }
  .cg-item:first-child .cg-img { aspect-ratio: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .block-gallery { columns: 1; }
  .block-gallery-2col { columns: 1; }
  .learn-kit-grid { grid-template-columns: 1fr; }
  .learn-class-card { grid-template-columns: 1fr; }
  .learn-class-img { aspect-ratio: 16/9; }
  .learn-class-top { flex-direction: column; gap: 0.75rem; }
  .learn-class-arrow { display: none; }
  /* Gallery captions always visible on touch screens */
  .art-grid-cap,
  .gallery-cap,
  .photo-figure figcaption {
    opacity: 1;
    background: linear-gradient(to top, rgba(13,17,23,0.88) 0%, transparent 100%);
  }
  /* Single column — images go full width at natural height */
  .photo-figure {
    flex: 1 1 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, .door-bg, .cg-img, .shop-img { transition: none !important; animation: none !important; }
}